[pygtk] Dialog without window decoration

2008-06-26 Thread Frédéric
Is there a way to have dialogs without window decoration at all? I would like to make a little progressbar in activity mode, just to show something during a connection. Maybe there are other solutions, not based on a progressbar... Thanks, ___ pygtk

Re: [pygtk] Dialog without window decoration

2008-06-26 Thread Bertrand Son Kintanar
On Thu, Jun 26, 2008 at 3:14 PM, Frédéric [EMAIL PROTECTED] wrote: Is there a way to have dialogs without window decoration at all? i think you can use a gtk.window for this with POPUP as its type. self.dialog_window = gtk.Window(gtk.WINDOW_POPUP) as far as pygtk 2.0 reference manual states

Re: [pygtk] Dialog without window decoration

2008-06-26 Thread Walter Leibbrandt
... or http://www.pygtk.org/docs/pygtk/class-gtkwindow.html#method-gtkwindow--set-type-hint if your window is already created. Bertrand Son Kintanar wrote: On Thu, Jun 26, 2008 at 3:14 PM, Frédéric [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Is there a way to have dialogs

Re: [pygtk] Dialog without window decoration

2008-06-26 Thread Frédéric
Le 26/6/2008, Bertrand Son Kintanar [EMAIL PROTECTED] a écrit: i think you can use a gtk.window for this with POPUP as its type. self.dialog_window = gtk.Window(gtk.WINDOW_POPUP) as far as pygtk 2.0 reference manual states that gtk.WINDOW_POPUP is A window that is ignored by the window manager

[pygtk] (no subject)

2008-06-26 Thread dan blum
How do you add an gtk.Editable interface to gtk.Entry created in Glade? Thanks for your help. Dan Blum ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: