2006-06-19 Don Allingham <don@gramps-project.org>

* src/ViewManger.py: try tabs on the side
	* src/DisplayTabs/_PersonRefEmbedList.py: change Relationships to
	Associations
	* src/help/C/*: updates



svn: r6919
This commit is contained in:
Don Allingham
2006-06-19 21:06:29 +00:00
parent 0de586739e
commit 54eab375a6
25 changed files with 97 additions and 301 deletions

View File

@@ -51,13 +51,13 @@ class PersonRefEmbedList(EmbeddedList):
_column_names = [
(_('Name'), 0, 250),
(_('ID'), 1, 100),
(_('Relationship'), 2, 100),
(_('Association'), 2, 100),
]
def __init__(self, dbstate, uistate, track, data):
self.data = data
EmbeddedList.__init__(self, dbstate, uistate, track,
_('Relationships'), PersonRefModel)
_('Associations'), PersonRefModel)
def get_data(self):
return self.data

View File

@@ -224,6 +224,7 @@ class ViewManager:
self.notebook = gtk.Notebook()
self.notebook.set_show_tabs(False)
self.notebook.set_tab_pos(gtk.POS_LEFT)
self.notebook.show()
self._init_lists()
self._build_ui_manager()