2006-01-08 11:14:19 +05:30
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-05-02 11:20:46 +05:30
|
|
|
# Copyright (C) 2001-2006 Donald N. Allingham
|
2010-10-23 04:52:33 +05:30
|
|
|
# Copyright (C) 2010 Nick Hall
|
2006-01-08 11:14:19 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2007-01-09 10:02:07 +05:30
|
|
|
"""
|
2009-11-08 22:11:49 +05:30
|
|
|
Family View.
|
2007-01-09 10:02:07 +05:30
|
|
|
"""
|
|
|
|
|
2008-02-19 01:37:09 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2010-01-18 10:12:17 +05:30
|
|
|
from gen.ggettext import gettext as _
|
2009-11-08 22:11:49 +05:30
|
|
|
import logging
|
|
|
|
_LOG = logging.getLogger(".plugins.eventview")
|
2008-02-19 01:37:09 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GNOME/GTK+ modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
|
2006-01-08 11:14:19 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-10-08 22:11:39 +05:30
|
|
|
import gen.lib
|
2009-10-08 02:21:12 +05:30
|
|
|
from gui.views.listview import ListView
|
2009-11-08 22:11:49 +05:30
|
|
|
from gui.views.treemodels import FamilyModel
|
2009-12-15 11:26:12 +05:30
|
|
|
from gui.editors import EditFamily
|
2006-04-27 03:18:13 +05:30
|
|
|
import Bookmarks
|
2006-03-01 10:38:11 +05:30
|
|
|
import Errors
|
2009-10-08 06:42:51 +05:30
|
|
|
import config
|
2010-07-22 07:46:32 +05:30
|
|
|
from QuestionDialog import ErrorDialog
|
2006-08-05 10:11:56 +05:30
|
|
|
from Filters.SideBar import FamilySidebarFilter
|
2009-10-24 19:23:20 +05:30
|
|
|
from gen.plug import CATEGORY_QR_FAMILY
|
2010-07-31 07:41:47 +05:30
|
|
|
from DdTargets import DdTargets
|
2006-01-08 11:14:19 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2009-11-08 22:11:49 +05:30
|
|
|
# FamilyView
|
2006-01-08 11:14:19 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2009-11-08 22:11:49 +05:30
|
|
|
class FamilyView(ListView):
|
2010-02-01 12:31:45 +05:30
|
|
|
""" FamilyView class, derived from the ListView
|
|
|
|
"""
|
|
|
|
# columns in the model used in view
|
|
|
|
COL_ID = 0
|
|
|
|
COL_FATHER = 1
|
|
|
|
COL_MOTHER = 2
|
|
|
|
COL_REL = 3
|
|
|
|
COL_MARDATE = 4
|
2010-10-23 04:52:33 +05:30
|
|
|
COL_TAGS = 5
|
|
|
|
COL_CHAN = 6
|
2010-02-01 12:31:45 +05:30
|
|
|
# name of the columns
|
2007-09-25 17:39:25 +05:30
|
|
|
COLUMN_NAMES = [
|
|
|
|
_('ID'),
|
|
|
|
_('Father'),
|
|
|
|
_('Mother'),
|
|
|
|
_('Relationship'),
|
|
|
|
_('Marriage Date'),
|
2010-10-23 04:52:33 +05:30
|
|
|
_('Tags'),
|
2007-09-25 17:39:25 +05:30
|
|
|
_('Last Changed'),
|
|
|
|
]
|
2010-02-01 12:31:45 +05:30
|
|
|
#default setting with visible columns, order of the col, and their size
|
|
|
|
CONFIGSETTINGS = (
|
|
|
|
('columns.visible', [COL_ID, COL_FATHER, COL_MOTHER, COL_REL,
|
|
|
|
COL_MARDATE]),
|
2010-03-28 04:30:41 +05:30
|
|
|
('columns.rank', [COL_ID, COL_FATHER, COL_MOTHER, COL_REL,
|
2010-10-23 04:52:33 +05:30
|
|
|
COL_MARDATE, COL_TAGS, COL_CHAN]),
|
|
|
|
('columns.size', [75, 200, 200, 100, 100, 100, 100])
|
2010-02-01 12:31:45 +05:30
|
|
|
)
|
2006-05-08 06:45:19 +05:30
|
|
|
|
2007-01-09 10:02:07 +05:30
|
|
|
ADD_MSG = _("Add a new family")
|
|
|
|
EDIT_MSG = _("Edit the selected family")
|
|
|
|
DEL_MSG = _("Delete the selected family")
|
|
|
|
FILTER_TYPE = "Family"
|
2007-08-31 01:19:04 +05:30
|
|
|
QR_CATEGORY = CATEGORY_QR_FAMILY
|
2007-01-09 10:02:07 +05:30
|
|
|
|
2010-01-11 00:49:33 +05:30
|
|
|
def __init__(self, dbstate, uistate, nav_group=0):
|
2006-01-08 11:14:19 +05:30
|
|
|
|
|
|
|
signal_map = {
|
2007-01-20 09:52:31 +05:30
|
|
|
'family-add' : self.row_add,
|
|
|
|
'family-update' : self.row_update,
|
|
|
|
'family-delete' : self.row_delete,
|
2007-10-03 22:04:51 +05:30
|
|
|
'family-rebuild' : self.object_build,
|
2010-10-23 04:52:33 +05:30
|
|
|
'tag-update' : self.tag_updated
|
2006-01-08 11:14:19 +05:30
|
|
|
}
|
|
|
|
|
2009-10-08 02:21:12 +05:30
|
|
|
ListView.__init__(
|
2008-01-25 01:32:09 +05:30
|
|
|
self, _('Families'), dbstate, uistate,
|
2009-11-08 22:11:49 +05:30
|
|
|
FamilyView.COLUMN_NAMES, len(FamilyView.COLUMN_NAMES),
|
|
|
|
FamilyModel,
|
2006-04-27 03:18:13 +05:30
|
|
|
signal_map, dbstate.db.get_family_bookmarks(),
|
2010-01-11 00:49:33 +05:30
|
|
|
Bookmarks.FamilyBookmarks, nav_group,
|
2010-07-22 07:46:32 +05:30
|
|
|
multiple=True,
|
2010-01-11 00:49:33 +05:30
|
|
|
filter_class=FamilySidebarFilter)
|
2009-06-29 19:07:15 +05:30
|
|
|
|
2010-08-10 02:21:54 +05:30
|
|
|
self.func_list.update({
|
2009-10-08 02:21:12 +05:30
|
|
|
'<CONTROL>J' : self.jump,
|
|
|
|
'<CONTROL>BackSpace' : self.key_delete,
|
2010-08-10 02:21:54 +05:30
|
|
|
})
|
2009-10-08 02:21:12 +05:30
|
|
|
|
2010-03-10 18:06:27 +05:30
|
|
|
config.connect("interface.filter", self.filter_toggle)
|
|
|
|
uistate.connect('nameformat-changed', self.build_tree)
|
2006-07-11 03:16:46 +05:30
|
|
|
|
2010-01-02 01:25:09 +05:30
|
|
|
def navigation_type(self):
|
2010-01-11 00:49:33 +05:30
|
|
|
return 'Family'
|
2010-01-02 01:25:09 +05:30
|
|
|
|
2006-01-08 11:14:19 +05:30
|
|
|
def get_stock(self):
|
2007-02-21 01:28:47 +05:30
|
|
|
return 'gramps-family'
|
2006-07-12 02:26:59 +05:30
|
|
|
|
2006-01-08 11:14:19 +05:30
|
|
|
def ui_definition(self):
|
|
|
|
return '''<ui>
|
|
|
|
<menubar name="MenuBar">
|
2007-02-06 10:49:16 +05:30
|
|
|
<menu action="FileMenu">
|
|
|
|
<placeholder name="LocalExport">
|
|
|
|
<menuitem action="ExportTab"/>
|
|
|
|
</placeholder>
|
|
|
|
</menu>
|
2010-01-11 00:49:33 +05:30
|
|
|
<menu action="GoMenu">
|
|
|
|
<placeholder name="CommonGo">
|
|
|
|
<menuitem action="Back"/>
|
|
|
|
<menuitem action="Forward"/>
|
2010-01-13 21:29:36 +05:30
|
|
|
<separator/>
|
2010-01-11 00:49:33 +05:30
|
|
|
</placeholder>
|
|
|
|
</menu>
|
2006-01-08 11:14:19 +05:30
|
|
|
<menu action="EditMenu">
|
|
|
|
<placeholder name="CommonEdit">
|
|
|
|
<menuitem action="Add"/>
|
|
|
|
<menuitem action="Edit"/>
|
|
|
|
<menuitem action="Remove"/>
|
2010-07-22 07:46:32 +05:30
|
|
|
<menuitem action="Merge"/>
|
2006-01-08 11:14:19 +05:30
|
|
|
</placeholder>
|
2006-07-10 23:15:18 +05:30
|
|
|
<menuitem action="FilterEdit"/>
|
2006-01-08 11:14:19 +05:30
|
|
|
</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-08 11:14:19 +05:30
|
|
|
</menubar>
|
|
|
|
<toolbar name="ToolBar">
|
2010-01-11 00:49:33 +05:30
|
|
|
<placeholder name="CommonNavigation">
|
|
|
|
<toolitem action="Back"/>
|
|
|
|
<toolitem action="Forward"/>
|
|
|
|
</placeholder>
|
2006-01-08 11:14:19 +05:30
|
|
|
<placeholder name="CommonEdit">
|
|
|
|
<toolitem action="Add"/>
|
|
|
|
<toolitem action="Edit"/>
|
|
|
|
<toolitem action="Remove"/>
|
2010-07-22 07:46:32 +05:30
|
|
|
<toolitem action="Merge"/>
|
2006-01-08 11:14:19 +05:30
|
|
|
</placeholder>
|
|
|
|
</toolbar>
|
|
|
|
<popup name="Popup">
|
2010-01-11 00:49:33 +05:30
|
|
|
<menuitem action="Back"/>
|
|
|
|
<menuitem action="Forward"/>
|
|
|
|
<separator/>
|
2006-01-08 11:14:19 +05:30
|
|
|
<menuitem action="Add"/>
|
|
|
|
<menuitem action="Edit"/>
|
|
|
|
<menuitem action="Remove"/>
|
2010-07-22 07:46:32 +05:30
|
|
|
<menuitem action="Merge"/>
|
2007-08-31 01:19:04 +05:30
|
|
|
<separator/>
|
|
|
|
<menu name="QuickReport" action="QuickReport">
|
|
|
|
<menuitem action="Dummy"/>
|
|
|
|
</menu>
|
2006-01-08 11:14:19 +05:30
|
|
|
</popup>
|
|
|
|
</ui>'''
|
|
|
|
|
2007-07-08 08:57:06 +05:30
|
|
|
def define_actions(self):
|
2008-01-25 01:32:09 +05:30
|
|
|
"""Add the Forward action group to handle the Forward button."""
|
2007-07-08 08:57:06 +05:30
|
|
|
|
2009-10-08 02:21:12 +05:30
|
|
|
ListView.define_actions(self)
|
2007-07-08 08:57:06 +05:30
|
|
|
|
2007-09-13 09:50:24 +05:30
|
|
|
self._add_action('FilterEdit', None, _('Family Filter Editor'),
|
2007-07-08 08:57:06 +05:30
|
|
|
callback=self.filter_editor,)
|
2007-08-31 01:19:04 +05:30
|
|
|
|
|
|
|
self.all_action = gtk.ActionGroup(self.title + "/FamilyAll")
|
|
|
|
self.all_action.add_actions([
|
2009-01-11 01:03:55 +05:30
|
|
|
('QuickReport', None, _("Quick View"), None, None, None),
|
2007-08-31 01:19:04 +05:30
|
|
|
('Dummy', None, ' ', None, None, self.dummy_report),
|
|
|
|
])
|
2007-09-13 09:50:24 +05:30
|
|
|
self._add_action_group(self.all_action)
|
2007-07-08 08:57:06 +05:30
|
|
|
|
2010-10-23 04:52:33 +05:30
|
|
|
def set_active(self):
|
|
|
|
"""
|
|
|
|
Called when the page is displayed.
|
|
|
|
"""
|
|
|
|
ListView.set_active(self)
|
|
|
|
self.uistate.viewmanager.tags.tag_enable()
|
|
|
|
|
|
|
|
def set_inactive(self):
|
|
|
|
"""
|
|
|
|
Called when the page is no longer displayed.
|
|
|
|
"""
|
|
|
|
ListView.set_inactive(self)
|
|
|
|
self.uistate.viewmanager.tags.tag_disable()
|
|
|
|
|
2007-07-08 08:57:06 +05:30
|
|
|
def get_bookmarks(self):
|
|
|
|
return self.dbstate.db.get_family_bookmarks()
|
|
|
|
|
|
|
|
def add_bookmark(self, obj):
|
2008-07-26 17:29:37 +05:30
|
|
|
mlist = self.selected_handles()
|
2007-07-08 08:57:06 +05:30
|
|
|
if mlist:
|
|
|
|
self.bookmarks.add(mlist[0])
|
|
|
|
else:
|
|
|
|
from QuestionDialog import WarningDialog
|
|
|
|
WarningDialog(
|
|
|
|
_("Could Not Set a Bookmark"),
|
|
|
|
_("A bookmark could not be set because "
|
|
|
|
"no one was selected."))
|
|
|
|
|
2007-01-09 10:02:07 +05:30
|
|
|
def add(self, obj):
|
2007-10-08 22:11:39 +05:30
|
|
|
family = gen.lib.Family()
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2007-01-09 10:02:07 +05:30
|
|
|
EditFamily(self.dbstate, self.uistate, [], family)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2006-01-08 11:14:19 +05:30
|
|
|
|
2007-01-09 10:02:07 +05:30
|
|
|
def remove(self, obj):
|
2009-09-23 18:37:12 +05:30
|
|
|
from QuestionDialog import QuestionDialog2
|
|
|
|
from Utils import data_recover_msg
|
|
|
|
msg = _('Deleting item will remove it from the database.')
|
|
|
|
msg = msg + '\n' + data_recover_msg
|
|
|
|
q = QuestionDialog2(_('Delete %s?') % _('family'), msg,
|
|
|
|
_('_Delete Item'), _('Cancel'))
|
|
|
|
if q.run():
|
|
|
|
self.uistate.set_busy_cursor(1)
|
2010-01-25 23:15:21 +05:30
|
|
|
map(self.dbstate.db.remove_family_relationships,
|
|
|
|
self.selected_handles())
|
2009-09-23 18:37:12 +05:30
|
|
|
self.build_tree()
|
|
|
|
self.uistate.set_busy_cursor(0)
|
2006-01-12 11:10:44 +05:30
|
|
|
|
2007-01-09 10:02:07 +05:30
|
|
|
def edit(self, obj):
|
2008-07-26 17:29:37 +05:30
|
|
|
for handle in self.selected_handles():
|
2006-01-12 11:10:44 +05:30
|
|
|
family = self.dbstate.db.get_family_from_handle(handle)
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2007-01-09 10:02:07 +05:30
|
|
|
EditFamily(self.dbstate, self.uistate, [], family)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2007-08-31 01:19:04 +05:30
|
|
|
|
2010-07-22 07:46:32 +05:30
|
|
|
def merge(self, obj):
|
|
|
|
"""
|
|
|
|
Merge the selected families.
|
|
|
|
"""
|
|
|
|
mlist = self.selected_handles()
|
|
|
|
|
|
|
|
if len(mlist) != 2:
|
|
|
|
msg = _("Cannot merge families.")
|
|
|
|
msg2 = _("Exactly two families must be selected to perform a merge."
|
|
|
|
" A second family can be selected by holding down the "
|
|
|
|
"control key while clicking on the desired family.")
|
|
|
|
ErrorDialog(msg, msg2)
|
|
|
|
else:
|
|
|
|
import Merge
|
|
|
|
Merge.MergeFamilies(self.dbstate, self.uistate, mlist[0], mlist[1])
|
|
|
|
|
2007-08-31 01:19:04 +05:30
|
|
|
def dummy_report(self, obj):
|
2008-02-18 21:22:40 +05:30
|
|
|
""" For the xml UI definition of popup to work, the submenu
|
2007-08-31 01:19:04 +05:30
|
|
|
Quick Report must have an entry in the xml
|
|
|
|
As this submenu will be dynamically built, we offer a dummy action
|
2008-02-18 21:22:40 +05:30
|
|
|
"""
|
2007-08-31 01:19:04 +05:30
|
|
|
pass
|
2010-07-31 07:41:47 +05:30
|
|
|
|
|
|
|
def drag_info(self):
|
|
|
|
"""
|
|
|
|
Indicate that the drag type is a FAMILY_LINK
|
|
|
|
"""
|
|
|
|
return DdTargets.FAMILY_LINK
|
2010-10-23 04:52:33 +05:30
|
|
|
|
|
|
|
def tag_updated(self, handle_list):
|
|
|
|
"""
|
|
|
|
Update tagged rows when a tag color changes.
|
|
|
|
"""
|
|
|
|
all_links = set([])
|
|
|
|
for tag_handle in handle_list:
|
|
|
|
links = set([link[1] for link in
|
|
|
|
self.dbstate.db.find_backlink_handles(tag_handle,
|
|
|
|
include_classes='Family')])
|
|
|
|
all_links = all_links.union(links)
|
|
|
|
self.row_update(list(all_links))
|
|
|
|
|
|
|
|
def add_tag(self, transaction, family_handle, tag_handle):
|
|
|
|
"""
|
|
|
|
Add the given tag to the given family.
|
|
|
|
"""
|
|
|
|
family = self.dbstate.db.get_family_from_handle(family_handle)
|
|
|
|
family.add_tag(tag_handle)
|
|
|
|
self.dbstate.db.commit_family(family, transaction)
|