comparison finch/libgnt/gnt.h @ 18421:e16d097c5739

Allow executing another application (eg. PAGER) that will use the same console.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 03 Jul 2007 08:54:34 +0000
parents 5c6f019e48f8
children 09db6fec9dce c6282dc3fb9f
comparison
equal deleted inserted replaced
18420:e2b8b17fc62c 18421:e16d097c5739
110 void gnt_widget_set_urgent(GntWidget *widget); 110 void gnt_widget_set_urgent(GntWidget *widget);
111 111
112 /** 112 /**
113 * 113 *
114 * @param label 114 * @param label
115 * @param callback)() 115 * @param callback
116 */ 116 */
117 void gnt_register_action(const char *label, void (*callback)()); 117 void gnt_register_action(const char *label, void (*callback)());
118 118
119 /** 119 /**
120 * 120 *
147 * 147 *
148 * @param string 148 * @param string
149 */ 149 */
150 void gnt_set_clipboard_string(gchar *string); 150 void gnt_set_clipboard_string(gchar *string);
151 151
152 /**
153 * Spawn a different application that will consume the console.
154 */
155 gboolean gnt_giveup_console(const char *wd, char **argv, char **envp,
156 gint *stin, gint *stout, gint *sterr);
157
158 gboolean gnt_is_refugee(void);
159