Why the redrawing of the buttons fail? First it launch where i have the buttons, then i want to resize the window on top in lower height and then reduce the buttons also in another size, but the redrawing of buttons from method buttononTop() is failing.
#!/usr/bin/python
import pygtk, gtk, gobject
class GTK_Main:
def __init__(self):
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.set_default_size(800, 768)
self.window.connect("destroy", gtk.main_quit, "WM destroy")
self.vbox = gtk.VBox()
self.window.add(self.vbox)
self.hbox = gtk.HBox(False, 0)
self.vbox.pack_start(self.hbox, False)
self.hbox.set_border_width(10)
self.hbox.pack_start(gtk.Label(), True, True, 0)
self.button2 = gtk.Button("Quit")
self.button2.connect("clicked", self.exit)
self.hbox.pack_start(self.button2, False)
self.button3 = gtk.Button("Test")
self.button3.connect("clicked", self.buttononTop)
self.hbox.pack_start(self.button3, False)
self.hbox.add(gtk.Label())
self.window.show_all()
def buttononTop(self, w):
print "Buttons on top - redraw with different shapes includeing the window"
self.window.remove(self.vbox)
self.window.resize(800, 330)
self.window.set_size_request(800, 330)
# ------------------------------------------- [FAILS STARTS]
self.vbox = gtk.VBox()
self.window.add(self.vbox)
self.hbox = gtk.HBox(False, 0)
self.vbox.pack_start(self.hbox, False)
self.hbox.set_border_width(10)
self.hbox.pack_start(gtk.Label(), True, True, 0)
self.button2 = gtk.Button("Quit")
self.button2.connect("clicked", self.exit)
self.hbox.pack_start(self.button2, False)
self.button3 = gtk.Button("Test")
self.button3.connect("clicked", self.buttononTop)
self.hbox.pack_start(self.button3, False)
self.hbox.add(gtk.Label())
# ------------------------------------------- [FAILS END]
def exit(self, widget, data=None):
gtk.main_quit()
GTK_Main()
gtk.gdk.threads_init()
gtk.main()

self.button3.connect("clicked", self.buttononTop)once i press, it removes the widgets, but then it does not redraw all the rest like i have mentioned there. – YumYumYum Dec 5 '12 at 11:16self.vbox = gtk.VBox()(where the fail starts), try addingself.vbox.show_all()after the lineself.hbox.add(gtk.Label())and see if you get the desired results – another.anon.coward Dec 5 '12 at 13:37window-state-eventsignal, check fornew_window_stateofevent. In case the window is maximized then resize request may not work as you want them, as maximizing and minimizing windows are handled by window manager. In this case there maybe 2 possible ways to work around this, 1) Callunmaximizeexplicitly if window is maximized ... – another.anon.coward Dec 6 '12 at 13:30if(self.window.get_window().get_state() == gtk.gdk.WINDOW_STATE_MAXIMIZED): self.window.unmaximize()before resizing. Please note that this may not work as it is a request to WM which it may choose not to honour. 2) Alternatively, you can hide the window before resizing then show it i.e. addself.window.hide()beforeresizeandself.window.show()later. This may have some impact on your application. For better understanding of your problem, could you please let us know why would there be a need to set default size of window to a large value? – another.anon.coward Dec 6 '12 at 13:35