2006-03-04 15:37:04 +00:00
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2001-2005 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 09:17:46 +00:00
|
|
|
# $Id$
|
2006-03-04 15:37:04 +00:00
|
|
|
|
2007-01-09 04:32:07 +00:00
|
|
|
"""
|
2008-01-24 20:38:10 +00:00
|
|
|
Package init for the DataViews package.
|
2007-01-09 04:32:07 +00:00
|
|
|
"""
|
2008-12-08 11:04:54 +00:00
|
|
|
|
2008-01-06 22:57:34 +00:00
|
|
|
from GrampletView import GrampletView, register, Gramplet
|
2007-12-27 15:24:30 +00:00
|
|
|
from PersonView import PersonView
|
|
|
|
from RelationView import RelationshipView
|
|
|
|
from FamilyList import FamilyListView
|
|
|
|
from PedigreeView import PedigreeView
|
|
|
|
from EventView import EventView
|
|
|
|
from SourceView import SourceView
|
|
|
|
from PlaceView import PlaceView
|
|
|
|
from MediaView import MediaView
|
|
|
|
from RepositoryView import RepositoryView
|
|
|
|
from NoteView import NoteView
|
2006-03-04 15:37:04 +00:00
|
|
|
|
2008-12-07 22:48:30 +00:00
|
|
|
geopresent = True
|
|
|
|
try:
|
2008-12-09 22:50:21 +00:00
|
|
|
from GeoView import HtmlView, GeoView
|
2008-12-07 22:48:30 +00:00
|
|
|
except:
|
|
|
|
geopresent = False
|
|
|
|
|
2007-12-24 14:56:15 +00:00
|
|
|
try:
|
2009-10-08 01:12:51 +00:00
|
|
|
import config
|
2009-10-08 04:47:04 +00:00
|
|
|
dv = config.get('interface.data-views') # list of strings
|
2008-12-09 22:50:21 +00:00
|
|
|
#remove GeoView so we do not try to eval it if import fails
|
2009-10-08 04:47:04 +00:00
|
|
|
if not geopresent and dv.count('GeoView') > 0:
|
|
|
|
dv.remove('GeoView')
|
|
|
|
DATA_VIEWS = [eval(view) for view in dv]
|
2008-12-09 22:50:21 +00:00
|
|
|
#add or remove GeoView if config says so
|
2009-10-08 01:12:51 +00:00
|
|
|
if geopresent and config.get('preferences.geoview') and \
|
2008-12-07 22:48:30 +00:00
|
|
|
not GeoView in DATA_VIEWS:
|
|
|
|
DATA_VIEWS.append(GeoView)
|
2009-10-08 04:47:04 +00:00
|
|
|
config.get('interface.data-views').append('GeoView')
|
2009-10-08 01:12:51 +00:00
|
|
|
elif geopresent and not config.get('preferences.geoview') and \
|
2008-12-07 22:48:30 +00:00
|
|
|
GeoView in DATA_VIEWS:
|
|
|
|
DATA_VIEWS.remove(GeoView)
|
2009-10-08 04:47:04 +00:00
|
|
|
config.get('interface.data-views').remove('GeoView')
|
2008-12-07 22:48:30 +00:00
|
|
|
except AttributeError:
|
2007-12-24 14:56:15 +00:00
|
|
|
# Fallback if bad config line, or if no Config system
|
|
|
|
DATA_VIEWS = [
|
2008-01-06 22:57:34 +00:00
|
|
|
GrampletView,
|
2006-06-18 03:05:33 +00:00
|
|
|
PersonView,
|
|
|
|
RelationshipView,
|
|
|
|
FamilyListView,
|
|
|
|
PedigreeView,
|
|
|
|
EventView,
|
|
|
|
SourceView,
|
|
|
|
PlaceView,
|
|
|
|
MediaView,
|
2007-02-13 06:01:16 +00:00
|
|
|
RepositoryView,
|
|
|
|
NoteView,
|
2006-06-18 03:05:33 +00:00
|
|
|
]
|
2008-12-07 22:48:30 +00:00
|
|
|
if geopresent:
|
2009-02-09 23:37:40 +00:00
|
|
|
DATA_VIEWS.append(GeoView)
|
2007-12-24 14:56:15 +00:00
|
|
|
|
|
|
|
def get_views():
|
|
|
|
"""
|
2008-02-24 13:55:55 +00:00
|
|
|
Return a list of PageView instances, in order
|
2007-12-24 14:56:15 +00:00
|
|
|
"""
|
|
|
|
return DATA_VIEWS
|