* src/ViewManager.py: fix top on Config.set calls
* data/gramps.schemas.in: remove toolbar, now unused svn: r6472
This commit is contained in:
parent
951ac300ef
commit
296611251b
@ -1,4 +1,6 @@
|
|||||||
2006-04-27 Don Allingham <don@gramps-project.org>
|
2006-04-27 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/ViewManager.py: fix top on Config.set calls
|
||||||
|
* data/gramps.schemas.in: remove toolbar, now unused
|
||||||
* src/TipOfDay.py (TipOfDay.__init__): switch to ManagedWindow
|
* src/TipOfDay.py (TipOfDay.__init__): switch to ManagedWindow
|
||||||
* src/Editors/_EditFamily.py: provide add new parent option
|
* src/Editors/_EditFamily.py: provide add new parent option
|
||||||
* src/Editors/_EditEvent.py: used set_window
|
* src/Editors/_EditEvent.py: used set_window
|
||||||
|
@ -483,20 +483,6 @@
|
|||||||
</locale>
|
</locale>
|
||||||
</schema>
|
</schema>
|
||||||
|
|
||||||
<schema>
|
|
||||||
<key>/schemas/apps/gramps/interface/toolbar</key>
|
|
||||||
<applyto>/apps/gramps/interface/toolbar</applyto>
|
|
||||||
<owner>gramps</owner>
|
|
||||||
<type>int</type>
|
|
||||||
<default>-1</default>
|
|
||||||
<locale name="C">
|
|
||||||
<short>Default toolbar style</short>
|
|
||||||
<long>This key determines the style of the toolbar.
|
|
||||||
Use 0 for icons only, 1 for text only, 2 for text below images,
|
|
||||||
3 for text beside images, and -1 for the current GNOME style.</long>
|
|
||||||
</locale>
|
|
||||||
</schema>
|
|
||||||
|
|
||||||
<schema>
|
<schema>
|
||||||
<key>/schemas/apps/gramps/interface/toolbar-on</key>
|
<key>/schemas/apps/gramps/interface/toolbar-on</key>
|
||||||
<applyto>/apps/gramps/interface/toolbar-on</applyto>
|
<applyto>/apps/gramps/interface/toolbar-on</applyto>
|
||||||
|
@ -215,7 +215,7 @@ class ViewManager:
|
|||||||
hbox.show_all()
|
hbox.show_all()
|
||||||
|
|
||||||
self.show_sidebar = Config.get(Config.VIEW)
|
self.show_sidebar = Config.get(Config.VIEW)
|
||||||
self.show_toolbar = Config.get(Config.TOOLBAR)
|
self.show_toolbar = Config.get(Config.TOOLBAR_ON)
|
||||||
|
|
||||||
self.notebook = gtk.Notebook()
|
self.notebook = gtk.Notebook()
|
||||||
self.notebook.set_show_tabs(False)
|
self.notebook.set_show_tabs(False)
|
||||||
@ -508,20 +508,20 @@ class ViewManager:
|
|||||||
if obj.get_active():
|
if obj.get_active():
|
||||||
self.ebox.show()
|
self.ebox.show()
|
||||||
self.notebook.set_show_tabs(False)
|
self.notebook.set_show_tabs(False)
|
||||||
Config.set(Config.VIEW)
|
Config.set(Config.VIEW, True)
|
||||||
else:
|
else:
|
||||||
self.ebox.hide()
|
self.ebox.hide()
|
||||||
self.notebook.set_show_tabs(True)
|
self.notebook.set_show_tabs(True)
|
||||||
Config.set(Config.VIEW)
|
Config.set(Config.VIEW, False)
|
||||||
Config.sync()
|
Config.sync()
|
||||||
|
|
||||||
def toolbar_toggle(self, obj):
|
def toolbar_toggle(self, obj):
|
||||||
if obj.get_active():
|
if obj.get_active():
|
||||||
self.toolbar.show()
|
self.toolbar.show()
|
||||||
Config.set(Config.TOOLBAR)
|
Config.set(Config.TOOLBAR_ON, True)
|
||||||
else:
|
else:
|
||||||
self.toolbar.hide()
|
self.toolbar.hide()
|
||||||
Config.set(Config.TOOLBAR)
|
Config.set(Config.TOOLBAR_ON, False)
|
||||||
Config.sync()
|
Config.sync()
|
||||||
|
|
||||||
def register_view(self, view):
|
def register_view(self, view):
|
||||||
|
Loading…
Reference in New Issue
Block a user