1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| gtk_window_activate_focus ()
gboolean gtk_window_activate_focus (GtkWindow *window);
Activates the current focused widget within the window.
window :
a GtkWindow
Returns :
TRUE if a widget got activated.
gtk_window_activate_default ()
gboolean gtk_window_activate_default (GtkWindow *window);
Activates the default widget for the window, unless the current focused widget has been configured to receive the default action (see GTK_RECEIVES_DEFAULT in GtkWidgetFlags), in which case the focused widget is activated.
window :
a GtkWindow
Returns :
TRUE if a widget got activated. |