Top |
#define | GNTSEAL() |
void | gnt_init () |
void | gnt_main () |
gboolean | gnt_ascii_only () |
void | gnt_window_present () |
void | gnt_screen_occupy () |
void | gnt_screen_release () |
void | gnt_screen_update () |
void | gnt_screen_resize_widget () |
void | gnt_screen_move_widget () |
void | gnt_screen_rename_widget () |
gboolean | gnt_widget_has_focus () |
void | gnt_widget_set_urgent () |
void | gnt_register_action () |
gboolean | gnt_screen_menu_show () |
void | gnt_quit () |
GntClipboard * | gnt_get_clipboard () |
gchar * | gnt_get_clipboard_string () |
void | gnt_set_clipboard_string () |
gboolean | gnt_giveup_console () |
gboolean | gnt_is_refugee () |
gboolean
gnt_ascii_only (void
);
Check whether the terminal is capable of UTF8 display.
void
gnt_window_present (GntWidget *window
);
Present a window. If the event was triggered because of user interaction, the window is moved to the foreground. Otherwise, the Urgent hint is set.
Since: 2.1.0
void
gnt_screen_occupy (GntWidget *widget
);
gnt_screen_occupy
has been deprecated since version 2.14.0 and should not be used in newly-written code.
Use gnt_widget_show()
instead.
Internal function -- do not use.
Use gnt_widget_show()
instead.
void
gnt_screen_release (GntWidget *widget
);
gnt_screen_release
has been deprecated since version 2.14.0 and should not be used in newly-written code.
Use gnt_widget_hide()
instead.
Internal function -- do not use.
Use gnt_widget_hide()
instead.
void
gnt_screen_update (GntWidget *widget
);
gnt_screen_update
has been deprecated since version 2.14.0 and should not be used in newly-written code.
Use gnt_widget_draw()
instead.
Internal function -- do not use.
Use gnt_widget_draw()
instead.
void gnt_screen_resize_widget (GntWidget *widget
,int width
,int height
);
Resize a widget.
void gnt_screen_move_widget (GntWidget *widget
,int x
,int y
);
Move a widget.
void gnt_screen_rename_widget (GntWidget *widget
,const char *text
);
Rename a widget.
gboolean
gnt_widget_has_focus (GntWidget *widget
);
Check whether a widget has focus.
void
gnt_widget_set_urgent (GntWidget *widget
);
Set the URGENT hint for a widget.
void gnt_register_action (const char *label
,void (*callback) (void)
);
Register a global action.
gchar *
gnt_get_clipboard_string (void
);
Get the string in the clipboard.
void
gnt_set_clipboard_string (const gchar *string
);
Set the contents of the global clipboard.
gboolean gnt_giveup_console (const char *wd
,char **argv
,char **envp
,gint *stin
,gint *stout
,gint *sterr
,void (*callback) (int status, gpointer data)
,gpointer data
);
Spawn a different application that will consume the console.
wd |
The working directory for the new application. |
|
argv |
The argument vector. |
|
envp |
The environment, or |
|
stin |
Location to store the child's stdin, or |
|
stout |
Location to store the child's stdout, or |
|
sterr |
Location to store the child's stderr, or |
|
callback |
The callback to call after the child exits. |
|
data |
The data to pass to the callback. |