* src/DataViews/_RelationshipView.py: Optionally hide Edit buttons

* src/Config/_GrampsConfigKeys.py: Optionally hide Edit buttons
	* src/GrampsWidgets.py: Allow empty button for LinkBox


svn: r7581
This commit is contained in:
Don Allingham 2006-11-08 05:15:26 +00:00
parent f191497468
commit aa5a41f5cc
6 changed files with 28 additions and 12 deletions

View File

@ -1,5 +1,8 @@
2006-11-07 Don Allingham <don@gramps-project.org>
* src/plugins/RemoveUnused.py: general cleanup
* src/DataViews/_RelationshipView.py: Optionally hide Edit buttons
* src/Config/_GrampsConfigKeys.py: Optionally hide Edit buttons
* src/GrampsWidgets.py: Allow empty button for LinkBox
2006-11-07 Alex Roitman <shura@gramps-project.org>
* src/DataViews/_RelationView.py (info_string): Add missing clause.

View File

@ -75,9 +75,11 @@ SIDEBAR_TEXT = ('interface','sidebar-text', 0)
WEBSITE_DIRECTORY = ('paths','website-directory', 2)
PORT_WARN = ('preferences','port-warn', 0)
TRANSACTIONS = ('behavior','transactions', 0)
RELEDITBTN = ('interface','editbutton', 1)
default_value = {
RELEDITBTN : False,
DEFAULT_SOURCE : False,
RELATION_SHADE : True,
ONLINE_MAPS : False,

View File

@ -339,7 +339,6 @@ class RelationshipView(PageView.PersonNavView):
self.attach = AttachList()
self.row = 1
family_handle_list = person.get_parent_family_handle_list()
sensitive = len(family_handle_list)> 1
@ -419,7 +418,10 @@ class RelationshipView(PageView.PersonNavView):
fmt = '<span size="larger" weight="bold">%s</span>'
text = fmt % cgi.escape(name)
label = GrampsWidgets.DualMarkupLabel(text, _GenderCode[person.gender])
if Config.get(Config.RELEDITBTN):
button = GrampsWidgets.IconButton(self.edit_button_press,person.handle)
else:
button = None
hbox = GrampsWidgets.LinkBox(label, button)
table.attach(hbox, 0, 2, 0, 1)
@ -623,14 +625,13 @@ class RelationshipView(PageView.PersonNavView):
child_list = [ref.ref for ref in family.get_child_ref_list()\
if ref.ref != active]
label = _("Siblings")
if child_list:
eventbox = gtk.EventBox()
if self.use_shade:
eventbox.modify_bg(gtk.STATE_NORMAL, self.color)
vbox = gtk.VBox()
label_cell = self.build_label_cell(_('Siblings'))
label_cell.set_alignment(0,0)
label_cell.set_alignment(0, 0)
self.attach.attach(
label_cell, _CLABEL_START, _CLABEL_STOP, self.row,
self.row+1, xoptions=gtk.FILL|gtk.SHRINK,
@ -656,6 +657,7 @@ class RelationshipView(PageView.PersonNavView):
label = GrampsWidgets.MarkupLabel(format % cgi.escape(title))
label.set_alignment(0,0)
if Config.get(Config.RELEDITBTN):
label.set_padding(0,5)
self.attach.attach(label, _PLABEL_START, _PLABEL_STOP, self.row,
self.row+1, xoptions=gtk.FILL|gtk.SHRINK,
@ -668,7 +670,10 @@ class RelationshipView(PageView.PersonNavView):
self.button_press, handle)
if self.use_shade:
link_label.modify_bg(gtk.STATE_NORMAL, self.color)
if Config.get(Config.RELEDITBTN):
button = GrampsWidgets.IconButton(self.edit_button_press, handle)
else:
button = None
vbox.pack_start(GrampsWidgets.LinkBox(link_label, button))
else:
link_label = gtk.Label(_('Unknown'))
@ -698,6 +703,7 @@ class RelationshipView(PageView.PersonNavView):
format = "%s"
lbl = GrampsWidgets.MarkupLabel(format % cgi.escape(title))
if Config.get(Config.RELEDITBTN):
lbl.set_padding(0,5)
return lbl
@ -707,7 +713,10 @@ class RelationshipView(PageView.PersonNavView):
if self.use_shade:
link_label.modify_bg(gtk.STATE_NORMAL, self.color)
link_label.set_padding(3, 0)
if Config.get(Config.RELEDITBTN):
button = GrampsWidgets.IconButton(self.edit_button_press, handle)
else:
button = None
hbox = gtk.HBox()
hbox.pack_start(GrampsWidgets.BasicLabel("%d." % index),

View File

@ -500,12 +500,12 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
2, Config.SPELLCHECK)
self.add_checkbox(table, _('Display Tip of the Day'),
3, Config.USE_TIPS)
# self.add_checkbox(table, _('Download maps online'),
# 4, Config.ONLINE_MAPS)
self.add_checkbox(table, _('Use shading in Relationship View'),
4, Config.RELATION_SHADE)
self.add_checkbox(table, _('Enable database transactions'),
5, Config.TRANSACTIONS)
self.add_checkbox(table, _('Display edit buttons on Relationship View'),
6, Config.RELEDITBTN)
return table

View File

@ -140,6 +140,7 @@ class LinkBox(gtk.HBox):
gtk.HBox.__init__(self)
self.set_spacing(6)
self.pack_start(link, False)
if button:
self.pack_start(button, False)
self.show()

View File

@ -638,7 +638,8 @@ class ListView(BookMarkView):
self.selection.select_path(path)
self.list.scroll_to_cell(path,None,1,0.5,0)
for i in xrange(len(self.columns)):
self.columns[i].set_sort_indicator(i==self.sort_col)
enable_sort_flag = (i==self.sort_col)
self.columns[i].set_sort_indicator(enable_sort_flag)
self.columns[self.sort_col].set_sort_order(order)
def build_columns(self):