Jyothi <[EMAIL PROTECTED]> writes: > > How to diasable resizing of windows???.. ie. window should not show > options of maximize or minimize...
You can use gtk_window_set_policy() to set allow_grow = FALSE allow_shrink = FALSE and auto_shrink = TRUE to get a non-resizable window. However most window managers don't actually turn off the maximize control. There is no way to prevent minimization with many window managers. Some might support gdk_window_set_functions (window_widget->window, GDK_FUNC_ALL | GDK_FUNC_MINIMIZE), but they will typically still allow the window to go offscreen in other ways (e.g. by switching desktops). Havoc _______________________________________________ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list
