Re: Calling a window without the frame



Nuno Afonso <hunchback netcabo pt> 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



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]