2007-12-24 20:26:15 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2007 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
2008-01-22 14:47:46 +05:30
|
|
|
# $Id$
|
2007-12-24 20:26:15 +05:30
|
|
|
|
|
|
|
"""
|
2008-01-25 02:08:10 +05:30
|
|
|
GrampletView interface.
|
2007-12-24 20:26:15 +05:30
|
|
|
"""
|
|
|
|
|
2008-02-19 01:37:09 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2009-02-09 09:36:33 +05:30
|
|
|
# Python modules
|
2008-02-19 01:37:09 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-12-24 20:26:15 +05:30
|
|
|
import gtk
|
2007-12-25 10:04:42 +05:30
|
|
|
|
2009-02-09 09:36:33 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2009-10-08 02:21:12 +05:30
|
|
|
from gui.views.pageview import PageView
|
2010-02-07 10:14:33 +05:30
|
|
|
from gen.ggettext import gettext as _
|
|
|
|
from gui.widgets.grampletpane import GrampletPane
|
2010-02-07 09:34:48 +05:30
|
|
|
|
|
|
|
class GrampletView(PageView):
|
|
|
|
"""
|
|
|
|
GrampletView interface
|
|
|
|
"""
|
|
|
|
|
2010-12-28 22:34:41 +05:30
|
|
|
def __init__(self, pdata, dbstate, uistate):
|
2010-02-07 09:34:48 +05:30
|
|
|
"""
|
|
|
|
Create a GrampletView, with the current dbstate and uistate
|
|
|
|
"""
|
2010-12-28 22:34:41 +05:30
|
|
|
PageView.__init__(self, _('Gramplets'), pdata, dbstate, uistate)
|
|
|
|
self.ui_def = '''<ui>
|
|
|
|
<popup name="GrampletPopup">
|
|
|
|
<menuitem action="AddGramplet"/>
|
|
|
|
<menuitem action="RestoreGramplet"/>
|
|
|
|
</popup>
|
|
|
|
</ui>'''
|
|
|
|
|
|
|
|
def build_interface(self):
|
|
|
|
"""
|
|
|
|
Builds the container widget for the interface.
|
|
|
|
Returns a gtk container widget.
|
|
|
|
"""
|
|
|
|
top = self.build_widget()
|
|
|
|
top.show_all()
|
|
|
|
return top
|
2010-02-07 09:34:48 +05:30
|
|
|
|
|
|
|
def build_widget(self):
|
|
|
|
"""
|
|
|
|
Builds the container widget for the interface. Must be overridden by the
|
|
|
|
the base class. Returns a gtk container widget.
|
|
|
|
"""
|
|
|
|
# load the user's gramplets and set columns, etc
|
2010-12-28 22:34:41 +05:30
|
|
|
self.widget = GrampletPane("Gramplets_grampletview_gramplets", self,
|
2010-12-16 01:10:27 +05:30
|
|
|
self.dbstate, self.uistate)
|
2010-12-28 22:34:41 +05:30
|
|
|
return self.widget
|
2010-02-07 09:34:48 +05:30
|
|
|
|
|
|
|
def get_stock(self):
|
|
|
|
"""
|
|
|
|
Return image associated with the view, which is used for the
|
|
|
|
icon for the button.
|
|
|
|
"""
|
|
|
|
return 'gramps-gramplet'
|
|
|
|
|
|
|
|
def get_viewtype_stock(self):
|
|
|
|
"""Type of view in category
|
|
|
|
"""
|
|
|
|
return 'gramps-gramplet'
|
|
|
|
|
|
|
|
def set_inactive(self):
|
|
|
|
self.active = False
|
|
|
|
self.widget.set_inactive()
|
|
|
|
|
|
|
|
def set_active(self):
|
|
|
|
self.active = True
|
|
|
|
self.widget.set_active()
|
|
|
|
|
|
|
|
def on_delete(self):
|
|
|
|
self.widget.on_delete()
|
2010-12-16 01:10:27 +05:30
|
|
|
self._config.save()
|
2010-02-11 00:49:32 +05:30
|
|
|
|
|
|
|
def can_configure(self):
|
|
|
|
"""
|
|
|
|
See :class:`~gui.views.pageview.PageView
|
|
|
|
:return: bool
|
|
|
|
"""
|
|
|
|
return self.widget.can_configure()
|
|
|
|
|
|
|
|
def _get_configure_page_funcs(self):
|
|
|
|
"""
|
|
|
|
Return a list of functions that create gtk elements to use in the
|
|
|
|
notebook pages of the Configure dialog
|
|
|
|
|
|
|
|
:return: list of functions
|
|
|
|
"""
|
|
|
|
return self.widget._get_configure_page_funcs()
|