2005-08-09 10:11:20 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-05-02 11:20:46 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2005-08-09 10:11:20 +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$
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# standard python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2006-02-09 02:43:05 +05:30
|
|
|
import cPickle as pickle
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-04-14 18:09:17 +05:30
|
|
|
try:
|
|
|
|
set()
|
|
|
|
except:
|
|
|
|
from sets import Set as set
|
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gtk
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk
|
2006-01-23 06:57:46 +05:30
|
|
|
import pango
|
2005-08-09 10:11:20 +05:30
|
|
|
from gtk.gdk import ACTION_COPY, BUTTON1_MASK
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2005-08-11 05:23:24 +05:30
|
|
|
import RelLib
|
2006-05-17 06:18:46 +05:30
|
|
|
from DisplayModels import PeopleModel
|
2005-08-09 10:11:20 +05:30
|
|
|
import PageView
|
|
|
|
import NameDisplay
|
|
|
|
import Utils
|
|
|
|
import QuestionDialog
|
2005-08-19 18:14:44 +05:30
|
|
|
import TreeTips
|
2006-03-01 10:38:11 +05:30
|
|
|
import Errors
|
2006-05-05 05:18:53 +05:30
|
|
|
import Config
|
2006-03-21 11:53:45 +05:30
|
|
|
import const
|
|
|
|
|
2006-03-04 10:54:16 +05:30
|
|
|
from Editors import EditPerson
|
2006-08-24 10:08:06 +05:30
|
|
|
from Filters import SearchBar, SearchFilter
|
2006-08-05 10:11:56 +05:30
|
|
|
from Filters.SideBar import PersonSidebarFilter
|
2005-08-09 10:11:20 +05:30
|
|
|
from DdTargets import DdTargets
|
|
|
|
|
|
|
|
column_names = [
|
|
|
|
_('Name'),
|
|
|
|
_('ID') ,
|
|
|
|
_('Gender'),
|
|
|
|
_('Birth Date'),
|
|
|
|
_('Birth Place'),
|
|
|
|
_('Death Date'),
|
|
|
|
_('Death Place'),
|
|
|
|
_('Spouse'),
|
|
|
|
_('Last Change'),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2006-05-16 02:07:19 +05:30
|
|
|
|
2005-08-11 22:49:03 +05:30
|
|
|
class PersonView(PageView.PersonNavView):
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2005-08-11 05:23:24 +05:30
|
|
|
def __init__(self,dbstate,uistate):
|
2006-04-23 03:39:16 +05:30
|
|
|
PageView.PersonNavView.__init__(self, _('People'), dbstate, uistate)
|
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
self.inactive = False
|
2005-08-11 05:23:24 +05:30
|
|
|
dbstate.connect('database-changed',self.change_db)
|
2006-01-24 09:43:21 +05:30
|
|
|
self.handle_col = PeopleModel.COLUMN_INT_ID
|
2006-05-02 09:20:46 +05:30
|
|
|
self.model = None
|
2006-05-12 10:21:44 +05:30
|
|
|
self.generic_filter = None
|
2006-05-02 09:20:46 +05:30
|
|
|
|
|
|
|
self.func_list = {
|
|
|
|
'F2' : self.key_goto_home_person,
|
|
|
|
'F3' : self.key_edit_selected_person,
|
|
|
|
}
|
2006-06-20 09:55:44 +05:30
|
|
|
self.dirty = True
|
2006-07-11 03:16:46 +05:30
|
|
|
|
|
|
|
Config.client.notify_add("/apps/gramps/interface/filter",
|
|
|
|
self.filter_toggle)
|
2005-08-20 03:40:35 +05:30
|
|
|
|
2005-08-14 10:01:29 +05:30
|
|
|
def change_page(self):
|
2006-04-18 07:39:43 +05:30
|
|
|
pass
|
2006-08-04 19:21:44 +05:30
|
|
|
|
|
|
|
def set_active(self):
|
|
|
|
PageView.PersonNavView.set_active(self)
|
|
|
|
self.key_active_changed = self.dbstate.connect('active-changed',
|
|
|
|
self.goto_active_person)
|
|
|
|
self.goto_active_person()
|
|
|
|
|
|
|
|
def set_inactive(self):
|
2006-10-06 09:02:35 +05:30
|
|
|
if self.active:
|
|
|
|
PageView.PersonNavView.set_inactive(self)
|
|
|
|
self.dbstate.disconnect(self.key_active_changed)
|
2006-08-04 19:21:44 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
def define_actions(self):
|
2005-08-11 05:23:24 +05:30
|
|
|
"""
|
|
|
|
Required define_actions function for PageView. Builds the action
|
|
|
|
group information required. We extend beyond the normal here,
|
|
|
|
since we want to have more than one action group for the PersonView.
|
|
|
|
Most PageViews really won't care about this.
|
|
|
|
|
|
|
|
Special action groups for Forward and Back are created to allow the
|
|
|
|
handling of navigation buttons. Forward and Back allow the user to
|
|
|
|
advance or retreat throughout the history, and we want to have these
|
|
|
|
be able to toggle these when you are at the end of the history or
|
|
|
|
at the beginning of the history.
|
|
|
|
"""
|
|
|
|
|
2005-08-11 22:49:03 +05:30
|
|
|
PageView.PersonNavView.define_actions(self)
|
|
|
|
|
2006-05-02 11:20:46 +05:30
|
|
|
self.add_action('Add', gtk.STOCK_ADD, _("_Add"),
|
2006-05-08 06:45:19 +05:30
|
|
|
tip=_("Add a new person"), callback=self.add)
|
2006-05-02 11:20:46 +05:30
|
|
|
self.add_action('Edit', gtk.STOCK_EDIT, _("_Edit"),
|
2006-05-08 06:45:19 +05:30
|
|
|
tip=_("Edit the selected person"), callback=self.edit)
|
2006-05-02 11:20:46 +05:30
|
|
|
self.add_action('Remove', gtk.STOCK_REMOVE, _("_Remove"),
|
2006-05-08 06:45:19 +05:30
|
|
|
tip=_("Remove the selected person"),
|
2005-08-14 10:01:29 +05:30
|
|
|
callback=self.remove)
|
2006-05-02 11:20:46 +05:30
|
|
|
self.add_action('OpenAllNodes', None, _("Expand all nodes"),
|
2006-05-02 02:58:31 +05:30
|
|
|
callback=self.open_all_nodes)
|
2006-05-04 04:13:28 +05:30
|
|
|
self.add_action('CloseAllNodes', None, _("Collapse all nodes"),
|
2006-05-02 02:58:31 +05:30
|
|
|
callback=self.close_all_nodes)
|
2006-05-02 11:20:46 +05:30
|
|
|
self.add_action('Jump', None, _("_Jump"),
|
2006-01-08 10:10:33 +05:30
|
|
|
accel="<control>j",callback=self.jumpto)
|
2005-08-14 10:01:29 +05:30
|
|
|
|
2006-03-06 05:09:20 +05:30
|
|
|
self.add_action('ColumnEdit', gtk.STOCK_PROPERTIES,
|
2006-05-05 05:18:53 +05:30
|
|
|
_('_Column Editor'), callback=self.column_editor,)
|
2006-03-06 05:09:20 +05:30
|
|
|
|
2006-05-25 09:38:05 +05:30
|
|
|
self.add_action('CmpMerge', None, _('_Compare and merge'),
|
|
|
|
callback=self.cmp_merge)
|
|
|
|
self.add_action('FastMerge', None, _('_Fast merge'),
|
|
|
|
callback=self.fast_merge)
|
|
|
|
|
|
|
|
def cmp_merge(self, obj):
|
|
|
|
mlist = self.get_selected_objects()
|
|
|
|
|
|
|
|
if len(mlist) != 2:
|
2006-07-03 09:55:33 +05:30
|
|
|
QuestionDialog.ErrorDialog(
|
2006-06-21 03:04:53 +05:30
|
|
|
_("Cannot merge people"),
|
|
|
|
_("Exactly two people must be selected to perform a merge. "
|
|
|
|
"A second person can be selected by holding down the "
|
|
|
|
"control key while clicking on the desired person."))
|
2006-05-25 09:38:05 +05:30
|
|
|
else:
|
2006-05-26 02:32:49 +05:30
|
|
|
import Merge
|
2006-05-25 09:38:05 +05:30
|
|
|
p1 = self.db.get_person_from_handle(mlist[0])
|
|
|
|
p2 = self.db.get_person_from_handle(mlist[1])
|
|
|
|
if p1 and p2:
|
2006-08-18 03:18:12 +05:30
|
|
|
Merge.PersonCompare(self.dbstate, self.uistate, p1, p2,
|
|
|
|
self.build_tree)
|
2006-05-25 09:38:05 +05:30
|
|
|
else:
|
2006-07-03 09:55:33 +05:30
|
|
|
QuestionDialog.ErrorDialog(
|
2006-06-20 09:55:44 +05:30
|
|
|
_("Cannot merge people"),
|
|
|
|
_("Exactly two people must be selected to perform a "
|
|
|
|
"merge. A second person can be selected by holding "
|
|
|
|
"down the control key while clicking on the desired "
|
|
|
|
"person."))
|
2006-05-25 09:38:05 +05:30
|
|
|
|
|
|
|
def fast_merge(self, obj):
|
|
|
|
mlist = self.get_selected_objects()
|
|
|
|
|
|
|
|
if len(mlist) != 2:
|
2006-07-03 09:55:33 +05:30
|
|
|
QuestionDialog.ErrorDialog(
|
2006-06-21 03:04:53 +05:30
|
|
|
_("Cannot merge people"),
|
|
|
|
_("Exactly two people must be selected to perform a merge. "
|
|
|
|
"A second person can be selected by holding down the "
|
|
|
|
"control key while clicking on the desired person."))
|
2006-05-25 09:38:05 +05:30
|
|
|
else:
|
2006-05-26 02:32:49 +05:30
|
|
|
import Merge
|
2006-05-25 09:38:05 +05:30
|
|
|
|
|
|
|
p1 = self.db.get_person_from_handle(mlist[0])
|
|
|
|
p2 = self.db.get_person_from_handle(mlist[1])
|
|
|
|
if p1 and p2:
|
2006-08-17 09:05:44 +05:30
|
|
|
Merge.MergePeopleUI(self.dbstate, self.uistate, p1, p2,
|
|
|
|
self.build_tree)
|
2006-05-25 09:38:05 +05:30
|
|
|
else:
|
2006-07-03 09:55:33 +05:30
|
|
|
QuestionDialog.ErrorDialog(
|
2006-06-21 03:04:53 +05:30
|
|
|
_("Cannot merge people"),
|
|
|
|
_("Exactly two people must be selected to perform a merge. "
|
|
|
|
"A second person can be selected by holding down the "
|
|
|
|
"control key while clicking on the desired person."))
|
2006-05-25 09:38:05 +05:30
|
|
|
|
2006-03-06 05:09:20 +05:30
|
|
|
def column_editor(self,obj):
|
|
|
|
import ColumnOrder
|
|
|
|
|
2006-04-24 03:44:28 +05:30
|
|
|
ColumnOrder.ColumnOrder(
|
2006-04-24 09:36:17 +05:30
|
|
|
_('Select Person Columns'),
|
2006-04-24 03:44:28 +05:30
|
|
|
self.uistate,
|
|
|
|
self.dbstate.db.get_person_column_order(),
|
|
|
|
column_names,
|
|
|
|
self.set_column_order)
|
2006-03-06 05:09:20 +05:30
|
|
|
|
2006-04-24 03:28:17 +05:30
|
|
|
def set_column_order(self, column_list):
|
|
|
|
self.dbstate.db.set_person_column_order(column_list)
|
2006-03-06 05:09:20 +05:30
|
|
|
self.build_columns()
|
2006-05-10 09:32:45 +05:30
|
|
|
self.setup_filter()
|
2005-08-11 05:23:24 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
def get_stock(self):
|
2005-08-11 05:23:24 +05:30
|
|
|
"""
|
|
|
|
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.
|
|
|
|
"""
|
2005-08-09 10:11:20 +05:30
|
|
|
return 'gramps-person'
|
|
|
|
|
|
|
|
def build_widget(self):
|
2005-08-11 05:23:24 +05:30
|
|
|
"""
|
|
|
|
Builds the interface and returns a gtk.Container type that
|
|
|
|
contains the interface. This containter will be inserted into
|
|
|
|
a gtk.Notebook page.
|
|
|
|
"""
|
2006-05-05 18:55:24 +05:30
|
|
|
hpaned = gtk.HBox()
|
2005-08-09 10:11:20 +05:30
|
|
|
self.vbox = gtk.VBox()
|
|
|
|
self.vbox.set_border_width(4)
|
|
|
|
self.vbox.set_spacing(4)
|
|
|
|
|
In .:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* src/Filters/_SearchBar.py (SearchBar.__init__): Take dbstate as
a constructor argument; (SearchBar.apply_filter): pass dbstate.
* src/PageView.py (BookMarkView.add_bookmark,
PersonNavView.jumpto, PersonNavView.fwd_clicked,
PersonNavView.back_clicked, ListView.build_widget): Pass dbstate.
* src/Navigation.py (BaseNavigation.__init__,
PersonNavigation.__init__): Take dbstate as a constructor argument;
(PersonNavigation.build_item_name): properly access dbstate.
* src/DisplayState.py (__init__): Do not take dbstate as a
constructor argument; Do not connect dbstate signal here (moved to
ViewManager);
(display_relationship,push_message,modify_statusbar): Make dbstate
an argument.
* src/plugins/Checkpoint.py (run_tool): Pass dbstate.
* src/ViewManager.py (_build_main_window): Do not pass dbstate to
uistate DisplayState constructor; connect dbstate signal handler;
pass dbstate to Navigation; (keypress): Pass dbstate;
(statusbar_key_update): Pass dbstate;
(do_load_plugins): Pass dbstate;
(ViewManager.add_bookmark): Pass dbstate.
* src/DataViews/_RelationView.py (shade_update): Pass dbstate.
* src/DataViews/_PersonView.py (build_widget,_goto,
key_goto_home_person, key_edit_selected_person): Pass dbstate.
* src/Filters/Makefile.am (pkgdata_PYTHON): Remove obsolete file.
* src/Filters/__init__.py: Remove importing obsolete module.
* src/Filters/_FilterWidget.py: Remove obsolete module.
In po:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Remove obsolete file.
svn: r7104
2006-08-01 10:01:10 +05:30
|
|
|
self.search_bar = SearchBar(self.dbstate, self.uistate,
|
|
|
|
self.build_tree, self.goto_active_person)
|
2006-05-10 09:32:45 +05:30
|
|
|
filter_box = self.search_bar.build()
|
2006-01-17 20:41:15 +05:30
|
|
|
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree = gtk.TreeView()
|
|
|
|
self.tree.set_rules_hint(True)
|
|
|
|
self.tree.set_headers_visible(True)
|
2006-03-19 08:55:31 +05:30
|
|
|
self.tree.set_fixed_height_mode(True)
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.connect('key-press-event',self.key_press)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
scrollwindow = gtk.ScrolledWindow()
|
|
|
|
scrollwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
|
|
|
|
scrollwindow.set_shadow_type(gtk.SHADOW_ETCHED_IN)
|
2005-08-20 03:40:35 +05:30
|
|
|
scrollwindow.add(self.tree)
|
2005-12-05 10:24:40 +05:30
|
|
|
scrollwindow.show_all()
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-01-17 20:41:15 +05:30
|
|
|
self.vbox.pack_start(filter_box,False)
|
2005-08-09 10:11:20 +05:30
|
|
|
self.vbox.pack_start(scrollwindow,True)
|
|
|
|
|
|
|
|
self.renderer = gtk.CellRendererText()
|
2006-01-23 06:57:46 +05:30
|
|
|
self.renderer.set_property('ellipsize',pango.ELLIPSIZE_END)
|
2005-08-09 10:11:20 +05:30
|
|
|
self.inactive = False
|
|
|
|
|
|
|
|
self.columns = []
|
2006-05-10 09:32:45 +05:30
|
|
|
|
|
|
|
self.setup_filter()
|
2005-08-09 10:11:20 +05:30
|
|
|
self.build_columns()
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.connect('button-press-event', self.button_press)
|
|
|
|
self.tree.connect('drag_data_get', self.drag_data_get)
|
2006-03-27 10:36:10 +05:30
|
|
|
self.tree.connect('drag_begin', self.drag_begin)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2005-08-20 03:40:35 +05:30
|
|
|
self.selection = self.tree.get_selection()
|
|
|
|
self.selection.set_mode(gtk.SELECTION_MULTIPLE)
|
|
|
|
self.selection.connect('changed',self.row_changed)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-08-22 22:19:21 +05:30
|
|
|
self.filter_sidebar = PersonSidebarFilter(self.uistate,
|
|
|
|
self.filter_clicked)
|
2006-05-16 02:07:19 +05:30
|
|
|
self.filter_pane = self.filter_sidebar.get_widget()
|
2006-05-05 05:18:53 +05:30
|
|
|
|
2006-05-05 18:55:24 +05:30
|
|
|
hpaned.pack_start(self.vbox, True, True)
|
|
|
|
hpaned.pack_end(self.filter_pane, False, False)
|
2006-07-11 03:16:46 +05:30
|
|
|
self.filter_toggle(None, None, None, None)
|
2006-05-05 05:18:53 +05:30
|
|
|
return hpaned
|
|
|
|
|
2006-06-21 08:13:19 +05:30
|
|
|
def post(self):
|
|
|
|
if Config.get(Config.FILTER):
|
|
|
|
self.search_bar.hide()
|
|
|
|
self.filter_pane.show()
|
|
|
|
else:
|
|
|
|
self.search_bar.show()
|
|
|
|
self.filter_pane.hide()
|
|
|
|
|
2006-05-16 02:07:19 +05:30
|
|
|
def filter_clicked(self):
|
|
|
|
self.generic_filter = self.filter_sidebar.get_filter()
|
2006-05-13 04:08:48 +05:30
|
|
|
self.build_tree()
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-03-27 10:36:10 +05:30
|
|
|
def drag_begin(self, widget, *data):
|
|
|
|
widget.drag_source_set_icon_stock(self.get_stock())
|
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
def ui_definition(self):
|
2005-08-11 05:23:24 +05:30
|
|
|
"""
|
|
|
|
Specifies the UIManager XML code that defines the menus and buttons
|
|
|
|
associated with the interface.
|
|
|
|
"""
|
2005-08-09 10:11:20 +05:30
|
|
|
return '''<ui>
|
2006-01-08 10:10:33 +05:30
|
|
|
<accelerator action="Jump"/>
|
2005-08-09 10:11:20 +05:30
|
|
|
<menubar name="MenuBar">
|
2006-04-27 03:18:13 +05:30
|
|
|
<menu action="BookMenu">
|
|
|
|
<placeholder name="AddEditBook">
|
|
|
|
<menuitem action="AddBook"/>
|
|
|
|
<menuitem action="EditBook"/>
|
|
|
|
</placeholder>
|
|
|
|
</menu>
|
2005-08-09 10:11:20 +05:30
|
|
|
<menu action="GoMenu">
|
|
|
|
<placeholder name="CommonGo">
|
|
|
|
<menuitem action="Back"/>
|
|
|
|
<menuitem action="Forward"/>
|
|
|
|
<separator/>
|
|
|
|
<menuitem action="HomePerson"/>
|
|
|
|
<separator/>
|
|
|
|
</placeholder>
|
|
|
|
</menu>
|
|
|
|
<menu action="EditMenu">
|
|
|
|
<placeholder name="CommonEdit">
|
|
|
|
<menuitem action="Add"/>
|
|
|
|
<menuitem action="Edit"/>
|
|
|
|
<menuitem action="Remove"/>
|
|
|
|
</placeholder>
|
2006-02-10 06:40:52 +05:30
|
|
|
<menuitem action="SetActive"/>
|
2006-03-06 05:09:20 +05:30
|
|
|
<menuitem action="ColumnEdit"/>
|
2006-06-01 09:06:59 +05:30
|
|
|
<menuitem action="FilterEdit"/>
|
2006-05-25 09:38:05 +05:30
|
|
|
<placeholder name="Merge">
|
|
|
|
<menuitem action="CmpMerge"/>
|
|
|
|
<menuitem action="FastMerge"/>
|
|
|
|
</placeholder>
|
2005-08-09 10:11:20 +05:30
|
|
|
</menu>
|
|
|
|
</menubar>
|
|
|
|
<toolbar name="ToolBar">
|
|
|
|
<placeholder name="CommonNavigation">
|
|
|
|
<toolitem action="Back"/>
|
|
|
|
<toolitem action="Forward"/>
|
|
|
|
<toolitem action="HomePerson"/>
|
|
|
|
</placeholder>
|
|
|
|
<placeholder name="CommonEdit">
|
|
|
|
<toolitem action="Add"/>
|
|
|
|
<toolitem action="Edit"/>
|
|
|
|
<toolitem action="Remove"/>
|
|
|
|
</placeholder>
|
|
|
|
</toolbar>
|
2005-08-12 08:05:27 +05:30
|
|
|
<popup name="Popup">
|
|
|
|
<menuitem action="Back"/>
|
|
|
|
<menuitem action="Forward"/>
|
|
|
|
<menuitem action="HomePerson"/>
|
|
|
|
<separator/>
|
2006-05-02 02:58:31 +05:30
|
|
|
<menuitem action="OpenAllNodes"/>
|
|
|
|
<menuitem action="CloseAllNodes"/>
|
|
|
|
<separator/>
|
2005-08-12 08:05:27 +05:30
|
|
|
<menuitem action="Add"/>
|
|
|
|
<menuitem action="Edit"/>
|
|
|
|
<menuitem action="Remove"/>
|
|
|
|
</popup>
|
2005-08-09 10:11:20 +05:30
|
|
|
</ui>'''
|
|
|
|
|
2005-08-11 05:23:24 +05:30
|
|
|
def change_db(self,db):
|
|
|
|
"""
|
|
|
|
Callback associated with DbState. Whenenver the database
|
|
|
|
changes, this task is called. In this case, we rebuild the
|
|
|
|
columns, and connect signals to the connected database. Tere
|
|
|
|
is no need to store the database, since we will get the value
|
|
|
|
from self.state.db
|
|
|
|
"""
|
|
|
|
self.build_columns()
|
2006-05-10 09:32:45 +05:30
|
|
|
self.setup_filter()
|
2006-02-10 10:40:35 +05:30
|
|
|
self.db = db
|
2005-08-11 05:23:24 +05:30
|
|
|
db.connect('person-add', self.person_added)
|
|
|
|
db.connect('person-update', self.person_updated)
|
|
|
|
db.connect('person-delete', self.person_removed)
|
|
|
|
db.connect('person-rebuild', self.build_tree)
|
2006-05-10 09:32:45 +05:30
|
|
|
self.build_tree()
|
2006-04-27 03:18:13 +05:30
|
|
|
self.bookmarks.update_bookmarks(db.get_bookmarks())
|
|
|
|
if self.active:
|
|
|
|
self.bookmarks.redraw()
|
2005-08-11 05:23:24 +05:30
|
|
|
|
|
|
|
def goto_active_person(self,obj=None):
|
|
|
|
"""
|
|
|
|
Callback (and usable function) that selects the active person
|
|
|
|
in the display tree.
|
|
|
|
|
|
|
|
We have a bit of a problem due to the nature of how GTK works.
|
|
|
|
We have unselect the previous path and select the new path. However,
|
|
|
|
these cause a row change, which calls the row_change callback, which
|
|
|
|
can end up calling change_active_person, which can call
|
|
|
|
goto_active_person, causing a bit of recusion. Confusing, huh?
|
|
|
|
|
|
|
|
Unforunately, we row_change has to be able to call change_active_person,
|
|
|
|
because the can occur from the interface in addition to programatically.
|
|
|
|
|
|
|
|
TO handle this, we set the self.inactive variable that we can check
|
|
|
|
in row_change to look for this particular condition.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# if there is no active person, or if we have been marked inactive,
|
|
|
|
# simply return
|
|
|
|
|
|
|
|
if not self.dbstate.active or self.inactive:
|
|
|
|
return
|
|
|
|
|
|
|
|
# mark inactive to prevent recusion
|
|
|
|
self.inactive = True
|
|
|
|
|
2006-06-20 09:55:44 +05:30
|
|
|
self._goto()
|
|
|
|
|
|
|
|
# disable the inactive flag
|
|
|
|
self.inactive = False
|
|
|
|
|
|
|
|
# update history
|
|
|
|
self.handle_history(self.dbstate.active.handle)
|
|
|
|
|
|
|
|
def _goto(self):
|
|
|
|
|
2005-08-11 05:23:24 +05:30
|
|
|
# select the active person in the person view
|
|
|
|
p = self.dbstate.active
|
|
|
|
try:
|
2006-06-20 09:55:44 +05:30
|
|
|
if self.model and p:
|
2006-05-02 09:20:46 +05:30
|
|
|
path = self.model.on_get_path(p.get_handle())
|
2006-08-02 05:20:47 +05:30
|
|
|
|
2006-05-02 09:20:46 +05:30
|
|
|
group_name = p.get_primary_name().get_group_name()
|
|
|
|
top_name = self.dbstate.db.get_name_group_mapping(group_name)
|
|
|
|
top_path = self.model.on_get_path(top_name)
|
|
|
|
self.tree.expand_row(top_path,0)
|
|
|
|
|
|
|
|
current = self.model.on_get_iter(path)
|
|
|
|
selected = self.selection.path_is_selected(path)
|
|
|
|
if current != p.get_handle() or not selected:
|
|
|
|
self.selection.unselect_all()
|
|
|
|
self.selection.select_path(path)
|
|
|
|
self.tree.scroll_to_cell(path,None,1,0.5,0)
|
2005-08-11 05:23:24 +05:30
|
|
|
except KeyError:
|
2005-08-20 03:40:35 +05:30
|
|
|
self.selection.unselect_all()
|
In .:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* src/Filters/_SearchBar.py (SearchBar.__init__): Take dbstate as
a constructor argument; (SearchBar.apply_filter): pass dbstate.
* src/PageView.py (BookMarkView.add_bookmark,
PersonNavView.jumpto, PersonNavView.fwd_clicked,
PersonNavView.back_clicked, ListView.build_widget): Pass dbstate.
* src/Navigation.py (BaseNavigation.__init__,
PersonNavigation.__init__): Take dbstate as a constructor argument;
(PersonNavigation.build_item_name): properly access dbstate.
* src/DisplayState.py (__init__): Do not take dbstate as a
constructor argument; Do not connect dbstate signal here (moved to
ViewManager);
(display_relationship,push_message,modify_statusbar): Make dbstate
an argument.
* src/plugins/Checkpoint.py (run_tool): Pass dbstate.
* src/ViewManager.py (_build_main_window): Do not pass dbstate to
uistate DisplayState constructor; connect dbstate signal handler;
pass dbstate to Navigation; (keypress): Pass dbstate;
(statusbar_key_update): Pass dbstate;
(do_load_plugins): Pass dbstate;
(ViewManager.add_bookmark): Pass dbstate.
* src/DataViews/_RelationView.py (shade_update): Pass dbstate.
* src/DataViews/_PersonView.py (build_widget,_goto,
key_goto_home_person, key_edit_selected_person): Pass dbstate.
* src/Filters/Makefile.am (pkgdata_PYTHON): Remove obsolete file.
* src/Filters/__init__.py: Remove importing obsolete module.
* src/Filters/_FilterWidget.py: Remove obsolete module.
In po:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Remove obsolete file.
svn: r7104
2006-08-01 10:01:10 +05:30
|
|
|
self.uistate.push_message(self.dbstate,
|
|
|
|
_("Active person not visible"))
|
2005-08-11 05:23:24 +05:30
|
|
|
self.dbstate.active = p
|
|
|
|
|
|
|
|
def setup_filter(self):
|
|
|
|
"""
|
|
|
|
Builds the default filters and add them to the filter menu.
|
|
|
|
"""
|
2006-05-10 09:32:45 +05:30
|
|
|
|
|
|
|
cols = []
|
2006-05-11 02:26:22 +05:30
|
|
|
cols.append((_("Name"),0))
|
2006-05-10 09:32:45 +05:30
|
|
|
for pair in self.dbstate.db.get_person_column_order():
|
|
|
|
if not pair[0]:
|
|
|
|
continue
|
2006-05-11 02:26:22 +05:30
|
|
|
cols.append((column_names[pair[1]],pair[1]))
|
2006-05-10 09:32:45 +05:30
|
|
|
|
|
|
|
self.search_bar.setup_filter(cols)
|
2005-08-11 05:23:24 +05:30
|
|
|
|
|
|
|
def build_tree(self):
|
|
|
|
"""
|
|
|
|
Creates a new PeopleModel instance. Essentially creates a complete
|
2006-06-20 09:55:44 +05:30
|
|
|
rebuild of the data. We need to temporarily store the active person,
|
|
|
|
since it can change when rows are unselected when the model is set.
|
2005-08-11 05:23:24 +05:30
|
|
|
"""
|
2006-01-20 11:03:38 +05:30
|
|
|
if self.active:
|
2006-05-10 09:32:45 +05:30
|
|
|
|
|
|
|
if Config.get(Config.FILTER):
|
2006-05-16 00:19:35 +05:30
|
|
|
filter_info = (PeopleModel.GENERIC, self.generic_filter)
|
2006-05-10 09:32:45 +05:30
|
|
|
else:
|
2006-05-16 00:19:35 +05:30
|
|
|
filter_info = (PeopleModel.SEARCH, self.search_bar.get_value())
|
2006-06-20 09:55:44 +05:30
|
|
|
|
2006-05-17 06:18:46 +05:30
|
|
|
self.model = PeopleModel(self.dbstate.db, filter_info)
|
2006-05-10 09:32:45 +05:30
|
|
|
|
2006-06-20 09:55:44 +05:30
|
|
|
active = self.dbstate.active
|
2006-01-20 11:03:38 +05:30
|
|
|
self.tree.set_model(self.model)
|
|
|
|
|
2006-03-21 11:53:45 +05:30
|
|
|
if const.use_tips and self.model.tooltip_column != None:
|
|
|
|
self.tooltips = TreeTips.TreeTips(self.tree,
|
|
|
|
self.model.tooltip_column,
|
2006-03-19 08:55:31 +05:30
|
|
|
True)
|
2006-06-20 09:55:44 +05:30
|
|
|
|
2006-01-20 11:03:38 +05:30
|
|
|
self.build_columns()
|
2006-05-10 09:32:45 +05:30
|
|
|
self.setup_filter()
|
2006-06-20 09:55:44 +05:30
|
|
|
self.dbstate.change_active_person(active)
|
|
|
|
self._goto()
|
2006-01-20 11:03:38 +05:30
|
|
|
self.dirty = False
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2005-08-19 18:14:44 +05:30
|
|
|
|
2006-07-11 03:16:46 +05:30
|
|
|
def filter_toggle(self, client, cnxn_id, etnry, data):
|
|
|
|
if Config.get(Config.FILTER):
|
2006-05-10 09:32:45 +05:30
|
|
|
self.search_bar.hide()
|
2006-05-05 05:18:53 +05:30
|
|
|
self.filter_pane.show()
|
2006-05-07 09:20:24 +05:30
|
|
|
active = True
|
|
|
|
else:
|
2006-05-10 09:32:45 +05:30
|
|
|
self.search_bar.show()
|
2006-05-07 09:20:24 +05:30
|
|
|
self.filter_pane.hide()
|
|
|
|
active = False
|
2006-05-16 00:19:35 +05:30
|
|
|
self.build_tree()
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
def add(self,obj):
|
|
|
|
person = RelLib.Person()
|
2006-11-06 06:11:13 +05:30
|
|
|
|
|
|
|
# attempt to get the current surname
|
|
|
|
|
|
|
|
(mode,paths) = self.selection.get_selected_rows()
|
|
|
|
|
|
|
|
name = u""
|
|
|
|
|
|
|
|
if len(paths) == 1:
|
|
|
|
path = paths[0]
|
|
|
|
if len(path) == 1:
|
|
|
|
name = self.model.on_get_iter(path)
|
|
|
|
else:
|
|
|
|
node = self.model.on_get_iter(path)
|
|
|
|
handle = self.model.on_get_value(node, PeopleModel.COLUMN_INT_ID)
|
|
|
|
p = self.dbstate.db.get_person_from_handle(handle)
|
|
|
|
name = p.get_primary_name().get_surname()
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2006-11-06 06:11:13 +05:30
|
|
|
person.get_primary_name().set_surname(name)
|
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
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
def edit(self,obj):
|
2005-09-17 00:07:13 +05:30
|
|
|
if self.dbstate.active:
|
2006-03-01 10:38:11 +05:30
|
|
|
try:
|
2006-05-12 04:35:12 +05:30
|
|
|
handle = self.dbstate.active.handle
|
|
|
|
person = self.dbstate.db.get_person_from_handle(handle)
|
|
|
|
EditPerson(self.dbstate, self.uistate, [], person)
|
2006-03-01 10:38:11 +05:30
|
|
|
except Errors.WindowActiveError:
|
|
|
|
pass
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-05-02 02:58:31 +05:30
|
|
|
def open_all_nodes(self,obj):
|
|
|
|
self.tree.expand_all()
|
|
|
|
|
|
|
|
def close_all_nodes(self,obj):
|
|
|
|
self.tree.collapse_all()
|
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
def remove(self,obj):
|
|
|
|
mlist = self.get_selected_objects()
|
|
|
|
if len(mlist) == 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
for sel in mlist:
|
2005-08-11 05:23:24 +05:30
|
|
|
p = self.dbstate.db.get_person_from_handle(sel)
|
2005-08-09 10:11:20 +05:30
|
|
|
self.active_person = p
|
|
|
|
name = NameDisplay.displayer.display(p)
|
|
|
|
|
|
|
|
msg = _('Deleting the person will remove the person '
|
|
|
|
'from the database.')
|
|
|
|
msg = "%s %s" % (msg,Utils.data_recover_msg)
|
|
|
|
QuestionDialog.QuestionDialog(_('Delete %s?') % name,msg,
|
|
|
|
_('_Delete Person'),
|
|
|
|
self.delete_person_response)
|
|
|
|
|
|
|
|
def delete_person_response(self):
|
|
|
|
#self.disable_interface()
|
2005-08-11 05:23:24 +05:30
|
|
|
trans = self.dbstate.db.transaction_begin()
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
n = NameDisplay.displayer.display(self.active_person)
|
|
|
|
|
2005-08-11 05:23:24 +05:30
|
|
|
if self.dbstate.db.get_default_person() == self.active_person:
|
|
|
|
self.dbstate.db.set_default_person_handle(None)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
for family_handle in self.active_person.get_family_handle_list():
|
|
|
|
if not family_handle:
|
|
|
|
continue
|
2005-08-11 05:23:24 +05:30
|
|
|
family = self.dbstate.db.get_family_from_handle(family_handle)
|
2005-08-09 10:11:20 +05:30
|
|
|
family_to_remove = False
|
|
|
|
if self.active_person.get_handle() == family.get_father_handle():
|
|
|
|
if family.get_mother_handle():
|
|
|
|
family.set_father_handle(None)
|
|
|
|
else:
|
|
|
|
family_to_remove = True
|
|
|
|
else:
|
|
|
|
if family.get_father_handle():
|
|
|
|
family.set_mother_handle(None)
|
|
|
|
else:
|
|
|
|
family_to_remove = True
|
|
|
|
if family_to_remove:
|
2006-05-09 00:38:03 +05:30
|
|
|
for child_ref in family.get_child_ref_list():
|
|
|
|
child = self.dbstate.db.get_person_from_handle(child_ref.ref)
|
2005-08-09 10:11:20 +05:30
|
|
|
child.remove_parent_family_handle(family_handle)
|
2005-12-22 11:43:11 +05:30
|
|
|
self.dbstate.db.commit_person(child,trans)
|
2005-08-11 05:23:24 +05:30
|
|
|
self.dbstate.db.remove_family(family_handle,trans)
|
2005-08-09 10:11:20 +05:30
|
|
|
else:
|
2005-08-11 05:23:24 +05:30
|
|
|
self.dbstate.db.commit_family(family,trans)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-04-14 18:09:17 +05:30
|
|
|
for family_handle in self.active_person.get_parent_family_handle_list():
|
2005-08-09 10:11:20 +05:30
|
|
|
if family_handle:
|
2005-12-22 11:43:11 +05:30
|
|
|
family = self.dbstate.db.get_family_from_handle(family_handle)
|
2005-08-09 10:11:20 +05:30
|
|
|
family.remove_child_handle(self.active_person.get_handle())
|
2005-12-22 11:43:11 +05:30
|
|
|
self.dbstate.db.commit_family(family,trans)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
handle = self.active_person.get_handle()
|
|
|
|
|
|
|
|
person = self.active_person
|
|
|
|
self.remove_from_person_list(person)
|
2005-08-11 05:23:24 +05:30
|
|
|
self.dbstate.db.remove_person(handle, trans)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2006-02-03 11:01:42 +05:30
|
|
|
self.uistate.phistory.back()
|
2005-08-11 05:23:24 +05:30
|
|
|
self.dbstate.db.transaction_commit(trans,_("Delete Person (%s)") % n)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
def build_columns(self):
|
|
|
|
for column in self.columns:
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.remove_column(column)
|
2005-09-16 20:55:27 +05:30
|
|
|
try:
|
2006-04-24 03:28:17 +05:30
|
|
|
column = gtk.TreeViewColumn(
|
|
|
|
_('Name'),
|
|
|
|
self.renderer,text=0,
|
2006-05-13 10:15:46 +05:30
|
|
|
foreground=self.model.marker_color_column)
|
2006-04-24 03:28:17 +05:30
|
|
|
|
2005-09-16 20:55:27 +05:30
|
|
|
except AttributeError:
|
|
|
|
column = gtk.TreeViewColumn(_('Name'), self.renderer,text=0)
|
2006-04-24 03:28:17 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
column.set_resizable(True)
|
|
|
|
column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
|
2006-03-19 08:55:31 +05:30
|
|
|
column.set_fixed_width(225)
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.append_column(column)
|
2005-08-09 10:11:20 +05:30
|
|
|
self.columns = [column]
|
|
|
|
|
2005-08-11 05:23:24 +05:30
|
|
|
for pair in self.dbstate.db.get_person_column_order():
|
2005-08-09 10:11:20 +05:30
|
|
|
if not pair[0]:
|
|
|
|
continue
|
|
|
|
name = column_names[pair[1]]
|
2005-09-16 20:55:27 +05:30
|
|
|
try:
|
2006-05-12 10:21:44 +05:30
|
|
|
column = gtk.TreeViewColumn(
|
|
|
|
name, self.renderer, markup=pair[1],
|
2006-05-13 10:15:46 +05:30
|
|
|
foreground=self.model.marker_color_column)
|
2005-09-16 20:55:27 +05:30
|
|
|
except AttributeError:
|
2006-05-12 10:21:44 +05:30
|
|
|
column = gtk.TreeViewColumn(
|
|
|
|
name, self.renderer, markup=pair[1])
|
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
column.set_resizable(True)
|
2006-03-19 08:55:31 +05:30
|
|
|
column.set_fixed_width(pair[2])
|
|
|
|
column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
|
2005-08-09 10:11:20 +05:30
|
|
|
self.columns.append(column)
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.append_column(column)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
def row_changed(self,obj):
|
|
|
|
"""Called with a row is changed. Check the selected objects from
|
|
|
|
the person_tree to get the IDs of the selected objects. Set the
|
|
|
|
active person to the first person in the list. If no one is
|
|
|
|
selected, set the active person to None"""
|
|
|
|
|
|
|
|
selected_ids = self.get_selected_objects()
|
2005-08-11 05:23:24 +05:30
|
|
|
if not self.inactive:
|
|
|
|
try:
|
2006-06-17 02:56:44 +05:30
|
|
|
if len(selected_ids) == 0:
|
|
|
|
self.dbstate.change_active_person(None)
|
|
|
|
else:
|
|
|
|
handle = selected_ids[0]
|
|
|
|
person = self.dbstate.db.get_person_from_handle(handle)
|
|
|
|
self.dbstate.change_active_person(person)
|
2005-08-11 05:23:24 +05:30
|
|
|
except:
|
2006-04-18 07:39:43 +05:30
|
|
|
pass
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
if len(selected_ids) == 1:
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.drag_source_set(BUTTON1_MASK,
|
2006-03-23 04:33:57 +05:30
|
|
|
[DdTargets.PERSON_LINK.target()],
|
|
|
|
ACTION_COPY)
|
2005-08-09 10:11:20 +05:30
|
|
|
elif len(selected_ids) > 1:
|
2005-08-20 03:40:35 +05:30
|
|
|
self.tree.drag_source_set(BUTTON1_MASK,
|
2006-03-23 04:33:57 +05:30
|
|
|
[DdTargets.PERSON_LINK_LIST.target()],
|
|
|
|
ACTION_COPY)
|
In .:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* src/Filters/_SearchBar.py (SearchBar.__init__): Take dbstate as
a constructor argument; (SearchBar.apply_filter): pass dbstate.
* src/PageView.py (BookMarkView.add_bookmark,
PersonNavView.jumpto, PersonNavView.fwd_clicked,
PersonNavView.back_clicked, ListView.build_widget): Pass dbstate.
* src/Navigation.py (BaseNavigation.__init__,
PersonNavigation.__init__): Take dbstate as a constructor argument;
(PersonNavigation.build_item_name): properly access dbstate.
* src/DisplayState.py (__init__): Do not take dbstate as a
constructor argument; Do not connect dbstate signal here (moved to
ViewManager);
(display_relationship,push_message,modify_statusbar): Make dbstate
an argument.
* src/plugins/Checkpoint.py (run_tool): Pass dbstate.
* src/ViewManager.py (_build_main_window): Do not pass dbstate to
uistate DisplayState constructor; connect dbstate signal handler;
pass dbstate to Navigation; (keypress): Pass dbstate;
(statusbar_key_update): Pass dbstate;
(do_load_plugins): Pass dbstate;
(ViewManager.add_bookmark): Pass dbstate.
* src/DataViews/_RelationView.py (shade_update): Pass dbstate.
* src/DataViews/_PersonView.py (build_widget,_goto,
key_goto_home_person, key_edit_selected_person): Pass dbstate.
* src/Filters/Makefile.am (pkgdata_PYTHON): Remove obsolete file.
* src/Filters/__init__.py: Remove importing obsolete module.
* src/Filters/_FilterWidget.py: Remove obsolete module.
In po:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Remove obsolete file.
svn: r7104
2006-08-01 10:01:10 +05:30
|
|
|
self.uistate.modify_statusbar(self.dbstate)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2005-08-20 03:40:35 +05:30
|
|
|
def drag_data_get(self, widget, context, sel_data, info, time):
|
2005-08-09 10:11:20 +05:30
|
|
|
selected_ids = self.get_selected_objects()
|
2006-04-14 18:09:17 +05:30
|
|
|
nonempty_ids = [h for h in selected_ids if h]
|
|
|
|
if nonempty_ids:
|
2006-05-12 10:21:44 +05:30
|
|
|
data = (DdTargets.PERSON_LINK.drag_type, id(self),
|
|
|
|
nonempty_ids[0], 0)
|
2006-04-14 18:09:17 +05:30
|
|
|
sel_data.set(sel_data.target, 8 ,pickle.dumps(data))
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
def person_added(self,handle_list):
|
2006-05-26 02:05:04 +05:30
|
|
|
if not self.model:
|
|
|
|
return
|
2006-10-30 23:39:42 +05:30
|
|
|
if self.active:
|
|
|
|
self.dirty = False
|
|
|
|
for node in handle_list:
|
|
|
|
person = self.dbstate.db.get_person_from_handle(node)
|
|
|
|
pn = person.get_primary_name()
|
|
|
|
top = NameDisplay.displayer.name_grouping_name(self.db, pn)
|
2006-08-02 05:20:47 +05:30
|
|
|
|
2006-10-30 23:39:42 +05:30
|
|
|
self.model.rebuild_data()
|
|
|
|
if not self.model.is_visable(node):
|
|
|
|
continue
|
2006-11-01 01:46:08 +05:30
|
|
|
|
2006-10-30 23:39:42 +05:30
|
|
|
if (not self.model.sname_sub.has_key(top) or
|
|
|
|
len(self.model.sname_sub[top]) == 1):
|
|
|
|
path = self.model.on_get_path(top)
|
|
|
|
pnode = self.model.get_iter(path)
|
|
|
|
self.model.row_inserted(path,pnode)
|
|
|
|
path = self.model.on_get_path(node)
|
2006-11-01 01:46:08 +05:30
|
|
|
pnode = self.model.get_iter(path)
|
2006-10-30 23:39:42 +05:30
|
|
|
self.model.row_inserted(path, pnode)
|
|
|
|
else:
|
|
|
|
self.dirty = True
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
def person_removed(self,handle_list):
|
2006-05-26 02:05:04 +05:30
|
|
|
if not self.model:
|
|
|
|
return
|
|
|
|
|
2006-08-18 10:13:03 +05:30
|
|
|
if Config.get(Config.FILTER):
|
2006-08-24 10:08:06 +05:30
|
|
|
data_filter = self.generic_filter
|
2006-08-18 10:13:03 +05:30
|
|
|
else:
|
2006-08-24 10:08:06 +05:30
|
|
|
col,text,inv = self.search_bar.get_value()
|
|
|
|
func = lambda x: self.model.on_get_value(x, col) or u""
|
|
|
|
data_filter = SearchFilter(func, text, inv)
|
2006-08-18 10:13:03 +05:30
|
|
|
|
2006-02-09 10:40:20 +05:30
|
|
|
self.model.clear_cache()
|
2006-03-10 04:07:19 +05:30
|
|
|
for node in handle_list:
|
|
|
|
person = self.dbstate.db.get_person_from_handle(node)
|
|
|
|
top = person.get_primary_name().get_group_name()
|
|
|
|
mylist = self.model.sname_sub.get(top,[])
|
2006-08-24 10:08:06 +05:30
|
|
|
self.model.calculate_data(data_filter, skip=set(handle_list))
|
2006-03-10 04:07:19 +05:30
|
|
|
if mylist:
|
|
|
|
try:
|
|
|
|
path = self.model.on_get_path(node)
|
|
|
|
self.model.row_deleted(path)
|
|
|
|
if len(mylist) == 1:
|
|
|
|
path = self.model.on_get_path(top)
|
|
|
|
self.model.row_deleted(path)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
self.model.assign_data()
|
2006-02-09 06:05:46 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
def person_updated(self,handle_list):
|
2006-05-26 02:05:04 +05:30
|
|
|
if not self.model:
|
|
|
|
return
|
|
|
|
|
2006-02-09 10:40:20 +05:30
|
|
|
self.model.clear_cache()
|
2005-08-09 10:11:20 +05:30
|
|
|
for node in handle_list:
|
2005-08-11 05:23:24 +05:30
|
|
|
person = self.dbstate.db.get_person_from_handle(node)
|
2005-08-09 10:11:20 +05:30
|
|
|
try:
|
2005-08-20 03:40:35 +05:30
|
|
|
oldpath = self.model.iter2path[node]
|
2005-08-09 10:11:20 +05:30
|
|
|
except:
|
|
|
|
return
|
2005-08-20 03:40:35 +05:30
|
|
|
pathval = self.model.on_get_path(node)
|
|
|
|
pnode = self.model.get_iter(pathval)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
# calculate the new data
|
|
|
|
|
|
|
|
if person.primary_name.group_as:
|
|
|
|
surname = person.primary_name.group_as
|
|
|
|
else:
|
2005-08-11 05:23:24 +05:30
|
|
|
base = person.primary_name.surname
|
|
|
|
surname = self.dbstate.db.get_name_group_mapping(base)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
if oldpath[0] == surname:
|
2006-06-21 03:04:53 +05:30
|
|
|
try:
|
|
|
|
self.model.build_sub_entry(surname)
|
|
|
|
except:
|
|
|
|
self.model.calculate_data()
|
2005-08-09 10:11:20 +05:30
|
|
|
else:
|
2006-03-07 09:05:46 +05:30
|
|
|
self.model.calculate_data()
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
# find the path of the person in the new data build
|
2005-08-20 03:40:35 +05:30
|
|
|
newpath = self.model.temp_iter2path[node]
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
# if paths same, just issue row changed signal
|
|
|
|
|
|
|
|
if oldpath == newpath:
|
2005-08-20 03:40:35 +05:30
|
|
|
self.model.row_changed(pathval,pnode)
|
2005-08-09 10:11:20 +05:30
|
|
|
else:
|
2006-05-09 08:59:04 +05:30
|
|
|
self.build_tree()
|
|
|
|
break
|
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
self.goto_active_person()
|
|
|
|
|
|
|
|
def get_selected_objects(self):
|
2005-08-20 03:40:35 +05:30
|
|
|
(mode,paths) = self.selection.get_selected_rows()
|
2005-08-09 10:11:20 +05:30
|
|
|
mlist = []
|
|
|
|
for path in paths:
|
2005-08-20 03:40:35 +05:30
|
|
|
node = self.model.on_get_iter(path)
|
2006-01-24 09:43:21 +05:30
|
|
|
handle = self.model.on_get_value(node, PeopleModel.COLUMN_INT_ID)
|
2006-05-01 04:56:38 +05:30
|
|
|
if handle:
|
|
|
|
mlist.append(handle)
|
2005-08-09 10:11:20 +05:30
|
|
|
return mlist
|
|
|
|
|
|
|
|
def remove_from_person_list(self,person):
|
|
|
|
"""Remove the selected person from the list. A person object is
|
|
|
|
expected, not an ID"""
|
2005-08-20 03:40:35 +05:30
|
|
|
path = self.model.on_get_path(person.get_handle())
|
2005-08-09 10:11:20 +05:30
|
|
|
(col,row) = path
|
|
|
|
if row > 0:
|
2005-08-20 03:40:35 +05:30
|
|
|
self.selection.select_path((col,row-1))
|
|
|
|
elif row == 0 and self.model.on_get_iter(path):
|
|
|
|
self.selection.select_path(path)
|
2005-08-09 10:11:20 +05:30
|
|
|
|
2005-08-12 08:05:27 +05:30
|
|
|
def button_press(self,obj,event):
|
|
|
|
if event.type == gtk.gdk._2BUTTON_PRESS and event.button == 1:
|
|
|
|
handle = self.first_selected()
|
|
|
|
person = self.dbstate.db.get_person_from_handle(handle)
|
2005-09-16 18:48:52 +05:30
|
|
|
if person:
|
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
|
2005-09-16 18:48:52 +05:30
|
|
|
return True
|
2005-08-12 08:05:27 +05:30
|
|
|
elif event.type == gtk.gdk.BUTTON_PRESS and event.button == 3:
|
|
|
|
menu = self.uistate.uimanager.get_widget('/Popup')
|
2005-09-16 18:48:52 +05:30
|
|
|
if menu:
|
|
|
|
menu.popup(None,None,None,event.button,event.time)
|
|
|
|
return True
|
2005-08-12 08:05:27 +05:30
|
|
|
return False
|
2006-05-02 09:20:46 +05:30
|
|
|
|
|
|
|
def key_goto_home_person(self):
|
|
|
|
self.home(None)
|
In .:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* src/Filters/_SearchBar.py (SearchBar.__init__): Take dbstate as
a constructor argument; (SearchBar.apply_filter): pass dbstate.
* src/PageView.py (BookMarkView.add_bookmark,
PersonNavView.jumpto, PersonNavView.fwd_clicked,
PersonNavView.back_clicked, ListView.build_widget): Pass dbstate.
* src/Navigation.py (BaseNavigation.__init__,
PersonNavigation.__init__): Take dbstate as a constructor argument;
(PersonNavigation.build_item_name): properly access dbstate.
* src/DisplayState.py (__init__): Do not take dbstate as a
constructor argument; Do not connect dbstate signal here (moved to
ViewManager);
(display_relationship,push_message,modify_statusbar): Make dbstate
an argument.
* src/plugins/Checkpoint.py (run_tool): Pass dbstate.
* src/ViewManager.py (_build_main_window): Do not pass dbstate to
uistate DisplayState constructor; connect dbstate signal handler;
pass dbstate to Navigation; (keypress): Pass dbstate;
(statusbar_key_update): Pass dbstate;
(do_load_plugins): Pass dbstate;
(ViewManager.add_bookmark): Pass dbstate.
* src/DataViews/_RelationView.py (shade_update): Pass dbstate.
* src/DataViews/_PersonView.py (build_widget,_goto,
key_goto_home_person, key_edit_selected_person): Pass dbstate.
* src/Filters/Makefile.am (pkgdata_PYTHON): Remove obsolete file.
* src/Filters/__init__.py: Remove importing obsolete module.
* src/Filters/_FilterWidget.py: Remove obsolete module.
In po:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Remove obsolete file.
svn: r7104
2006-08-01 10:01:10 +05:30
|
|
|
self.uistate.push_message(self.dbstate,
|
|
|
|
_("Go to default person"))
|
2006-05-02 09:20:46 +05:30
|
|
|
|
|
|
|
def key_edit_selected_person(self):
|
|
|
|
self.edit(None)
|
In .:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* src/Filters/_SearchBar.py (SearchBar.__init__): Take dbstate as
a constructor argument; (SearchBar.apply_filter): pass dbstate.
* src/PageView.py (BookMarkView.add_bookmark,
PersonNavView.jumpto, PersonNavView.fwd_clicked,
PersonNavView.back_clicked, ListView.build_widget): Pass dbstate.
* src/Navigation.py (BaseNavigation.__init__,
PersonNavigation.__init__): Take dbstate as a constructor argument;
(PersonNavigation.build_item_name): properly access dbstate.
* src/DisplayState.py (__init__): Do not take dbstate as a
constructor argument; Do not connect dbstate signal here (moved to
ViewManager);
(display_relationship,push_message,modify_statusbar): Make dbstate
an argument.
* src/plugins/Checkpoint.py (run_tool): Pass dbstate.
* src/ViewManager.py (_build_main_window): Do not pass dbstate to
uistate DisplayState constructor; connect dbstate signal handler;
pass dbstate to Navigation; (keypress): Pass dbstate;
(statusbar_key_update): Pass dbstate;
(do_load_plugins): Pass dbstate;
(ViewManager.add_bookmark): Pass dbstate.
* src/DataViews/_RelationView.py (shade_update): Pass dbstate.
* src/DataViews/_PersonView.py (build_widget,_goto,
key_goto_home_person, key_edit_selected_person): Pass dbstate.
* src/Filters/Makefile.am (pkgdata_PYTHON): Remove obsolete file.
* src/Filters/__init__.py: Remove importing obsolete module.
* src/Filters/_FilterWidget.py: Remove obsolete module.
In po:
2006-07-31 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Remove obsolete file.
svn: r7104
2006-08-01 10:01:10 +05:30
|
|
|
self.uistate.push_message(self.dbstate,
|
|
|
|
_("Edit selected person"))
|