views:

66

answers:

2

Can I create a window without this topbar? :

http://i52.tinypic.com/2e30dpi.png

I want a window like this:

http://i52.tinypic.com/1q62pg.jpg

+2  A: 

Here they say you could try:

gtk.Window.set_decorated(False)
eumiro
mmm good but in this case there aren't rounded corners :-\
xRobot
The rounded corners depend on your user's GTK settings. This command just removes as much decoration as possible.
eumiro
Yeah, actually the rounded corners _are_ decoration.
ptomato
+1  A: 

You could also do

window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_SPLASHSCREEN)

but that doesn't have rounded corners either, at least on my theme. As eumiro says, that depends on the theme settings.

ptomato