2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-05-03 09:17:29 +05:30
|
|
|
# Copyright (C) 2000-2004 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
|
2004-05-08 10:18:59 +05:30
|
|
|
import gobject
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import Utils
|
|
|
|
import const
|
|
|
|
import GrampsCfg
|
2004-05-08 10:18:59 +05:30
|
|
|
import gnome
|
|
|
|
import QuestionDialog
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2004-05-10 08:43:43 +05:30
|
|
|
import os
|
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
|
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')
|
2004-05-08 10:18:59 +05:30
|
|
|
if parent:
|
|
|
|
top.set_transient_for(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'))
|
2004-05-05 09:24:02 +05:30
|
|
|
|
2004-05-08 10:18:59 +05:30
|
|
|
new = opendb.get_widget("new")
|
|
|
|
new.set_active(want_new)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-08 10:18:59 +05:30
|
|
|
while 1:
|
|
|
|
response = top.run()
|
|
|
|
if response == gtk.RESPONSE_OK:
|
|
|
|
if self.chooser(new.get_active()):
|
|
|
|
break
|
|
|
|
elif response == gtk.RESPONSE_CANCEL:
|
|
|
|
break
|
|
|
|
elif response == gtk.RESPONSE_HELP:
|
|
|
|
try:
|
|
|
|
gnome.help_display('gramps-manual','choose-db-start')
|
|
|
|
except gobject.GError,msg:
|
|
|
|
QuestionDialog.ErrorDialog(_('Help not available'),msg)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-08 10:18:59 +05:30
|
|
|
top.destroy()
|
|
|
|
if response == gtk.RESPONSE_CANCEL:
|
|
|
|
gtk.main_quit()
|
2003-12-06 05:44:25 +05:30
|
|
|
|
2004-05-08 10:18:59 +05:30
|
|
|
def chooser(self,save):
|
|
|
|
if save:
|
|
|
|
choose = gtk.FileChooserDialog('Create GRAMPS database',
|
|
|
|
None,
|
|
|
|
gtk.FILE_CHOOSER_ACTION_SAVE,
|
|
|
|
(gtk.STOCK_CANCEL,
|
|
|
|
gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN,
|
|
|
|
gtk.RESPONSE_OK))
|
|
|
|
self.db.clear_database()
|
|
|
|
else:
|
|
|
|
choose = gtk.FileChooserDialog('Open GRAMPS database',
|
|
|
|
None,
|
|
|
|
gtk.FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
(gtk.STOCK_CANCEL,
|
|
|
|
gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN,
|
|
|
|
gtk.RESPONSE_OK))
|
2004-05-24 10:02:19 +05:30
|
|
|
choose.set_local_only(gtk.FALSE)
|
2004-05-03 09:17:29 +05:30
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name(_('GRAMPS databases'))
|
|
|
|
filter.add_pattern('*.grdb')
|
|
|
|
choose.add_filter(filter)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-03 09:17:29 +05:30
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name(_('All files'))
|
|
|
|
filter.add_pattern('*')
|
|
|
|
choose.add_filter(filter)
|
|
|
|
|
2004-05-08 10:18:59 +05:30
|
|
|
if save and GrampsCfg.lastfile:
|
2004-05-03 09:17:29 +05:30
|
|
|
choose.set_filename(GrampsCfg.lastfile)
|
2004-05-08 10:18:59 +05:30
|
|
|
|
2004-05-03 09:17:29 +05:30
|
|
|
response = choose.run()
|
|
|
|
if response == gtk.RESPONSE_OK:
|
|
|
|
filename = choose.get_filename()
|
2004-05-10 08:43:43 +05:30
|
|
|
if save and os.path.splitext(filename)[1] != ".grdb":
|
|
|
|
filename = filename + ".grdb"
|
2004-05-08 10:18:59 +05:30
|
|
|
choose.destroy()
|
2004-06-20 08:36:21 +05:30
|
|
|
self.db.read_file(filename)
|
2004-05-08 10:18:59 +05:30
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
choose.destroy()
|
|
|
|
return 0
|
|
|
|
|