| 
									
										
										
										
											2010-08-08 19:48:31 -03:00
										 |  |  | #ifndef _PERF_UI_HELPLINE_H_
 | 
					
						
							|  |  |  | #define _PERF_UI_HELPLINE_H_ 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-13 08:52:46 -03:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2011-10-17 09:14:58 -02:00
										 |  |  | #include <stdarg.h>
 | 
					
						
							| 
									
										
										
										
											2011-10-13 08:52:46 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:54 +09:00
										 |  |  | #include "../util/cache.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:50 +09:00
										 |  |  | struct ui_helpline { | 
					
						
							|  |  |  | 	void (*pop)(void); | 
					
						
							|  |  |  | 	void (*push)(const char *msg); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct ui_helpline *helpline_fns; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-10 15:58:50 -03:00
										 |  |  | void ui_helpline__init(void); | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:50 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-08 19:48:31 -03:00
										 |  |  | void ui_helpline__pop(void); | 
					
						
							|  |  |  | void ui_helpline__push(const char *msg); | 
					
						
							| 
									
										
										
										
											2010-08-10 15:44:20 -03:00
										 |  |  | void ui_helpline__vpush(const char *fmt, va_list ap); | 
					
						
							| 
									
										
										
										
											2010-08-08 19:48:31 -03:00
										 |  |  | void ui_helpline__fpush(const char *fmt, ...); | 
					
						
							|  |  |  | void ui_helpline__puts(const char *msg); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:50 +09:00
										 |  |  | extern char ui_helpline__current[512]; | 
					
						
							| 
									
										
										
										
											2011-10-26 12:04:37 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 18:32:02 +09:00
										 |  |  | #ifdef NEWT_SUPPORT
 | 
					
						
							|  |  |  | extern char ui_helpline__last_msg[]; | 
					
						
							|  |  |  | int ui_helpline__show_help(const char *format, va_list ap); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-09-11 01:15:03 +03:00
										 |  |  | static inline int ui_helpline__show_help(const char *format __maybe_unused, | 
					
						
							|  |  |  | 					 va_list ap __maybe_unused) | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:54 +09:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-09-28 18:32:02 +09:00
										 |  |  | #endif /* NEWT_SUPPORT */
 | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:54 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 18:32:03 +09:00
										 |  |  | #ifdef GTK2_SUPPORT
 | 
					
						
							|  |  |  | int perf_gtk__show_helpline(const char *format, va_list ap); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-09-11 01:15:03 +03:00
										 |  |  | static inline int perf_gtk__show_helpline(const char *format __maybe_unused, | 
					
						
							|  |  |  | 					  va_list ap __maybe_unused) | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:54 +09:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-09-28 18:32:03 +09:00
										 |  |  | #endif /* GTK2_SUPPORT */
 | 
					
						
							| 
									
										
										
										
											2012-08-16 17:14:54 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-08 19:48:31 -03:00
										 |  |  | #endif /* _PERF_UI_HELPLINE_H_ */
 |