Nuno Afonso <[EMAIL PROTECTED]> writes: > > i would like to know if anyone knows how to run a program without the > frame of the Window Manager? > > And by this i don't mean that the main window is a POPUP, it continues > to be a TOPLEVEL widget. >
gtk_widget_realize (window); gdk_window_set_decorations (window->window, 0); or in gtk 1.3.x: gtk_window_set_decorated (window, FALSE); Havoc _______________________________________________ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list
