Re: Window without title



???????? ????? <rom ezmail ru> writes:

I want to make a window without title bar. I used a POPUP window and
it's working
but I can't get focus. Window have only one text input and all inputs
are sent into console.


POPUP is not for application windows, it's for tooltips and stuff.

In 1.2 you want:
 gtk_widget_realize (widget);
 gdk_window_set_decorations (widget->window, 0);

In 2.0 you want:
 gtk_window_set_decorated (widget, FALSE);

Havoc



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