2004-08-29 01:19:34 +05:30
|
|
|
#
|
2002-10-20 19:55:16 +05:30
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-08-09 10:11:20 +05:30
|
|
|
# Copyright (C) 2001-2005 Donald N. Allingham
|
2002-10-20 19:55:16 +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
|
|
|
|
#
|
|
|
|
|
2003-10-13 07:25:56 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk
|
2005-08-09 10:11:20 +05:30
|
|
|
import ViewManager
|
|
|
|
import PersonView
|
|
|
|
import ArgHandler
|
2002-10-20 19:55:16 +05:30
|
|
|
import DisplayTrace
|
2005-01-06 22:58:31 +05:30
|
|
|
import GrampsKeys
|
2002-10-20 19:55:16 +05:30
|
|
|
import GrampsCfg
|
2005-08-09 10:11:20 +05:30
|
|
|
import const
|
2005-03-30 07:15:14 +05:30
|
|
|
import Errors
|
2005-08-09 10:11:20 +05:30
|
|
|
import PluginMgr
|
2004-04-10 09:08:48 +05:30
|
|
|
|
2005-03-18 00:58:00 +05:30
|
|
|
from GrampsMime import mime_type_is_defined
|
2005-08-09 10:11:20 +05:30
|
|
|
from QuestionDialog import ErrorDialog
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
import gnome
|
2003-01-10 19:22:32 +05:30
|
|
|
|
2003-08-26 09:15:41 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
iconpaths = ["/usr/share/gramps","~/devel/srcx"]
|
2005-04-04 06:41:50 +05:30
|
|
|
|
2005-08-09 10:11:20 +05:30
|
|
|
def register_stock_icons ():
|
|
|
|
import os
|
|
|
|
items = {
|
|
|
|
'people48.png': ('gramps-person', 'Person', gtk.gdk.CONTROL_MASK, 0, ''),
|
|
|
|
'family48.png': ('gramps-family', 'Family', gtk.gdk.CONTROL_MASK, 0, ''),
|
|
|
|
'repos.png' : ('gramps-repository', 'Repositories', gtk.gdk.CONTROL_MASK, 0, ''),
|
|
|
|
'sources.png' : ('gramps-source', 'Sources', gtk.gdk.CONTROL_MASK, 0, ''),
|
|
|
|
'events.png' : ('gramps-event', 'Events', gtk.gdk.CONTROL_MASK, 0, ''),
|
|
|
|
'place.png' : ('gramps-place', 'Places', gtk.gdk.CONTROL_MASK, 0, ''),
|
2005-04-04 06:41:50 +05:30
|
|
|
}
|
2005-08-09 10:11:20 +05:30
|
|
|
|
|
|
|
# Register our stock items
|
|
|
|
gtk.stock_add (items.values())
|
|
|
|
|
|
|
|
# Add our custom icon factory to the list of defaults
|
|
|
|
factory = gtk.IconFactory ()
|
|
|
|
factory.add_default ()
|
|
|
|
|
|
|
|
|
|
|
|
keys = items.keys()
|
|
|
|
for key in keys:
|
|
|
|
|
|
|
|
for dirname in iconpaths:
|
|
|
|
icon_file = os.path.expanduser(os.path.join(dirname,key))
|
|
|
|
if os.path.isfile(icon_file):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
icon_file = os.path.join(iconpaths[0],'gramps.png')
|
|
|
|
|
|
|
|
pixbuf = gtk.gdk.pixbuf_new_from_file (icon_file)
|
|
|
|
pixbuf = pixbuf.add_alpha(True, chr(0xff), chr(0xff), chr(0xff))
|
|
|
|
|
|
|
|
# Register icon to accompany stock item
|
|
|
|
if pixbuf:
|
|
|
|
icon_set = gtk.IconSet (pixbuf)
|
|
|
|
factory.add (items[key][0], icon_set)
|
|
|
|
else:
|
|
|
|
print 'failed to load GTK logo for toolbar'
|
|
|
|
|
|
|
|
# class EventView(ListView):
|
|
|
|
|
|
|
|
# def __init__(self):
|
|
|
|
# PageView.__init__(self,'Events')
|
|
|
|
|
|
|
|
# def define_actions(self):
|
|
|
|
# self.add_action('Add', gtk.STOCK_ADD, '_Add', callback=self.add),
|
|
|
|
# self.add_action('Edit', gtk.STOCK_EDIT, "_Edit")
|
|
|
|
# self.add_action('Remove',gtk.STOCK_REMOVE,"_Remove")
|
|
|
|
|
|
|
|
# def get_stock(self):
|
|
|
|
# return 'gramps-event'
|
|
|
|
|
|
|
|
# def ui_definition(self):
|
|
|
|
# return '''<ui>
|
|
|
|
# <menubar name="MenuBar">
|
|
|
|
# <menu action="EditMenu">
|
|
|
|
# <placeholder name="CommonEdit">
|
|
|
|
# <menuitem action="Add"/>
|
|
|
|
# <menuitem action="Edit"/>
|
|
|
|
# <menuitem action="Remove"/>
|
|
|
|
# </placeholder>
|
|
|
|
# </menu>
|
|
|
|
# </menubar>
|
|
|
|
# <toolbar name="ToolBar">
|
|
|
|
# <placeholder name="CommonEdit">
|
|
|
|
# <toolitem action="Add"/>
|
|
|
|
# <toolitem action="Edit"/>
|
|
|
|
# <toolitem action="Remove"/>
|
|
|
|
# </placeholder>
|
|
|
|
# </toolbar>
|
|
|
|
# </ui>'''
|
|
|
|
|
|
|
|
# def add(self,obj):
|
|
|
|
# print "Event Add"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Gramps:
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-17 09:44:13 +05:30
|
|
|
def __init__(self,args):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-06-23 10:24:33 +05:30
|
|
|
try:
|
|
|
|
self.program = gnome.program_init('gramps',const.version,
|
|
|
|
gnome.libgnome_module_info_get(),
|
|
|
|
args, const.popt_table)
|
|
|
|
except:
|
|
|
|
self.program = gnome.program_init('gramps',const.version)
|
2003-03-31 07:03:40 +05:30
|
|
|
self.program.set_property('app-libdir','%s/lib' % const.prefixdir)
|
|
|
|
self.program.set_property('app-datadir','%s/share/gramps' % const.prefixdir)
|
|
|
|
self.program.set_property('app-sysconfdir','%s/etc' % const.prefixdir)
|
|
|
|
self.program.set_property('app-prefix', const.prefixdir)
|
|
|
|
|
2005-03-18 00:58:00 +05:30
|
|
|
try:
|
|
|
|
GrampsCfg.loadConfig()
|
2005-05-11 19:34:47 +05:30
|
|
|
self.welcome()
|
2005-05-07 08:11:08 +05:30
|
|
|
except OSError, msg:
|
|
|
|
ErrorDialog(_("Configuration error"),str(msg))
|
|
|
|
return
|
2005-03-30 07:15:14 +05:30
|
|
|
except Errors.GConfSchemaError, val:
|
2005-03-18 00:58:00 +05:30
|
|
|
ErrorDialog(_("Configuration error"),
|
2005-04-28 00:00:57 +05:30
|
|
|
str(val) + _("\n\nPossibly the installation of GRAMPS was incomplete."
|
2005-03-18 00:58:00 +05:30
|
|
|
" Make sure the GConf schema of GRAMPS is properly installed."))
|
|
|
|
gtk.main_quit()
|
|
|
|
return
|
2005-05-07 08:11:08 +05:30
|
|
|
except:
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
return
|
2005-03-18 00:58:00 +05:30
|
|
|
|
|
|
|
if not mime_type_is_defined(const.app_gramps):
|
|
|
|
ErrorDialog(_("Configuration error"),
|
|
|
|
_("A definition for the MIME-type %s could not be found"
|
|
|
|
"\n\nPossibly the installation of GRAMPS was incomplete."
|
|
|
|
" Make sure the MIME-types of GRAMPS are properly installed.") % const.app_gramps)
|
|
|
|
gtk.main_quit()
|
|
|
|
return
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-06-21 10:40:27 +05:30
|
|
|
ArgHandler.ArgHandler(self,args)
|
|
|
|
|
2004-06-22 04:52:55 +05:30
|
|
|
# Don't show main window until ArgHandler is done.
|
2004-06-22 04:54:51 +05:30
|
|
|
# This prevents a window from annoyingly popping up when
|
|
|
|
# the command line args are sufficient to operate without it.
|
2005-01-06 22:58:31 +05:30
|
|
|
GrampsKeys.client.notify_add("/apps/gramps/researcher",
|
2004-08-07 10:46:57 +05:30
|
|
|
self.researcher_key_update)
|
2005-01-06 22:58:31 +05:30
|
|
|
GrampsKeys.client.notify_add("/apps/gramps/interface/statusbar",
|
2004-08-07 10:46:57 +05:30
|
|
|
self.statusbar_key_update)
|
2005-08-09 10:11:20 +05:30
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/interface/toolbar",
|
|
|
|
## self.toolbar_key_update)
|
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/interface/toolbar-on",
|
|
|
|
# self.toolbar_on_key_update)
|
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/interface/filter",
|
|
|
|
# self.filter_key_update)
|
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/interface/view",
|
|
|
|
# self.sidebar_key_update)
|
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/interface/familyview",
|
|
|
|
# self.familyview_key_update)
|
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/preferences/name-format",
|
|
|
|
# self.familyview_key_update)
|
|
|
|
# GrampsKeys.client.notify_add("/apps/gramps/preferences/date-format",
|
|
|
|
# self.date_format_key_update)
|
|
|
|
|
|
|
|
register_stock_icons()
|
|
|
|
a = ViewManager.ViewManager()
|
|
|
|
a.register_view(PersonView.PersonView)
|
|
|
|
a.init_interface()
|
2004-08-29 11:15:40 +05:30
|
|
|
|
2005-01-06 22:58:31 +05:30
|
|
|
if GrampsKeys.get_usetips():
|
2005-01-26 02:55:15 +05:30
|
|
|
TipOfDay.TipOfDay(self)
|
2004-05-18 12:30:34 +05:30
|
|
|
|
2005-05-11 19:34:47 +05:30
|
|
|
def welcome(self):
|
|
|
|
if GrampsKeys.get_welcome() >= 200:
|
2005-05-07 08:11:08 +05:30
|
|
|
return
|
2005-05-11 19:34:47 +05:30
|
|
|
|
|
|
|
glade = gtk.glade.XML(const.gladeFile,'scrollmsg')
|
|
|
|
top = glade.get_widget('scrollmsg')
|
|
|
|
msg = glade.get_widget('msg')
|
|
|
|
msg.get_buffer().set_text(
|
|
|
|
_("Welcome to the 2.0.x series of GRAMPS!\n"
|
|
|
|
"\n"
|
|
|
|
"This version drastically differs from the 1.0.x branch\n"
|
|
|
|
"in a few ways. Please read carefully, as this may affect\n"
|
|
|
|
"the way you are using the program.\n"
|
|
|
|
"\n"
|
|
|
|
"1. This version works with the Berkeley database backend.\n"
|
|
|
|
" Because of this, changes are written to disk immediately.\n"
|
|
|
|
" There is NO Save function anymore!\n"
|
|
|
|
"2. The Media object files are not managed by GRAMPS.\n"
|
|
|
|
" There is no concept of local objects, all objects\n"
|
|
|
|
" are external. You are in charge of keeping track of\n"
|
|
|
|
" your files. If you delete the image file from disk,\n"
|
|
|
|
" it will be lost!\n"
|
|
|
|
"3. The version control provided by previous GRAMPS\n"
|
|
|
|
" versions has been removed. You may set up the versioning\n"
|
|
|
|
" system on your own if you'd like, but it will have to be\n"
|
|
|
|
" outside of GRAMPS.\n"
|
|
|
|
"4. It is possible to directly open GRAMPS XML databases\n"
|
|
|
|
" (used by previous versions) as well as GEDCOM files.\n"
|
|
|
|
" However, any changes will be written to the disk when\n"
|
|
|
|
" you quit GRAMPS. In case of GEDCOM files, this may lead\n"
|
|
|
|
" to a data loss because some GEDCOM files contain data\n"
|
|
|
|
" that does not comply with the GEDCOM standard and cannot\n"
|
|
|
|
" be parsed by GRAMPS. If unsure, set up an empty grdb\n"
|
|
|
|
" database (new GRAMPS format) and import GEDCOM into it.\n"
|
|
|
|
" This will keep the original GEDCOM untouched.\n"
|
|
|
|
"\n"
|
|
|
|
"Enjoy!\n"
|
|
|
|
"The GRAMPS project\n"))
|
|
|
|
top.run()
|
|
|
|
top.destroy()
|
|
|
|
|
|
|
|
GrampsKeys.save_welcome(200)
|
2005-05-07 08:11:08 +05:30
|
|
|
GrampsKeys.sync()
|
|
|
|
|
2004-07-20 07:57:55 +05:30
|
|
|
def researcher_key_update(self,client,cnxn_id,entry,data):
|
2005-08-09 10:11:20 +05:30
|
|
|
pass
|
|
|
|
# self.db.set_person_id_prefix(GrampsKeys.get_person_id_prefix())
|
|
|
|
# self.db.set_family_id_prefix(GrampsKeys.get_family_id_prefix())
|
|
|
|
# self.db.set_source_id_prefix(GrampsKeys.get_source_id_prefix())
|
|
|
|
# self.db.set_object_id_prefix(GrampsKeys.get_object_id_prefix())
|
|
|
|
# self.db.set_place_id_prefix(GrampsKeys.get_place_id_prefix())
|
|
|
|
# self.db.set_event_id_prefix(GrampsKeys.get_event_id_prefix())
|
2004-07-15 08:24:04 +05:30
|
|
|
|
2004-07-20 07:57:55 +05:30
|
|
|
def statusbar_key_update(self,client,cnxn_id,entry,data):
|
2003-10-16 22:13:07 +05:30
|
|
|
self.modify_statusbar()
|
2004-07-20 07:57:55 +05:30
|
|
|
|
|
|
|
def toolbar_key_update(self,client,cnxn_id,entry,data):
|
2005-01-09 04:05:04 +05:30
|
|
|
the_style = GrampsKeys.get_toolbar()
|
|
|
|
if the_style == -1:
|
|
|
|
self.toolbar.unset_style()
|
|
|
|
else:
|
|
|
|
self.toolbar.set_style(the_style)
|
2004-07-20 07:57:55 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2002-12-14 10:37:09 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-04-10 09:08:48 +05:30
|
|
|
|