fanchart: add option in popup to add a partner to a person
svn: r20412
This commit is contained in:
parent
fe77240a2f
commit
b22eae6489
@ -1748,6 +1748,15 @@ class FanChartGrampsGUI(object):
|
|||||||
family_handle)
|
family_handle)
|
||||||
add_child_item.show()
|
add_child_item.show()
|
||||||
add_menu.append(add_child_item)
|
add_menu.append(add_child_item)
|
||||||
|
elif person_handle:
|
||||||
|
#allow to add a partner to this person
|
||||||
|
add_partner_item = Gtk.ImageMenuItem.new_from_stock(
|
||||||
|
stock_id=Gtk.STOCK_ADD, accel_group=None)
|
||||||
|
add_partner_item.set_label(_("Add partner to person"))
|
||||||
|
add_partner_item.connect("activate", self.add_partner_to_pers_cb,
|
||||||
|
person_handle)
|
||||||
|
add_partner_item.show()
|
||||||
|
add_menu.append(add_partner_item)
|
||||||
|
|
||||||
add_pers_item = Gtk.ImageMenuItem.new_from_stock(stock_id=Gtk.STOCK_ADD,
|
add_pers_item = Gtk.ImageMenuItem.new_from_stock(stock_id=Gtk.STOCK_ADD,
|
||||||
accel_group=None)
|
accel_group=None)
|
||||||
@ -1834,6 +1843,26 @@ class FanChartGrampsGUI(object):
|
|||||||
#add child to family
|
#add child to family
|
||||||
self.dbstate.db.commit_family(family, trans)
|
self.dbstate.db.commit_family(family, trans)
|
||||||
|
|
||||||
|
def add_partner_to_pers_cb(self, obj, person_handle):
|
||||||
|
"""
|
||||||
|
Add a family with the person preset
|
||||||
|
"""
|
||||||
|
family = gen.lib.Family()
|
||||||
|
person = self.dbstate.db.get_person_from_handle(person_handle)
|
||||||
|
|
||||||
|
if not person:
|
||||||
|
return
|
||||||
|
|
||||||
|
if person.gender == gen.lib.Person.MALE:
|
||||||
|
family.set_father_handle(person.handle)
|
||||||
|
else:
|
||||||
|
family.set_mother_handle(person.handle)
|
||||||
|
|
||||||
|
try:
|
||||||
|
EditFamily(self.dbstate, self.uistate, [], family)
|
||||||
|
except WindowActiveError:
|
||||||
|
pass
|
||||||
|
|
||||||
def on_add_parents(self, obj, person_handle):
|
def on_add_parents(self, obj, person_handle):
|
||||||
family = gen.lib.Family()
|
family = gen.lib.Family()
|
||||||
childref = gen.lib.ChildRef()
|
childref = gen.lib.ChildRef()
|
||||||
|
@ -518,7 +518,7 @@ class FanChartDescWidget(FanChartBaseWidget):
|
|||||||
else:
|
else:
|
||||||
#duplicate color
|
#duplicate color
|
||||||
a = 1
|
a = 1
|
||||||
r, g, b = (0.2, 0.2, 0.2)
|
r, g, b = (136, 138, 133)
|
||||||
# If max generation, and they have children:
|
# If max generation, and they have children:
|
||||||
if (not family and generation == self.generations - 1
|
if (not family and generation == self.generations - 1
|
||||||
and self._have_children(person)):
|
and self._have_children(person)):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user