2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2003-09-08 17:44:34 +05:30
|
|
|
# Copyright (C) 2000-2003 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-12-06 05:44:25 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GNOME modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
2003-12-06 05:44:25 +05:30
|
|
|
import gnome
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import Utils
|
|
|
|
import const
|
|
|
|
import GrampsCfg
|
|
|
|
import VersionControl
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# DbPrompter
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DbPrompter:
|
|
|
|
"""Make sure a database is opened"""
|
|
|
|
|
2003-09-08 09:42:43 +05:30
|
|
|
def __init__(self,db,want_new,parent=None):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.db = db
|
|
|
|
self.want_new = want_new
|
2003-09-08 09:42:43 +05:30
|
|
|
self.parent = parent
|
2002-10-20 19:55:16 +05:30
|
|
|
self.show()
|
|
|
|
|
|
|
|
def show(self):
|
2003-08-17 07:44:33 +05:30
|
|
|
opendb = gtk.glade.XML(const.gladeFile, "opendb","gramps")
|
2003-03-06 11:42:51 +05:30
|
|
|
top = opendb.get_widget('opendb')
|
2003-09-08 17:44:34 +05:30
|
|
|
if self.parent:
|
|
|
|
top.set_transient_for(self.parent)
|
2003-03-06 11:42:51 +05:30
|
|
|
title = opendb.get_widget('title')
|
2003-03-05 11:31:31 +05:30
|
|
|
|
2003-03-06 11:42:51 +05:30
|
|
|
Utils.set_titles(top,title,_('Open a database'))
|
2003-03-05 11:31:31 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
opendb.signal_autoconnect({
|
|
|
|
"on_open_ok_clicked" : self.open_ok_clicked,
|
2003-12-06 05:44:25 +05:30
|
|
|
"on_open_help_clicked" : self.open_help_clicked,
|
2002-10-20 19:55:16 +05:30
|
|
|
"on_open_cancel_clicked" : self.open_cancel_clicked,
|
|
|
|
"on_opendb_delete_event": self.open_delete_event,
|
|
|
|
})
|
2003-03-06 11:42:51 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.new = opendb.get_widget("new")
|
|
|
|
if self.want_new:
|
|
|
|
self.new.set_active(1)
|
|
|
|
|
|
|
|
def open_ok_clicked(self,obj):
|
|
|
|
if self.new.get_active():
|
2003-11-02 22:11:29 +05:30
|
|
|
self.db.clear_database()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.save_as_activate()
|
|
|
|
else:
|
|
|
|
self.open_activate()
|
|
|
|
Utils.destroy_passed_object(obj)
|
|
|
|
|
2003-12-06 05:44:25 +05:30
|
|
|
def open_help_clicked(self,obj):
|
|
|
|
"""Display the GRAMPS manual"""
|
|
|
|
gnome.help_display('gramps-manual','choose-db-start')
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def save_as_activate(self):
|
2003-08-17 07:44:33 +05:30
|
|
|
wFs = gtk.glade.XML (const.gladeFile, "fileselection","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
wFs.signal_autoconnect({
|
|
|
|
"on_ok_button1_clicked": self.save_ok_button_clicked,
|
|
|
|
"destroy_passed_object": self.cancel_button_clicked,
|
|
|
|
})
|
2003-08-31 08:56:13 +05:30
|
|
|
if self.new:
|
|
|
|
wFs.get_widget('fileselection').set_title('%s - GRAMPS' % _('Create database'))
|
|
|
|
else:
|
|
|
|
wFs.get_widget('fileselection').set_title('%s - GRAMPS' % _('Save database'))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def save_ok_button_clicked(self,obj):
|
2003-03-21 09:55:55 +05:30
|
|
|
filename = obj.get_filename().encode('iso8859-1')
|
2002-10-20 19:55:16 +05:30
|
|
|
if filename:
|
|
|
|
Utils.destroy_passed_object(obj)
|
|
|
|
if GrampsCfg.usevc and GrampsCfg.vc_comment:
|
|
|
|
self.db.display_comment_box(filename)
|
|
|
|
else:
|
|
|
|
self.db.save_file(filename,_("No Comment Provided"))
|
|
|
|
|
|
|
|
def open_activate(self):
|
2003-08-17 07:44:33 +05:30
|
|
|
wFs = gtk.glade.XML(const.revisionFile, "dbopen","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
wFs.signal_autoconnect({
|
|
|
|
"on_ok_button1_clicked": self.ok_button_clicked,
|
|
|
|
"destroy_passed_object": self.cancel_button_clicked,
|
|
|
|
})
|
|
|
|
|
|
|
|
self.fileSelector = wFs.get_widget("dbopen")
|
2003-03-06 11:42:51 +05:30
|
|
|
Utils.set_titles(self.fileSelector,wFs.get_widget('title'),
|
|
|
|
_('Open a database'))
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.dbname = wFs.get_widget("dbname")
|
|
|
|
self.getoldrev = wFs.get_widget("getoldrev")
|
2003-08-13 09:58:07 +05:30
|
|
|
if GrampsCfg.db_dir:
|
|
|
|
self.dbname.set_default_path(GrampsCfg.db_dir)
|
2003-08-31 08:56:13 +05:30
|
|
|
|
|
|
|
if GrampsCfg.lastfile:
|
|
|
|
self.dbname.set_filename(GrampsCfg.lastfile)
|
|
|
|
self.dbname.gtk_entry().set_position(len(GrampsCfg.lastfile))
|
|
|
|
elif GrampsCfg.db_dir:
|
2003-08-13 09:58:07 +05:30
|
|
|
self.dbname.set_filename(GrampsCfg.db_dir)
|
2003-08-13 10:02:15 +05:30
|
|
|
self.dbname.gtk_entry().set_position(len(GrampsCfg.db_dir))
|
2003-08-31 08:56:13 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.getoldrev.set_sensitive(GrampsCfg.usevc)
|
|
|
|
|
|
|
|
def cancel_button_clicked(self,obj):
|
|
|
|
Utils.destroy_passed_object(obj)
|
|
|
|
self.show()
|
|
|
|
|
|
|
|
def ok_button_clicked(self,obj):
|
2003-03-28 07:58:04 +05:30
|
|
|
filename = self.dbname.get_full_path(0)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if not filename:
|
|
|
|
return
|
|
|
|
|
|
|
|
Utils.destroy_passed_object(obj)
|
|
|
|
|
|
|
|
if self.getoldrev.get_active():
|
|
|
|
vc = VersionControl.RcsVersionControl(filename)
|
|
|
|
VersionControl.RevisionSelect(self.db.database,filename,vc,
|
|
|
|
self.db.load_revision,self.show)
|
|
|
|
else:
|
|
|
|
self.db.read_file(filename)
|
|
|
|
|
|
|
|
def open_delete_event(self,obj,event):
|
|
|
|
gtk.mainquit()
|
|
|
|
|
|
|
|
def open_cancel_clicked(self,obj):
|
|
|
|
gtk.mainquit()
|
|
|
|
|