GTK+ Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
"type" GtkWindowType : Read / Write "title" gchar* : Read / Write "auto-shrink" gboolean : Read / Write "allow-shrink" gboolean : Read / Write "allow-grow" gboolean : Read / Write "modal" gboolean : Read / Write "window-position" GtkWindowPosition : Read / Write |
"set-focus" void user_function (GtkWindow *window, GtkWidget *widget, gpointer user_data); |
void gtk_window_set_wmclass (GtkWindow *window, const gchar *wmclass_name, const gchar *wmclass_class); |
void gtk_window_set_policy (GtkWindow *window, gint allow_shrink, gint allow_grow, gint auto_shrink); |
Changes how a toplevel window deals with its size request and user resize attempts. There are really only two reasonable ways to call this function:
gtk_window_set_policy(GTK_WINDOW(window), FALSE, TRUE, FALSE) means that the window is user-resizable.
gtk_window_set_policy(GTK_WINDOW(window), FALSE, FALSE, TRUE) means that the window's size is program-controlled, and should simply match the current size request of the window's children.
The basic ugly truth of this function is that it should be simply:
void gtk_window_set_user_resizeable(GtkWidget* window, gboolean setting); |
If set to TRUE, the allow_grow parameter allows the user to expand the window beyond the size request of its child widgets. If allow_grow is TRUE, be sure to check that your child widgets work properly as the window is resized.
A toplevel window will always change size to ensure its child widgets receive their requested size. This means that if you add child widgets, the toplevel window will expand to contain them. However, normally the toplevel will not shrink to fit the size request of its children if it's too large; the auto_shrink parameter causes the window to shrink when child widgets have too much space. auto_shrink is normally used with the second of the two window policies mentioned above. That is, set auto_shrink to TRUE if you want the window to have a fixed, always-optimal size determined by your program.
Note that auto_shrink doesn't do anything if allow_shrink and allow_grow are both set to FALSE.
Neither of the two suggested window policies set the allow_shrink paramter to TRUE. If allow_shrink is TRUE, the user can shrink the window so that its children do not receive their full size request; this is basically a bad thing, because most widgets will look wrong if this happens. Furthermore GTK+ has a tendency to re-expand the window if size is recalculated for any reason. The upshot is that allow_shrink should always be set to FALSE.
Sometimes when you think you want to use allow_shrink, the real problem is that some specific child widget is requesting too much space, so the user can't shrink the window sufficiently. Perhaps you are calling gtk_widget_set_usize() on a child widget, and forcing its size request to be too large. Instead of setting the child's usize, consider using gtk_window_set_default_size() so that the child gets a larger allocation than it requests.
void gtk_window_add_accel_group (GtkWindow *window, GtkAccelGroup *accel_group); |
void gtk_window_remove_accel_group (GtkWindow *window, GtkAccelGroup *accel_group); |
void gtk_window_remove_embedded_xid (GtkWindow *window, guint xid); |
void gtk_window_set_default_size (GtkWindow *window, gint width, gint height); |
void gtk_window_set_geometry_hints (GtkWindow *window, GtkWidget *geometry_widget, GdkGeometry *geometry, GdkWindowHints geom_mask); |
void gtk_window_set_position (GtkWindow *window, GtkWindowPosition position); |
The type of the window.
The title of the window.
If the window is modal, i.e. it grabs all GTK+ events.