Top |
#define | GNT_WINDOW_FLAGS() |
#define | GNT_WINDOW_SET_FLAGS() |
#define | GNT_WINDOW_UNSET_FLAGS() |
GType | gnt_window_get_gtype () |
#define | gnt_vwindow_new() |
#define | gnt_hwindow_new() |
GntWidget * | gnt_window_new () |
GntWidget * | gnt_window_box_new () |
void | gnt_window_set_menu () |
GntMenu * | gnt_window_get_menu () |
const char * | gnt_window_get_accel_item () |
void | gnt_window_set_maximize () |
GntWindowFlags | gnt_window_get_maximize () |
void | gnt_window_workspace_hiding () |
void | gnt_window_workspace_showing () |
#define GNT_WINDOW_FLAGS(obj) (GNT_WINDOW(obj)->priv.flags)
GNT_WINDOW_FLAGS
has been deprecated since version 2.14.0 and should not be used in newly-written code.
This is an internal implementation detail.
#define GNT_WINDOW_SET_FLAGS(obj, flags) (GNT_WINDOW_FLAGS(obj) |= flags)
GNT_WINDOW_SET_FLAGS
has been deprecated since version 2.14.0 and should not be used in newly-written code.
This is an internal implementation detail.
#define GNT_WINDOW_UNSET_FLAGS(obj, flags) (GNT_WINDOW_FLAGS(obj) &= ~(flags))
GNT_WINDOW_UNSET_FLAGS
has been deprecated since version 2.14.0 and should not be used in newly-written code.
This is an internal implementation detail.
GntWidget * gnt_window_box_new (gboolean homo
,gboolean vert
);
Create a new window.
void gnt_window_set_menu (GntWindow *window
,GntMenu *menu
);
Set the menu for a window.
GntMenu *
gnt_window_get_menu (GntWindow *window
);
Get the menu for a window.
Since: 2.14.0
const char * gnt_window_get_accel_item (GntWindow *window
,const char *key
);
Return the id of a menuitem specified to a keystroke.
Since: 2.3.0
void gnt_window_set_maximize (GntWindow *window
,GntWindowFlags maximize
);
Maximize a window, either horizontally or vertically, or both.
Since: 2.3.0
GntWindowFlags
gnt_window_get_maximize (GntWindow *window
);
Get the maximization state of a window.
Since: 2.3.0