diff options
author | Necoro <> | 2007-11-27 01:10:02 +0000 |
---|---|---|
committer | Necoro <> | 2007-11-27 01:10:02 +0000 |
commit | b758d7a59ba9977c3d7c8d09c34b6b733aa5270c (patch) | |
tree | 2ae43be5194be5ee37b81d409fb67fdb4ce750eb /portato/gui/gtk/windows.py | |
parent | edcd2ceedb958e311fc3ee701cd1c326ab23d8b3 (diff) | |
download | portato-b758d7a59ba9977c3d7c8d09c34b6b733aa5270c.tar.gz portato-b758d7a59ba9977c3d7c8d09c34b6b733aa5270c.tar.bz2 portato-b758d7a59ba9977c3d7c8d09c34b6b733aa5270c.zip |
r570@Devoty: necoro | 2007-11-27 02:08:21 +0100
Added scrollbars to update window
Diffstat (limited to 'portato/gui/gtk/windows.py')
-rw-r--r-- | portato/gui/gtk/windows.py | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index d154ab1..fb9836c 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -105,7 +105,7 @@ class UpdateWindow (AbstractDialog): def __init__ (self, parent, packages, queue, jump_to): AbstractDialog.__init__(self, parent) - + self.queue = queue self.jump = jump_to @@ -132,6 +132,21 @@ class UpdateWindow (AbstractDialog): for p in self.packages: store.append([False, p.get_cpv()]) + def cb_set_size (self, *args): + """ + This callback is called shortly before drawing. + It calculates the optimal size of the window. + The optimum is defined as: as large as possible w/o scrollbars + """ + + bb = self.tree.get_widget("updateBB") + vals = (self.view.get_vadjustment().upper+bb.size_request()[1]+10, # max size of list + size of BB + constant + self.parent.get_size()[1]) # size of the parent -> maximum size + debug("Size values for the list and for the parent: %d / %d", *vals) + val = int(min(vals)) + debug("Minimum value: %d", val) + self.window.set_geometry_hints(self.window, min_height = val) + def cb_select_all_clicked (self, btn): model = self.view.get_model() iter = model.get_iter_first() @@ -789,9 +804,7 @@ class MainWindow (Window): # main window stuff Window.__init__(self) self.window.set_title(self.main_title) - mHeight = 800 - if gtk.gdk.screen_height() <= 800: mHeight = 600 - self.window.set_geometry_hints (self.window, min_width = 600, min_height = mHeight, max_height = gtk.gdk.screen_height(), max_width = gtk.gdk.screen_width()) + self.window.set_geometry_hints (self.window, max_height = gtk.gdk.screen_height(), max_width = gtk.gdk.screen_width()) # booleans self.doUpdate = False @@ -837,7 +850,7 @@ class MainWindow (Window): splash(_("Building frontend")) # set vpaned position self.vpaned = self.tree.get_widget("vpaned") - self.vpaned.set_position(int(mHeight/2)) + self.vpaned.set_position(int(self.window.get_size()[1]/2)) # cat and pkg list self.sortPkgListByName = True |