2005-02-16 19:19:32 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2006-01-05 00:26:06 +05:30
|
|
|
import cgi
|
2005-02-16 19:19:32 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2005-12-05 10:24:40 +05:30
|
|
|
# Gramps Modules
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-06-15 09:43:16 +05:30
|
|
|
import RelLib
|
2005-12-05 10:24:40 +05:30
|
|
|
import PageView
|
2006-01-04 03:37:34 +05:30
|
|
|
import NameDisplay
|
2006-01-04 11:09:39 +05:30
|
|
|
import DateHandler
|
2006-01-04 22:12:39 +05:30
|
|
|
import ImgManip
|
2006-03-03 05:40:52 +05:30
|
|
|
import Config
|
2006-01-14 03:58:54 +05:30
|
|
|
import GrampsWidgets
|
2006-03-01 10:38:11 +05:30
|
|
|
import Errors
|
2006-04-22 08:53:57 +05:30
|
|
|
import GrampsDb
|
|
|
|
|
2006-05-31 06:18:07 +05:30
|
|
|
from PluginUtils.Report import ReportUtils
|
2006-01-05 10:42:48 +05:30
|
|
|
|
2006-01-07 03:38:40 +05:30
|
|
|
_GenderCode = {
|
2006-04-08 11:26:31 +05:30
|
|
|
RelLib.Person.MALE : u'\u2642',
|
|
|
|
RelLib.Person.FEMALE : u'\u2640',
|
|
|
|
RelLib.Person.UNKNOWN : u'\u2650',
|
2006-01-07 03:38:40 +05:30
|
|
|
}
|
|
|
|
|
2006-01-11 00:40:39 +05:30
|
|
|
_NAME_START = 0
|
|
|
|
_LABEL_START = 1
|
|
|
|
_LABEL_STOP = 2
|
|
|
|
_DATA_START = _LABEL_STOP
|
|
|
|
_DATA_STOP = _DATA_START+1
|
|
|
|
_BTN_START = _DATA_STOP
|
|
|
|
_BTN_STOP = _BTN_START+2
|
|
|
|
_PLABEL_START = 2
|
|
|
|
_PLABEL_STOP = _PLABEL_START+1
|
|
|
|
_PDATA_START = _PLABEL_STOP
|
|
|
|
_PDATA_STOP = _PDATA_START+2
|
|
|
|
_PDTLS_START = _PLABEL_STOP
|
|
|
|
_PDTLS_STOP = _PDTLS_START+2
|
|
|
|
_CLABEL_START = _PLABEL_START+1
|
|
|
|
_CLABEL_STOP = _CLABEL_START+1
|
|
|
|
_CDATA_START = _CLABEL_STOP
|
|
|
|
_CDATA_STOP = _CDATA_START+1
|
|
|
|
_CDTLS_START = _CDATA_START
|
|
|
|
_CDTLS_STOP = _CDTLS_START+1
|
|
|
|
_ALABEL_START = 1
|
|
|
|
_ALABEL_STOP = _ALABEL_START+1
|
|
|
|
_ADATA_START = _ALABEL_STOP
|
|
|
|
_ADATA_STOP = _ADATA_START+3
|
|
|
|
_SDATA_START = 3
|
|
|
|
_SDATA_STOP = 5
|
2006-01-08 06:55:04 +05:30
|
|
|
|
|
|
|
class AttachList:
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.list = []
|
|
|
|
self.max_x = 0
|
|
|
|
self.max_y = 0
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def attach(self, widget, x0, x1, y0, y1, xoptions=gtk.EXPAND|gtk.FILL,
|
2006-01-08 06:55:04 +05:30
|
|
|
yoptions=gtk.EXPAND|gtk.FILL):
|
2006-05-24 01:16:02 +05:30
|
|
|
assert(widget)
|
2006-01-11 00:40:39 +05:30
|
|
|
assert(x1>x0)
|
2006-04-08 11:26:31 +05:30
|
|
|
self.list.append((widget, x0, x1, y0, y1, xoptions, yoptions))
|
|
|
|
self.max_x = max(self.max_x, x1)
|
|
|
|
self.max_y = max(self.max_y, y1)
|
2006-01-08 06:55:04 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
class RelationshipView(PageView.PersonNavView):
|
2005-12-05 10:24:40 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def __init__(self, dbstate, uistate):
|
|
|
|
|
2006-04-23 03:39:16 +05:30
|
|
|
PageView.PersonNavView.__init__(
|
|
|
|
self, _('Relationships'), dbstate, uistate)
|
2006-04-10 04:23:53 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
dbstate.connect('database-changed', self.change_db)
|
2006-05-04 00:03:31 +05:30
|
|
|
dbstate.connect('active-changed', self.redraw)
|
2006-04-25 02:34:01 +05:30
|
|
|
self.show_siblings = Config.get(Config.FAMILY_SIBLINGS)
|
|
|
|
self.show_details = Config.get(Config.FAMILY_DETAILS)
|
2006-03-08 05:19:26 +05:30
|
|
|
self.connect_to_db(dbstate.db)
|
2006-03-08 02:48:21 +05:30
|
|
|
self.redrawing = False
|
2006-05-24 10:19:05 +05:30
|
|
|
self.use_shade = Config.get(Config.RELATION_SHADE)
|
2006-05-23 22:03:42 +05:30
|
|
|
self.color = gtk.TextView().style.white
|
2006-05-24 10:19:05 +05:30
|
|
|
#self.color = gtk.Label().style.light[gtk.STATE_NORMAL]
|
2006-03-08 02:48:21 +05:30
|
|
|
self.child = None
|
2006-05-24 10:19:05 +05:30
|
|
|
Config.client.notify_add("/apps/gramps/preferences/relation-shade",
|
|
|
|
self.shade_update)
|
|
|
|
|
|
|
|
def shade_update(self, client, cnxn_id, entry, data):
|
|
|
|
self.use_shade = Config.get(Config.RELATION_SHADE)
|
|
|
|
self.uistate.modify_statusbar()
|
|
|
|
self.redraw()
|
2006-04-18 07:39:43 +05:30
|
|
|
|
|
|
|
def build_tree(self):
|
|
|
|
if self.active:
|
|
|
|
self.redraw()
|
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-08 02:48:21 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def connect_to_db(self, db):
|
2006-03-08 05:19:26 +05:30
|
|
|
db.connect('person-update', self.person_update)
|
2006-04-08 11:26:31 +05:30
|
|
|
db.connect('person-rebuild', self.person_rebuild)
|
2006-03-08 05:19:26 +05:30
|
|
|
db.connect('family-update', self.family_update)
|
|
|
|
db.connect('family-add', self.family_add)
|
|
|
|
db.connect('family-delete', self.family_delete)
|
2006-04-08 11:26:31 +05:30
|
|
|
db.connect('family-rebuild', self.family_rebuild)
|
2006-03-08 05:19:26 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def person_update(self, handle_list):
|
2006-03-08 05:19:26 +05:30
|
|
|
if self.dbstate.active:
|
2006-03-10 04:07:19 +05:30
|
|
|
while not self.change_person(self.dbstate.active.handle):
|
|
|
|
pass
|
2006-04-18 07:39:43 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-08 05:19:26 +05:30
|
|
|
|
|
|
|
def person_rebuild(self):
|
|
|
|
if self.dbstate.active:
|
2006-03-10 04:07:19 +05:30
|
|
|
while not self.change_person(self.dbstate.active.handle):
|
|
|
|
pass
|
2006-04-18 07:39:43 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-08 05:19:26 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def family_update(self, handle_list):
|
2006-03-08 05:19:26 +05:30
|
|
|
if self.dbstate.active:
|
2006-03-10 04:07:19 +05:30
|
|
|
while not self.change_person(self.dbstate.active.handle):
|
|
|
|
pass
|
2006-04-18 07:39:43 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-08 05:19:26 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def family_add(self, handle_list):
|
2006-03-08 05:19:26 +05:30
|
|
|
if self.dbstate.active:
|
2006-03-10 04:07:19 +05:30
|
|
|
while not self.change_person(self.dbstate.active.handle):
|
|
|
|
pass
|
2006-04-18 07:39:43 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-08 05:19:26 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def family_delete(self, handle_list):
|
2006-03-08 05:19:26 +05:30
|
|
|
if self.dbstate.active:
|
2006-03-10 04:07:19 +05:30
|
|
|
while not self.change_person(self.dbstate.active.handle):
|
|
|
|
pass
|
2006-04-18 07:39:43 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-08 05:19:26 +05:30
|
|
|
|
|
|
|
def family_rebuild(self):
|
|
|
|
if self.dbstate.active:
|
2006-03-10 04:07:19 +05:30
|
|
|
while not self.change_person(self.dbstate.active.handle):
|
|
|
|
pass
|
2006-04-18 07:39:43 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2006-03-10 04:07:19 +05:30
|
|
|
|
2005-12-05 10:24:40 +05:30
|
|
|
def get_stock(self):
|
|
|
|
"""
|
|
|
|
Returns the name of the stock icon to use for the display.
|
|
|
|
This assumes that this icon has already been registered with
|
|
|
|
GNOME as a stock icon.
|
|
|
|
"""
|
|
|
|
return 'gramps-family'
|
|
|
|
|
|
|
|
def build_widget(self):
|
2006-01-04 11:09:39 +05:30
|
|
|
self.scroll = gtk.ScrolledWindow()
|
2006-04-08 11:26:31 +05:30
|
|
|
self.scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
|
2006-01-04 11:09:39 +05:30
|
|
|
self.scroll.show()
|
2006-01-04 03:37:34 +05:30
|
|
|
self.vbox = gtk.VBox()
|
2006-05-23 09:20:37 +05:30
|
|
|
self.vbox.set_border_width(12)
|
2006-01-04 03:37:34 +05:30
|
|
|
self.vbox.show()
|
|
|
|
self.child = None
|
2006-01-04 11:09:39 +05:30
|
|
|
self.scroll.add_with_viewport(self.vbox)
|
|
|
|
return self.scroll
|
2005-12-05 10:24:40 +05:30
|
|
|
|
|
|
|
def ui_definition(self):
|
|
|
|
"""
|
|
|
|
Specifies the UIManager XML code that defines the menus and buttons
|
|
|
|
associated with the interface.
|
|
|
|
"""
|
|
|
|
return '''<ui>
|
2006-01-05 00:26:06 +05:30
|
|
|
<menubar name="MenuBar">
|
|
|
|
<menu action="GoMenu">
|
|
|
|
<placeholder name="CommonGo">
|
|
|
|
<menuitem action="Back"/>
|
|
|
|
<menuitem action="Forward"/>
|
|
|
|
<separator/>
|
|
|
|
<menuitem action="HomePerson"/>
|
|
|
|
<separator/>
|
|
|
|
</placeholder>
|
|
|
|
</menu>
|
2006-04-27 03:18:13 +05:30
|
|
|
<menu action="BookMenu">
|
|
|
|
<placeholder name="AddEditBook">
|
|
|
|
<menuitem action="AddBook"/>
|
|
|
|
<menuitem action="EditBook"/>
|
|
|
|
</placeholder>
|
|
|
|
</menu>
|
2006-01-06 10:38:51 +05:30
|
|
|
<menu action="ViewMenu">
|
|
|
|
<menuitem action="Siblings"/>
|
|
|
|
<menuitem action="Details"/>
|
|
|
|
</menu>
|
2006-01-05 00:26:06 +05:30
|
|
|
</menubar>
|
|
|
|
<toolbar name="ToolBar">
|
|
|
|
<placeholder name="CommonNavigation">
|
|
|
|
<toolitem action="Back"/>
|
|
|
|
<toolitem action="Forward"/>
|
|
|
|
<toolitem action="HomePerson"/>
|
|
|
|
</placeholder>
|
|
|
|
</toolbar>
|
|
|
|
<popup name="Popup">
|
|
|
|
<menuitem action="Back"/>
|
|
|
|
<menuitem action="Forward"/>
|
|
|
|
<menuitem action="HomePerson"/>
|
|
|
|
<separator/>
|
|
|
|
</popup>
|
2005-12-05 10:24:40 +05:30
|
|
|
</ui>'''
|
2004-11-19 06:44:37 +05:30
|
|
|
|
2006-01-05 00:26:06 +05:30
|
|
|
def define_actions(self):
|
|
|
|
PageView.PersonNavView.define_actions(self)
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
self.add_toggle_action('Details', None, _('Show details'),
|
|
|
|
None, None, self.details_toggle,
|
2006-01-06 10:38:51 +05:30
|
|
|
self.show_details)
|
2006-04-08 11:26:31 +05:30
|
|
|
self.add_toggle_action('Siblings', None, _('Show siblings'),
|
|
|
|
None, None, self.siblings_toggle,
|
2006-01-06 10:38:51 +05:30
|
|
|
self.show_siblings)
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def siblings_toggle(self, obj):
|
2006-01-06 10:38:51 +05:30
|
|
|
self.show_siblings = obj.get_active()
|
|
|
|
self.change_person(self.dbstate.active.handle)
|
2006-04-25 02:34:01 +05:30
|
|
|
Config.set(Config.FAMILY_SIBLINGS,self.show_siblings)
|
2006-01-06 10:38:51 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def details_toggle(self, obj):
|
2006-01-06 10:38:51 +05:30
|
|
|
self.show_details = obj.get_active()
|
|
|
|
self.change_person(self.dbstate.active.handle)
|
2006-04-25 02:34:01 +05:30
|
|
|
Config.set(Config.FAMILY_DETAILS,self.show_details)
|
2006-01-06 10:38:51 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def change_db(self, db):
|
2006-03-08 05:19:26 +05:30
|
|
|
self.connect_to_db(db)
|
2006-01-05 10:42:48 +05:30
|
|
|
if self.child:
|
|
|
|
self.vbox.remove(self.child)
|
|
|
|
self.child = None
|
2006-04-08 11:26:31 +05:30
|
|
|
self.dbstate.db.connect('family-update', self.redraw)
|
|
|
|
self.dbstate.db.connect('family-add', self.redraw)
|
|
|
|
self.dbstate.db.connect('family-delete', self.redraw)
|
|
|
|
self.dbstate.db.connect('person-update', self.redraw)
|
|
|
|
self.dbstate.db.connect('person-add', self.redraw)
|
|
|
|
self.dbstate.db.connect('person-delete', self.redraw)
|
2006-04-27 03:18:13 +05:30
|
|
|
self.bookmarks.update_bookmarks(db.get_bookmarks())
|
|
|
|
if self.active:
|
|
|
|
self.bookmarks.redraw()
|
2006-05-04 00:03:31 +05:30
|
|
|
self.redraw()
|
2006-04-08 11:26:31 +05:30
|
|
|
|
|
|
|
def get_name(self, handle, use_gender=False):
|
2006-01-04 03:37:34 +05:30
|
|
|
if handle:
|
|
|
|
p = self.dbstate.db.get_person_from_handle(handle)
|
2006-01-06 04:30:59 +05:30
|
|
|
name = NameDisplay.displayer.display(p)
|
|
|
|
if use_gender:
|
2006-01-07 03:38:40 +05:30
|
|
|
gender = _GenderCode[p.gender]
|
|
|
|
else:
|
|
|
|
gender = ""
|
2006-04-08 11:26:31 +05:30
|
|
|
return (name, gender)
|
2006-01-04 03:37:34 +05:30
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
return (_(u"Unknown"), "")
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def redraw(self, *obj):
|
2006-03-08 02:48:21 +05:30
|
|
|
if self.dbstate.active:
|
2006-05-14 08:07:15 +05:30
|
|
|
self.handle_history(self.dbstate.active.handle)
|
2006-03-08 02:48:21 +05:30
|
|
|
self.change_person(self.dbstate.active.handle)
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def change_person(self, obj):
|
2006-03-08 02:48:21 +05:30
|
|
|
if self.redrawing:
|
2006-03-10 04:07:19 +05:30
|
|
|
return False
|
2006-03-08 02:48:21 +05:30
|
|
|
self.redrawing = True
|
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
for old_child in self.vbox.get_children():
|
|
|
|
self.vbox.remove(old_child)
|
2006-01-04 03:37:34 +05:30
|
|
|
|
|
|
|
person = self.dbstate.db.get_person_from_handle(obj)
|
2006-01-04 23:30:02 +05:30
|
|
|
if not person:
|
2006-03-08 02:48:21 +05:30
|
|
|
self.redrawing = False
|
2006-01-04 23:30:02 +05:30
|
|
|
return
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
self.write_title(person)
|
|
|
|
|
|
|
|
self.attach = AttachList()
|
|
|
|
self.row = 1
|
2006-01-04 03:37:34 +05:30
|
|
|
family_handle_list = person.get_parent_family_handle_list()
|
2006-01-11 03:58:09 +05:30
|
|
|
if family_handle_list:
|
2006-04-13 16:51:33 +05:30
|
|
|
for family_handle in family_handle_list:
|
2006-01-11 03:58:09 +05:30
|
|
|
if family_handle:
|
|
|
|
self.write_parents(family_handle)
|
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_label("%s:" % _('Parents'), None, True)
|
2006-01-11 03:58:09 +05:30
|
|
|
self.row += 1
|
2006-01-08 06:55:04 +05:30
|
|
|
|
2006-01-04 03:37:34 +05:30
|
|
|
family_handle_list = person.get_family_handle_list()
|
2006-01-11 03:58:09 +05:30
|
|
|
if family_handle_list:
|
|
|
|
for family_handle in family_handle_list:
|
|
|
|
if family_handle:
|
|
|
|
self.write_family(family_handle)
|
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_label("%s:" % _('Family'), None, False)
|
2006-01-11 03:58:09 +05:30
|
|
|
self.row += 1
|
2006-01-06 10:38:51 +05:30
|
|
|
|
2006-01-08 06:55:04 +05:30
|
|
|
self.row = 1
|
|
|
|
|
|
|
|
# Here it is necessary to beat GTK into submission. For some
|
2006-04-08 11:26:31 +05:30
|
|
|
# bizzare reason, if you have an empty column that is spanned,
|
2006-01-08 06:55:04 +05:30
|
|
|
# you lose the appropriate FILL handling. So, we need to see if
|
|
|
|
# column 3 is unused (usually if there is no siblings or children.
|
|
|
|
# If so, we need to subtract one index of each x coord > 3.
|
|
|
|
|
|
|
|
found = False
|
|
|
|
for d in self.attach.list:
|
2006-01-11 00:40:39 +05:30
|
|
|
if d[1] == 4 or d[2] == 4:
|
2006-01-08 06:55:04 +05:30
|
|
|
found = True
|
|
|
|
|
|
|
|
if found:
|
|
|
|
cols = self.attach.max_x
|
|
|
|
else:
|
|
|
|
cols = self.attach.max_x-1
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
self.child = gtk.Table(self.attach.max_y, cols)
|
2006-01-08 06:55:04 +05:30
|
|
|
self.child.set_border_width(12)
|
|
|
|
self.child.set_col_spacings(12)
|
2006-03-09 08:37:41 +05:30
|
|
|
self.child.set_row_spacings(9)
|
2006-01-08 06:55:04 +05:30
|
|
|
|
|
|
|
for d in self.attach.list:
|
|
|
|
x0 = d[1]
|
|
|
|
x1 = d[2]
|
|
|
|
if not found:
|
2006-01-11 00:40:39 +05:30
|
|
|
if x0 > 4:
|
2006-01-08 06:55:04 +05:30
|
|
|
x0 -= 1
|
2006-01-11 00:40:39 +05:30
|
|
|
if x1 > 4:
|
2006-01-08 06:55:04 +05:30
|
|
|
x1 -= 1
|
2006-04-08 11:26:31 +05:30
|
|
|
self.child.attach(d[0], x0, x1, d[3], d[4], d[5], d[6])
|
2006-01-08 06:55:04 +05:30
|
|
|
|
2006-01-04 23:30:02 +05:30
|
|
|
self.child.show_all()
|
2006-03-08 02:48:21 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
self.vbox.pack_start(self.child, False)
|
2006-03-08 02:48:21 +05:30
|
|
|
self.redrawing = False
|
2006-03-10 04:07:19 +05:30
|
|
|
return True
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def write_title(self, person):
|
2006-01-05 00:26:06 +05:30
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
table = gtk.Table(2,3)
|
|
|
|
table.set_col_spacings(12)
|
|
|
|
table.set_row_spacings(6)
|
|
|
|
|
2006-01-05 00:26:06 +05:30
|
|
|
# name and edit button
|
|
|
|
name = NameDisplay.displayer.display(person)
|
2006-03-18 07:00:23 +05:30
|
|
|
fmt = '<span size="larger" weight="bold">%s %s</span>'
|
2006-04-08 11:26:31 +05:30
|
|
|
text = fmt % (cgi.escape(name), _GenderCode[person.gender])
|
2006-01-14 03:58:54 +05:30
|
|
|
label = GrampsWidgets.MarkupLabel(text)
|
2006-05-23 10:29:50 +05:30
|
|
|
button = GrampsWidgets.IconButton(self.edit_button_press,person.handle)
|
2006-04-08 11:26:31 +05:30
|
|
|
hbox = GrampsWidgets.LinkBox(label, button)
|
2006-05-23 09:20:37 +05:30
|
|
|
|
|
|
|
table.attach(hbox, 0, 2, 0, 1)
|
|
|
|
|
|
|
|
eventbox = gtk.EventBox()
|
2006-05-24 10:19:05 +05:30
|
|
|
if self.use_shade:
|
|
|
|
eventbox.modify_bg(gtk.STATE_NORMAL, self.color)
|
2006-05-23 09:20:37 +05:30
|
|
|
table.attach(eventbox, 1, 2, 1, 2)
|
|
|
|
subtbl = gtk.Table(3, 3)
|
|
|
|
subtbl.set_col_spacings(12)
|
|
|
|
subtbl.set_row_spacings(6)
|
|
|
|
eventbox.add(subtbl)
|
2006-01-08 06:55:04 +05:30
|
|
|
|
2006-01-05 00:26:06 +05:30
|
|
|
# GRAMPS ID
|
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
subtbl.attach(GrampsWidgets.BasicLabel("%s:" % _('ID')),
|
|
|
|
1, 2, 0, 1, xoptions=gtk.FILL, yoptions=0)
|
|
|
|
subtbl.attach(GrampsWidgets.BasicLabel(person.gramps_id),
|
|
|
|
2, 3, 0, 1, yoptions=0)
|
2006-01-05 00:26:06 +05:30
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
# Birth event.
|
2006-01-05 00:26:06 +05:30
|
|
|
birth_ref = person.get_birth_ref()
|
|
|
|
if birth_ref:
|
|
|
|
birth = self.dbstate.db.get_event_from_handle(birth_ref.ref)
|
|
|
|
else:
|
|
|
|
birth = None
|
2006-05-23 09:20:37 +05:30
|
|
|
|
|
|
|
subtbl.attach(GrampsWidgets.BasicLabel("%s:" % _('Birth')),
|
|
|
|
1, 2, 1, 2, xoptions=gtk.FILL, yoptions=0)
|
|
|
|
subtbl.attach(GrampsWidgets.BasicLabel(self.format_event(birth)),
|
|
|
|
2, 3, 1, 2, yoptions=0)
|
|
|
|
|
2006-01-05 00:26:06 +05:30
|
|
|
death_ref = person.get_death_ref()
|
|
|
|
if death_ref:
|
|
|
|
death = self.dbstate.db.get_event_from_handle(death_ref.ref)
|
|
|
|
else:
|
|
|
|
death = None
|
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
subtbl.attach(GrampsWidgets.BasicLabel("%s:" % _('Death')),
|
|
|
|
1, 2, 2, 3, xoptions=gtk.FILL, yoptions=0)
|
|
|
|
subtbl.attach(GrampsWidgets.BasicLabel(self.format_event(death)),
|
|
|
|
2, 3, 2, 3, yoptions=0)
|
|
|
|
|
|
|
|
|
|
|
|
mbox = gtk.HBox()
|
|
|
|
mbox.add(table)
|
2006-01-04 11:09:39 +05:30
|
|
|
|
2006-01-08 06:55:04 +05:30
|
|
|
# image
|
|
|
|
image_list = person.get_media_list()
|
|
|
|
if image_list:
|
|
|
|
mobj = self.dbstate.db.get_object_from_handle(image_list[0].ref)
|
|
|
|
if mobj.get_mime_type()[0:5] == "image":
|
|
|
|
pixbuf = ImgManip.get_thumbnail_image(mobj.get_path())
|
|
|
|
image = gtk.Image()
|
|
|
|
image.set_from_pixbuf(pixbuf)
|
|
|
|
image.show()
|
2006-05-23 09:20:37 +05:30
|
|
|
mbox.pack_end(image,False)
|
|
|
|
|
|
|
|
mbox.show_all()
|
|
|
|
self.vbox.pack_start(mbox,False)
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-01-08 06:55:04 +05:30
|
|
|
def write_person_event(self, ename, event):
|
|
|
|
if event:
|
|
|
|
dobj = event.get_date_object()
|
|
|
|
phandle = event.get_place_handle()
|
|
|
|
if phandle:
|
|
|
|
pname = self.place_name(phandle)
|
|
|
|
else:
|
|
|
|
pname = None
|
|
|
|
|
|
|
|
value = {
|
2006-04-08 11:26:31 +05:30
|
|
|
'date' : DateHandler.displayer.display(dobj),
|
|
|
|
'place' : pname,
|
2006-01-08 06:55:04 +05:30
|
|
|
}
|
|
|
|
else:
|
|
|
|
pname = None
|
|
|
|
dobj = None
|
|
|
|
|
|
|
|
if dobj:
|
|
|
|
if pname:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_person_data(ename,
|
2006-01-08 06:55:04 +05:30
|
|
|
_('%(date)s in %(place)s') % value)
|
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_person_data(ename, '%(date)s' % value)
|
2006-01-08 06:55:04 +05:30
|
|
|
elif pname:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_person_data(ename, pname)
|
2006-01-08 06:55:04 +05:30
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_person_data(ename, '')
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-05-23 09:20:37 +05:30
|
|
|
def format_event(self, event):
|
|
|
|
if event:
|
|
|
|
dobj = event.get_date_object()
|
|
|
|
phandle = event.get_place_handle()
|
|
|
|
if phandle:
|
|
|
|
pname = self.place_name(phandle)
|
|
|
|
else:
|
|
|
|
pname = None
|
|
|
|
|
|
|
|
value = {
|
|
|
|
'date' : DateHandler.displayer.display(dobj),
|
|
|
|
'place' : pname,
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
pname = None
|
|
|
|
dobj = None
|
|
|
|
|
|
|
|
if dobj:
|
|
|
|
if pname:
|
|
|
|
return _('%(date)s in %(place)s') % value
|
|
|
|
else:
|
|
|
|
return '%(date)s' % value
|
|
|
|
elif pname:
|
|
|
|
return pname
|
|
|
|
else:
|
|
|
|
return ''
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def write_person_data(self, title, data):
|
|
|
|
self.attach.attach(GrampsWidgets.BasicLabel(title), _ALABEL_START,
|
|
|
|
_ALABEL_STOP, self.row, self.row+1,
|
2006-01-08 06:55:04 +05:30
|
|
|
xoptions=gtk.FILL|gtk.SHRINK)
|
2006-04-08 11:26:31 +05:30
|
|
|
self.attach.attach(GrampsWidgets.BasicLabel(data),
|
|
|
|
_ADATA_START, _ADATA_STOP,
|
|
|
|
self.row, self.row+1)
|
2006-01-05 00:26:06 +05:30
|
|
|
self.row += 1
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def write_label(self, title, family, is_parent):
|
2006-01-11 00:40:39 +05:30
|
|
|
msg = "<i><b>%s</b></i>" % cgi.escape(title)
|
2006-04-08 11:26:31 +05:30
|
|
|
self.attach.attach(GrampsWidgets.MarkupLabel(msg),
|
|
|
|
_LABEL_START, _LABEL_STOP,
|
|
|
|
self.row, self.row+1, gtk.SHRINK|gtk.FILL)
|
2006-01-11 00:40:39 +05:30
|
|
|
|
2006-01-11 03:58:09 +05:30
|
|
|
if family:
|
|
|
|
value = family.gramps_id
|
|
|
|
else:
|
|
|
|
value = ""
|
2006-04-08 11:26:31 +05:30
|
|
|
self.attach.attach(GrampsWidgets.BasicLabel(value),
|
|
|
|
_DATA_START, _DATA_STOP,
|
|
|
|
self.row, self.row+1, gtk.SHRINK|gtk.FILL)
|
2006-01-11 00:40:39 +05:30
|
|
|
|
|
|
|
hbox = gtk.HBox()
|
2006-03-09 08:37:41 +05:30
|
|
|
hbox.set_spacing(12)
|
2006-03-07 09:05:46 +05:30
|
|
|
if is_parent:
|
|
|
|
call_fcn = self.add_parent_family
|
2006-03-18 07:00:23 +05:30
|
|
|
del_fcn = self.delete_parent_family
|
2006-03-07 09:05:46 +05:30
|
|
|
else:
|
|
|
|
call_fcn = self.add_family
|
2006-03-18 07:00:23 +05:30
|
|
|
del_fcn = self.delete_family
|
2006-03-07 09:05:46 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
add = GrampsWidgets.IconButton(call_fcn, None, gtk.STOCK_ADD)
|
|
|
|
hbox.pack_start(add, False)
|
2006-04-07 08:24:33 +05:30
|
|
|
|
|
|
|
if is_parent:
|
2006-04-08 11:26:31 +05:30
|
|
|
add = GrampsWidgets.IconButton(self.select_family, None, gtk.STOCK_INDEX)
|
|
|
|
hbox.pack_start(add, False)
|
2006-04-07 08:24:33 +05:30
|
|
|
|
2006-01-11 03:58:09 +05:30
|
|
|
if family:
|
2006-04-08 11:26:31 +05:30
|
|
|
edit = GrampsWidgets.IconButton(self.edit_family, family.handle,
|
2006-03-07 09:05:46 +05:30
|
|
|
gtk.STOCK_EDIT)
|
2006-04-08 11:26:31 +05:30
|
|
|
hbox.pack_start(edit, False)
|
|
|
|
delete = GrampsWidgets.IconButton(del_fcn, family.handle,
|
2006-03-07 09:05:46 +05:30
|
|
|
gtk.STOCK_REMOVE)
|
2006-04-08 11:26:31 +05:30
|
|
|
hbox.pack_start(delete, False)
|
|
|
|
self.attach.attach(hbox, _BTN_START, _BTN_STOP, self.row, self.row+1)
|
2006-01-11 00:40:39 +05:30
|
|
|
self.row += 1
|
|
|
|
|
2006-01-08 06:55:04 +05:30
|
|
|
######################################################################
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def write_parents(self, family_handle):
|
2006-01-08 06:55:04 +05:30
|
|
|
family = self.dbstate.db.get_family_from_handle(family_handle)
|
2006-03-10 04:07:19 +05:30
|
|
|
if not family:
|
|
|
|
return
|
2006-04-22 08:53:57 +05:30
|
|
|
self.write_label("%s:" % _('Parents'), family, True)
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_person(_('Father'), family.get_father_handle())
|
|
|
|
self.write_person(_('Mother'), family.get_mother_handle())
|
2006-01-08 06:55:04 +05:30
|
|
|
|
|
|
|
if self.show_siblings:
|
|
|
|
active = self.dbstate.active.handle
|
2006-04-13 21:46:00 +05:30
|
|
|
|
|
|
|
child_list = [ref.ref for ref in family.get_child_ref_list()\
|
|
|
|
if ref.ref != active]
|
|
|
|
|
2006-01-08 06:55:04 +05:30
|
|
|
label = _("Siblings")
|
|
|
|
if child_list:
|
2006-05-24 01:16:02 +05:30
|
|
|
eventbox = gtk.EventBox()
|
2006-05-24 10:19:05 +05:30
|
|
|
if self.use_shade:
|
|
|
|
eventbox.modify_bg(gtk.STATE_NORMAL, self.color)
|
2006-05-24 01:16:02 +05:30
|
|
|
vbox = gtk.VBox()
|
|
|
|
label_cell = self.build_label_cell(_('Siblings'))
|
|
|
|
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,
|
|
|
|
yoptions=gtk.FILL)
|
|
|
|
|
2006-04-13 21:46:00 +05:30
|
|
|
for child_handle in child_list:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_child(vbox, child_handle)
|
|
|
|
|
|
|
|
eventbox.add(vbox)
|
|
|
|
self.attach.attach(
|
|
|
|
eventbox, _CDATA_START, _CDATA_STOP, self.row,
|
|
|
|
self.row+1)
|
|
|
|
|
2006-01-11 00:40:39 +05:30
|
|
|
self.row += 1
|
2006-01-08 06:55:04 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def write_person(self, title, handle):
|
2006-01-04 03:37:34 +05:30
|
|
|
if title:
|
|
|
|
format = '<span weight="bold">%s: </span>'
|
|
|
|
else:
|
|
|
|
format = "%s"
|
2006-01-04 11:09:39 +05:30
|
|
|
|
2006-01-14 03:58:54 +05:30
|
|
|
label = GrampsWidgets.MarkupLabel(format % cgi.escape(title))
|
2006-05-23 22:10:08 +05:30
|
|
|
label.set_alignment(0,0)
|
2006-05-24 02:37:26 +05:30
|
|
|
label.set_padding(0,3)
|
2006-04-08 11:26:31 +05:30
|
|
|
self.attach.attach(label, _PLABEL_START, _PLABEL_STOP, self.row,
|
2006-05-23 22:03:42 +05:30
|
|
|
self.row+1, xoptions=gtk.FILL|gtk.SHRINK,
|
|
|
|
yoptions=gtk.FILL|gtk.SHRINK)
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-05-23 22:03:42 +05:30
|
|
|
vbox = gtk.VBox()
|
|
|
|
|
2006-03-24 00:20:43 +05:30
|
|
|
if handle:
|
2006-04-08 11:26:31 +05:30
|
|
|
link_label = GrampsWidgets.LinkLabel(self.get_name(handle, True),
|
|
|
|
self.button_press, handle)
|
2006-05-24 10:19:05 +05:30
|
|
|
if self.use_shade:
|
|
|
|
link_label.modify_bg(gtk.STATE_NORMAL, self.color)
|
2006-04-08 11:26:31 +05:30
|
|
|
button = GrampsWidgets.IconButton(self.edit_button_press, handle)
|
2006-05-23 22:03:42 +05:30
|
|
|
vbox.pack_start(GrampsWidgets.LinkBox(link_label, button))
|
2006-03-24 00:20:43 +05:30
|
|
|
else:
|
|
|
|
link_label = gtk.Label(_('Unknown'))
|
2006-05-23 22:10:08 +05:30
|
|
|
link_label.set_alignment(0, 1)
|
2006-03-24 00:20:43 +05:30
|
|
|
link_label.show()
|
2006-05-23 22:03:42 +05:30
|
|
|
vbox.pack_start(link_label)
|
2006-03-24 00:20:43 +05:30
|
|
|
|
2006-05-23 22:03:42 +05:30
|
|
|
if self.show_details:
|
|
|
|
value = self.info_string(handle)
|
|
|
|
if value:
|
|
|
|
vbox.pack_start(GrampsWidgets.BasicLabel(value))
|
|
|
|
|
|
|
|
eventbox = gtk.EventBox()
|
2006-05-24 10:19:05 +05:30
|
|
|
if self.use_shade:
|
|
|
|
eventbox.modify_bg(gtk.STATE_NORMAL, self.color)
|
2006-05-23 22:03:42 +05:30
|
|
|
eventbox.add(vbox)
|
|
|
|
|
|
|
|
self.attach.attach(eventbox, _PDATA_START, _PDATA_STOP,
|
|
|
|
self.row, self.row+1)
|
2006-01-05 10:42:48 +05:30
|
|
|
self.row += 1
|
2006-05-24 01:16:02 +05:30
|
|
|
return vbox
|
2006-01-05 10:42:48 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
def build_label_cell(self, title):
|
2006-01-05 10:42:48 +05:30
|
|
|
if title:
|
|
|
|
format = '<span weight="bold">%s: </span>'
|
|
|
|
else:
|
|
|
|
format = "%s"
|
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
return GrampsWidgets.MarkupLabel(format % cgi.escape(title))
|
2006-04-08 11:26:31 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
def write_child(self, vbox, handle):
|
2006-04-08 11:26:31 +05:30
|
|
|
link_label = GrampsWidgets.LinkLabel(self.get_name(handle, True),
|
|
|
|
self.button_press, handle)
|
2006-05-24 10:19:05 +05:30
|
|
|
if self.use_shade:
|
|
|
|
link_label.modify_bg(gtk.STATE_NORMAL, self.color)
|
2006-05-24 02:37:26 +05:30
|
|
|
link_label.set_padding(3, 0)
|
2006-04-08 11:26:31 +05:30
|
|
|
button = GrampsWidgets.IconButton(self.edit_button_press, handle)
|
2006-05-24 01:16:02 +05:30
|
|
|
vbox.pack_start(GrampsWidgets.LinkBox(link_label, button))
|
2006-01-04 04:58:36 +05:30
|
|
|
|
2006-01-06 10:38:51 +05:30
|
|
|
if self.show_details:
|
|
|
|
value = self.info_string(handle)
|
|
|
|
if value:
|
2006-05-24 02:37:26 +05:30
|
|
|
l = GrampsWidgets.BasicLabel(value)
|
|
|
|
l.set_padding(3, 0)
|
|
|
|
vbox.add(l)
|
2006-01-06 04:30:59 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
def write_data(self, box, title, start_col=_SDATA_START,
|
|
|
|
stop_col=_SDATA_STOP):
|
|
|
|
box.add(GrampsWidgets.BasicLabel(title))
|
2006-01-08 06:55:04 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def info_string(self, handle):
|
2006-01-06 04:30:59 +05:30
|
|
|
child = self.dbstate.db.get_person_from_handle(handle)
|
2006-03-03 14:13:02 +05:30
|
|
|
if not child:
|
|
|
|
return None
|
2006-01-06 04:30:59 +05:30
|
|
|
birth_ref = child.get_birth_ref()
|
|
|
|
death_ref = child.get_death_ref()
|
|
|
|
value = None
|
|
|
|
if birth_ref or death_ref:
|
2006-04-08 11:26:31 +05:30
|
|
|
info = ReportUtils.get_birth_death_strings(self.dbstate.db, child)
|
2006-01-06 04:30:59 +05:30
|
|
|
bdate = info[0]
|
|
|
|
ddate = info[4]
|
|
|
|
if bdate and ddate:
|
2006-04-08 11:26:31 +05:30
|
|
|
value = _("b. %s, d. %s") % (bdate, ddate)
|
2006-01-06 04:30:59 +05:30
|
|
|
elif bdate:
|
|
|
|
value = _("b. %s") % (bdate)
|
|
|
|
elif ddate:
|
|
|
|
value = _("d. %s") % (ddate)
|
|
|
|
return value
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def button_press(self, obj, event, handle):
|
2006-01-04 04:58:36 +05:30
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
|
|
|
self.dbstate.change_active_handle(handle)
|
2006-01-04 05:32:29 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
def write_relationship(self, box, family):
|
|
|
|
msg = _('Relationship type: %s') % str(family.get_relationship())
|
|
|
|
box.add(GrampsWidgets.MarkupLabel(msg))
|
2006-01-04 11:09:39 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def place_name(self, handle):
|
2006-01-04 11:09:39 +05:30
|
|
|
p = self.dbstate.db.get_place_from_handle(handle)
|
|
|
|
return p.get_title()
|
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
def write_marriage(self, vbox, family):
|
2006-01-11 03:58:09 +05:30
|
|
|
value = False
|
2006-01-04 11:09:39 +05:30
|
|
|
for event_ref in family.get_event_ref_list():
|
|
|
|
handle = event_ref.ref
|
|
|
|
event = self.dbstate.db.get_event_from_handle(handle)
|
2006-04-21 07:35:56 +05:30
|
|
|
if event.get_type() == RelLib.EventType.MARRIAGE:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_event_ref(vbox, _('Marriage'), event)
|
2006-01-11 03:58:09 +05:30
|
|
|
value = True
|
|
|
|
return value
|
2006-01-05 00:26:06 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
def write_event_ref(self, vbox, ename, event, start_col=_SDATA_START,
|
2006-03-09 08:37:41 +05:30
|
|
|
stop_col=_SDATA_STOP):
|
2006-01-05 00:26:06 +05:30
|
|
|
if event:
|
|
|
|
dobj = event.get_date_object()
|
|
|
|
phandle = event.get_place_handle()
|
|
|
|
if phandle:
|
|
|
|
pname = self.place_name(phandle)
|
|
|
|
else:
|
|
|
|
pname = None
|
|
|
|
|
|
|
|
value = {
|
2006-04-08 11:26:31 +05:30
|
|
|
'date' : DateHandler.displayer.display(dobj),
|
|
|
|
'place' : pname,
|
|
|
|
'event_type' : ename,
|
2006-01-05 00:26:06 +05:30
|
|
|
}
|
|
|
|
else:
|
|
|
|
pname = None
|
|
|
|
dobj = None
|
2006-03-18 07:00:23 +05:30
|
|
|
value = { 'event_type' : ename, }
|
2006-01-05 00:26:06 +05:30
|
|
|
|
|
|
|
if dobj:
|
|
|
|
if pname:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_data(vbox, _('%(event_type)s: %(date)s in %(place)s') %
|
2006-04-08 11:26:31 +05:30
|
|
|
value, start_col, stop_col)
|
2006-01-05 00:26:06 +05:30
|
|
|
else:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_data(vbox, _('%(event_type)s: %(date)s') % value,
|
2006-01-05 00:26:06 +05:30
|
|
|
start_col, stop_col)
|
|
|
|
elif pname:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_data(vbox, _('%(event_type)s: %(place)s') % value,
|
2006-04-08 11:26:31 +05:30
|
|
|
start_col, stop_col)
|
2006-01-05 00:26:06 +05:30
|
|
|
else:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_data(vbox, _('%(event_type)s:') % value,
|
2006-01-05 00:26:06 +05:30
|
|
|
start_col, stop_col)
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def write_family(self, family_handle):
|
2006-01-04 03:37:34 +05:30
|
|
|
family = self.dbstate.db.get_family_from_handle(family_handle)
|
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
mother_handle = family.get_mother_handle()
|
|
|
|
if self.dbstate.active.handle == father_handle:
|
2006-01-06 04:30:59 +05:30
|
|
|
handle = mother_handle
|
2006-01-04 03:37:34 +05:30
|
|
|
else:
|
2006-01-06 04:30:59 +05:30
|
|
|
handle = father_handle
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
self.write_label("%s:" % _('Family'), family, False)
|
2006-01-06 10:38:51 +05:30
|
|
|
if handle:
|
2006-05-24 01:16:02 +05:30
|
|
|
box = self.write_person(_('Spouse'), handle)
|
2006-01-06 10:38:51 +05:30
|
|
|
|
2006-05-24 01:16:02 +05:30
|
|
|
if not self.write_marriage(box, family):
|
|
|
|
self.write_relationship(box, family)
|
2006-01-04 11:09:39 +05:30
|
|
|
|
2006-04-13 16:51:33 +05:30
|
|
|
child_list = family.get_child_ref_list()
|
2006-01-04 03:37:34 +05:30
|
|
|
if child_list:
|
2006-05-24 01:16:02 +05:30
|
|
|
eventbox = gtk.EventBox()
|
2006-05-24 10:19:05 +05:30
|
|
|
if self.use_shade:
|
|
|
|
eventbox.modify_bg(gtk.STATE_NORMAL, self.color)
|
2006-05-24 01:16:02 +05:30
|
|
|
vbox = gtk.VBox()
|
|
|
|
label_cell = self.build_label_cell(_('Children'))
|
|
|
|
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,
|
|
|
|
yoptions=gtk.FILL)
|
|
|
|
|
2006-04-13 16:51:33 +05:30
|
|
|
for child_ref in child_list:
|
2006-05-24 01:16:02 +05:30
|
|
|
self.write_child(vbox, child_ref.ref)
|
|
|
|
|
|
|
|
eventbox.add(vbox)
|
|
|
|
self.attach.attach(
|
|
|
|
eventbox, _CDATA_START, _CDATA_STOP, self.row,
|
|
|
|
self.row+1)
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-01-11 00:40:39 +05:30
|
|
|
self.row += 1
|
|
|
|
|
2006-01-05 10:42:48 +05:30
|
|
|
def edit_button_press(self, obj, event, handle):
|
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
2006-03-04 10:54:16 +05:30
|
|
|
from Editors import EditPerson
|
2006-01-05 10:42:48 +05:30
|
|
|
person = self.dbstate.db.get_person_from_handle(handle)
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2006-03-04 10:54:16 +05:30
|
|
|
EditPerson(self.dbstate, self.uistate, [], person)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2006-01-05 10:42:48 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def edit_person(self, obj, handle):
|
2006-03-04 10:54:16 +05:30
|
|
|
from Editors import EditPerson
|
2006-01-04 03:37:34 +05:30
|
|
|
person = self.dbstate.db.get_person_from_handle(handle)
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2006-03-04 10:54:16 +05:30
|
|
|
EditPerson(self.dbstate, self.uistate, [], person)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2006-01-04 03:37:34 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def edit_family(self, obj, event, handle):
|
2006-01-11 00:40:39 +05:30
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
2006-03-04 10:54:16 +05:30
|
|
|
from Editors import EditFamily
|
2006-01-12 05:36:33 +05:30
|
|
|
family = self.dbstate.db.get_family_from_handle(handle)
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2006-04-08 11:26:31 +05:30
|
|
|
EditFamily(self.dbstate, self.uistate, [], family)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2006-01-11 00:40:39 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def add_family(self, obj, event, handle):
|
2006-01-11 00:40:39 +05:30
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
2006-03-04 10:54:16 +05:30
|
|
|
from Editors import EditFamily
|
2006-02-10 09:50:57 +05:30
|
|
|
family = RelLib.Family()
|
2006-03-07 09:05:46 +05:30
|
|
|
person = self.dbstate.active
|
|
|
|
|
|
|
|
if person.gender == RelLib.Person.MALE:
|
|
|
|
family.set_father_handle(person.handle)
|
|
|
|
else:
|
|
|
|
family.set_mother_handle(person.handle)
|
|
|
|
|
|
|
|
try:
|
2006-04-08 11:26:31 +05:30
|
|
|
EditFamily(self.dbstate, self.uistate, [], family)
|
2006-03-07 09:05:46 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
|
|
|
|
2006-04-07 08:24:33 +05:30
|
|
|
def select_family(self, obj, event, handle):
|
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
2006-05-15 21:23:42 +05:30
|
|
|
from Selectors import selector_factory
|
|
|
|
SelectFamily = selector_factory('Family')
|
2006-04-07 08:24:33 +05:30
|
|
|
|
2006-05-27 02:18:40 +05:30
|
|
|
phandle = self.dbstate.get_active_person().handle
|
|
|
|
person = self.dbstate.db.get_person_from_handle(phandle)
|
|
|
|
skip = set(person.get_family_handle_list())
|
|
|
|
|
|
|
|
dialog = SelectFamily(self.dbstate, self.uistate, skip=skip)
|
2006-04-07 08:24:33 +05:30
|
|
|
family = dialog.run()
|
|
|
|
|
2006-04-07 08:27:05 +05:30
|
|
|
if family:
|
2006-04-22 08:53:57 +05:30
|
|
|
active_handle = self.dbstate.active.handle
|
|
|
|
child = self.dbstate.db.get_person_from_handle(active_handle)
|
2006-04-24 09:36:17 +05:30
|
|
|
|
|
|
|
GrampsDb.add_child_to_family(
|
|
|
|
self.dbstate.db,
|
|
|
|
family,
|
|
|
|
child)
|
2006-04-07 08:24:33 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def add_parent_family(self, obj, event, handle):
|
2006-03-07 09:05:46 +05:30
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
|
|
|
from Editors import EditFamily
|
|
|
|
family = RelLib.Family()
|
|
|
|
person = self.dbstate.active
|
2006-04-13 21:46:00 +05:30
|
|
|
|
|
|
|
ref = RelLib.ChildRef()
|
|
|
|
ref.ref = person.handle
|
|
|
|
family.add_child_ref(ref)
|
2006-03-07 09:05:46 +05:30
|
|
|
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2006-04-08 11:26:31 +05:30
|
|
|
EditFamily(self.dbstate, self.uistate, [], family)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2006-01-11 00:40:39 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def delete_family(self, obj, event, handle):
|
2006-01-11 00:40:39 +05:30
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
2006-04-08 11:26:31 +05:30
|
|
|
GrampsDb.remove_parent_from_family(self.dbstate.db,
|
|
|
|
self.dbstate.active.handle,
|
2006-03-18 07:00:23 +05:30
|
|
|
handle)
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def delete_parent_family(self, obj, event, handle):
|
2006-03-18 07:00:23 +05:30
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
2006-04-08 11:26:31 +05:30
|
|
|
GrampsDb.remove_child_from_family(self.dbstate.db,
|
|
|
|
self.dbstate.active.handle,
|
2006-03-18 07:00:23 +05:30
|
|
|
handle)
|
2006-01-11 00:40:39 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def change_to(self, obj, handle):
|
2006-01-04 03:37:34 +05:30
|
|
|
self.dbstate.change_active_handle(handle)
|