Display widget without window

2005-08-25 Thread Andrew Krause
I have recently completed a backend for an auto-completion feature in my application. My problem is that I don't know a way to display the GtkTreeView without it being attached to a window, but the GtkWindow I used has the handlebar is on the taskbar, which is something I obviously do not want.

Re: Display widget without window

2005-08-25 Thread Gian Mario Tagliaretti
2005/8/25, Andrew Krause [EMAIL PROTECTED]: I have recently completed a backend for an auto-completion feature in my application. My problem is that I don't know a way to display the GtkTreeView without it being attached to a window, but the GtkWindow I used has the handlebar is on the

Re: Display widget without window

2005-08-25 Thread Andrew Krause
hide the window decorations http://developer.gnome.org/doc/API/2.0/gtk/GtkWindow.html#gtk-window-set-decorated and skip the taskbar http://developer.gnome.org/doc/API/2.0/gtk/GtkWindow.html#gtk-window-set-skip-taskbar-hint cheers Thanks! That's exactly what I needed. I had just actually placed