Refactoring. ManagedWindow now controls window sizing

svn: r11905
This commit is contained in:
Gary Burton
2009-02-07 22:54:16 +00:00
parent 326ecebad4
commit 4530bd5cb9
23 changed files with 87 additions and 132 deletions

View File

@ -2,6 +2,7 @@
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2006 Donald N. Allingham
# 2009 Gary Burton
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -86,9 +87,6 @@ class RefTab(GrampsTab):
#-------------------------------------------------------------------------
class EditReference(ManagedWindow.ManagedWindow):
WIDTH_KEY = None
HEIGHT_KEY = None
def __init__(self, state, uistate, track, source, source_ref, update):
self.db = state.db
self.dbstate = state
@ -110,12 +108,6 @@ class EditReference(ManagedWindow.ManagedWindow):
self.show()
self._post_init()
def _set_size(self):
if self.WIDTH_KEY:
width = Config.get(self.WIDTH_KEY)
height = Config.get(self.HEIGHT_KEY)
self.window.resize(width, height)
def _local_init(self):
"""
Derived class should do any pre-window initalization in this task.
@ -212,10 +204,3 @@ class EditReference(ManagedWindow.ManagedWindow):
self.db.disconnect(key)
self._save_size()
ManagedWindow.ManagedWindow.close(self)
def _save_size(self):
if self.HEIGHT_KEY:
(width, height) = self.window.get_size()
Config.set(self.WIDTH_KEY, width)
Config.set(self.HEIGHT_KEY, height)
Config.sync()