2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-03-01 01:24:35 +05:30
|
|
|
# Copyright (C) 2000-2006 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
|
|
|
|
#
|
|
|
|
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
# $Id$
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GNOME/GTK+ modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
from gtk.gdk import pixbuf_new_from_file
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-02-24 10:21:57 +05:30
|
|
|
import const
|
2006-03-03 05:40:52 +05:30
|
|
|
import Config
|
2009-05-15 01:45:59 +05:30
|
|
|
from glade import Glade
|
2009-05-06 20:14:22 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
try:
|
2007-09-08 11:24:02 +05:30
|
|
|
ICON = pixbuf_new_from_file(const.ICON)
|
2005-12-06 12:08:09 +05:30
|
|
|
except:
|
2006-05-02 02:41:26 +05:30
|
|
|
ICON = None
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class SaveDialog(object):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2, task1, task2, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='savedialog')
|
2009-05-06 20:14:22 +05:30
|
|
|
|
2009-05-15 01:45:59 +05:30
|
|
|
self.top = self.xml.toplevel
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
self.top.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.top.set_title("%s - GRAMPS" % msg1)
|
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
self.dontask = self.xml.get_object('dontask')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.task1 = task1
|
2003-02-24 10:21:57 +05:30
|
|
|
self.task2 = task2
|
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label1 = self.xml.get_object('sd_label1')
|
2003-02-24 10:21:57 +05:30
|
|
|
label1.set_text('<span weight="bold" size="larger">%s</span>' % msg1)
|
2005-02-24 05:55:34 +05:30
|
|
|
label1.set_use_markup(True)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label2 = self.xml.get_object('sd_label2')
|
2003-02-24 10:21:57 +05:30
|
|
|
label2.set_text(msg2)
|
2005-02-24 05:55:34 +05:30
|
|
|
label2.set_use_markup(True)
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
if parent:
|
|
|
|
self.top.set_transient_for(parent)
|
2008-02-29 04:02:40 +05:30
|
|
|
self.top.show()
|
2003-02-24 10:21:57 +05:30
|
|
|
response = self.top.run()
|
|
|
|
if response == gtk.RESPONSE_NO:
|
2002-10-20 19:55:16 +05:30
|
|
|
self.task1()
|
2003-02-24 10:21:57 +05:30
|
|
|
elif response == gtk.RESPONSE_YES:
|
|
|
|
self.task2()
|
2004-11-11 09:58:40 +05:30
|
|
|
|
2009-08-14 12:37:10 +05:30
|
|
|
Config.set(Config.DONT_ASK, self.dontask.get_active())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.top.destroy()
|
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class QuestionDialog(object):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2, label, task, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='questiondialog')
|
2009-05-06 20:14:22 +05:30
|
|
|
|
2009-05-15 01:45:59 +05:30
|
|
|
self.top = self.xml.toplevel
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
self.top.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.top.set_title("%s - GRAMPS" % msg1)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label1 = self.xml.get_object('qd_label1')
|
2003-02-24 10:21:57 +05:30
|
|
|
label1.set_text('<span weight="bold" size="larger">%s</span>' % msg1)
|
2005-02-24 05:55:34 +05:30
|
|
|
label1.set_use_markup(True)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label2 = self.xml.get_object('qd_label2')
|
2003-02-24 10:21:57 +05:30
|
|
|
label2.set_text(msg2)
|
2005-02-24 05:55:34 +05:30
|
|
|
label2.set_use_markup(True)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
self.xml.get_object('okbutton').set_label(label)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
if parent:
|
|
|
|
self.top.set_transient_for(parent)
|
2008-02-29 04:02:40 +05:30
|
|
|
self.top.show()
|
2003-02-24 10:21:57 +05:30
|
|
|
response = self.top.run()
|
2007-01-21 05:46:08 +05:30
|
|
|
self.top.destroy()
|
2003-02-24 10:21:57 +05:30
|
|
|
if response == gtk.RESPONSE_ACCEPT:
|
|
|
|
task()
|
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class QuestionDialog2(object):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2, label_msg1, label_msg2, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='questiondialog')
|
2009-05-06 20:14:22 +05:30
|
|
|
|
2009-05-15 01:45:59 +05:30
|
|
|
self.top = self.xml.toplevel
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
self.top.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.top.set_title("%s - GRAMPS" % msg1)
|
2004-10-01 00:02:56 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label1 = self.xml.get_object('qd_label1')
|
2004-10-01 00:02:56 +05:30
|
|
|
label1.set_text('<span weight="bold" size="larger">%s</span>' % msg1)
|
2005-02-24 05:55:34 +05:30
|
|
|
label1.set_use_markup(True)
|
2004-10-01 00:02:56 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label2 = self.xml.get_object('qd_label2')
|
2004-10-01 00:02:56 +05:30
|
|
|
label2.set_text(msg2)
|
2005-02-24 05:55:34 +05:30
|
|
|
label2.set_use_markup(True)
|
2004-10-01 00:02:56 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
self.xml.get_object('okbutton').set_label(label_msg1)
|
|
|
|
self.xml.get_object('okbutton').set_use_underline(True)
|
|
|
|
self.xml.get_object('no').set_label(label_msg2)
|
|
|
|
self.xml.get_object('no').set_use_underline(True)
|
2008-02-29 04:02:40 +05:30
|
|
|
|
2004-10-01 00:02:56 +05:30
|
|
|
if parent:
|
|
|
|
self.top.set_transient_for(parent)
|
2008-02-29 04:02:40 +05:30
|
|
|
self.top.show()
|
2004-10-01 00:02:56 +05:30
|
|
|
|
|
|
|
def run(self):
|
|
|
|
response = self.top.run()
|
|
|
|
self.top.destroy()
|
|
|
|
return (response == gtk.RESPONSE_ACCEPT)
|
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class OptionDialog(object):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2, btnmsg1, task1, btnmsg2, task2, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='optiondialog')
|
|
|
|
|
|
|
|
self.top = self.xml.toplevel
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
self.top.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.top.set_title("%s - GRAMPS" % msg1)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label1 = self.xml.get_object('od_label1')
|
2003-02-24 10:21:57 +05:30
|
|
|
label1.set_text('<span weight="bold" size="larger">%s</span>' % msg1)
|
2005-02-24 05:55:34 +05:30
|
|
|
label1.set_use_markup(True)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label2 = self.xml.get_object('od_label2')
|
2003-02-24 10:21:57 +05:30
|
|
|
label2.set_text(msg2)
|
2005-02-24 05:55:34 +05:30
|
|
|
label2.set_use_markup(True)
|
2003-02-24 10:21:57 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
self.xml.get_object('option1').set_label(btnmsg1)
|
|
|
|
self.xml.get_object('option2').set_label(btnmsg2)
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
if parent:
|
|
|
|
self.top.set_transient_for(parent)
|
2008-02-29 04:02:40 +05:30
|
|
|
self.top.show()
|
2003-04-18 09:45:42 +05:30
|
|
|
self.response = self.top.run()
|
|
|
|
if self.response == gtk.RESPONSE_NO:
|
2003-02-27 05:59:37 +05:30
|
|
|
if task1:
|
|
|
|
task1()
|
2003-02-24 10:21:57 +05:30
|
|
|
else:
|
2003-04-18 09:45:42 +05:30
|
|
|
if task2:
|
|
|
|
task2()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.top.destroy()
|
2002-10-21 06:48:07 +05:30
|
|
|
|
2003-04-18 09:45:42 +05:30
|
|
|
def get_response(self):
|
|
|
|
return self.response
|
|
|
|
|
2006-03-30 04:21:27 +05:30
|
|
|
class ErrorDialog(gtk.MessageDialog):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2="", parent=None):
|
2002-10-21 06:48:07 +05:30
|
|
|
|
2006-03-30 04:21:27 +05:30
|
|
|
gtk.MessageDialog.__init__(self, parent,
|
|
|
|
flags=gtk.DIALOG_MODAL,
|
|
|
|
type=gtk.MESSAGE_ERROR,
|
|
|
|
buttons=gtk.BUTTONS_CLOSE)
|
|
|
|
self.set_markup('<span weight="bold" size="larger">%s</span>' % msg1)
|
|
|
|
self.format_secondary_text(msg2)
|
|
|
|
self.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.set_title("%s - GRAMPS" % msg1)
|
2006-03-30 04:21:27 +05:30
|
|
|
self.show()
|
|
|
|
self.run()
|
|
|
|
self.destroy()
|
|
|
|
|
2006-12-11 09:40:46 +05:30
|
|
|
class RunDatabaseRepair(ErrorDialog):
|
|
|
|
def __init__(self, msg, parent=None):
|
|
|
|
ErrorDialog.__init__(
|
|
|
|
self,
|
|
|
|
_('Error detected in database'),
|
|
|
|
_('GRAMPS has detected an error in the database. This can '
|
|
|
|
'usually be resolved by running the "Check and Repair Database" '
|
|
|
|
'tool.\n\nIf this problem continues to exist after running this '
|
|
|
|
'tool, please file a bug report at '
|
2008-02-29 04:02:40 +05:30
|
|
|
'http://bugs.gramps-project.org\n\n') + str(msg), parent)
|
2006-12-11 09:40:46 +05:30
|
|
|
|
2007-06-13 07:57:31 +05:30
|
|
|
class DBErrorDialog(ErrorDialog):
|
|
|
|
def __init__(self, msg, parent=None):
|
|
|
|
ErrorDialog.__init__(
|
|
|
|
self,
|
|
|
|
_("Low level database corruption detected"),
|
|
|
|
_("GRAMPS has detected a problem in the underlying "
|
|
|
|
"Berkeley database. This can be repaired by from "
|
|
|
|
"the Family Tree Manager. Select the database and "
|
2008-02-29 04:02:40 +05:30
|
|
|
'click on the Repair button') + '\n\n' + str(msg), parent)
|
2007-06-13 07:57:31 +05:30
|
|
|
|
2006-03-30 04:21:27 +05:30
|
|
|
class WarningDialog(gtk.MessageDialog):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2="", parent=None):
|
2002-11-04 09:35:47 +05:30
|
|
|
|
2006-03-30 04:21:27 +05:30
|
|
|
gtk.MessageDialog.__init__(self, parent,
|
|
|
|
flags=gtk.DIALOG_MODAL,
|
|
|
|
type=gtk.MESSAGE_WARNING,
|
|
|
|
buttons=gtk.BUTTONS_CLOSE)
|
|
|
|
self.set_markup('<span weight="bold" size="larger">%s</span>' % msg1)
|
2006-04-30 06:55:56 +05:30
|
|
|
self.format_secondary_markup(msg2)
|
2006-03-30 04:21:27 +05:30
|
|
|
self.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.set_title("%s - GRAMPS" % msg1)
|
2006-03-30 04:21:27 +05:30
|
|
|
self.show()
|
|
|
|
self.run()
|
|
|
|
self.destroy()
|
|
|
|
|
|
|
|
class OkDialog(gtk.MessageDialog):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2="", parent=None):
|
2003-03-19 09:57:34 +05:30
|
|
|
|
2006-03-30 04:21:27 +05:30
|
|
|
gtk.MessageDialog.__init__(self, parent,
|
|
|
|
flags=gtk.DIALOG_MODAL,
|
|
|
|
type=gtk.MESSAGE_INFO,
|
|
|
|
buttons=gtk.BUTTONS_CLOSE)
|
|
|
|
self.set_markup('<span weight="bold" size="larger">%s</span>' % msg1)
|
|
|
|
self.format_secondary_text(msg2)
|
|
|
|
self.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.set_title("%s - GRAMPS" % msg1)
|
2006-03-30 04:21:27 +05:30
|
|
|
self.show()
|
|
|
|
self.run()
|
|
|
|
self.destroy()
|
2003-03-19 09:57:34 +05:30
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class InfoDialog(object):
|
2008-02-29 04:02:40 +05:30
|
|
|
"""
|
|
|
|
Dialog to show selectable info in a scrolled window
|
|
|
|
"""
|
|
|
|
def __init__(self, msg1, infotext, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='infodialog')
|
|
|
|
|
|
|
|
self.top = self.xml.toplevel
|
2008-02-29 04:02:40 +05:30
|
|
|
self.top.set_icon(ICON)
|
|
|
|
self.top.set_title("%s - GRAMPS" % msg1)
|
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label = self.xml.get_object('toplabel')
|
2008-02-29 04:02:40 +05:30
|
|
|
label.set_text('<span weight="bold" size="larger">%s</span>' % msg1)
|
|
|
|
label.set_use_markup(True)
|
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
infoview = self.xml.get_object('infoview')
|
2008-02-29 04:02:40 +05:30
|
|
|
infobuffer = gtk.TextBuffer()
|
|
|
|
infobuffer.set_text(infotext)
|
|
|
|
infoview.set_buffer(infobuffer)
|
|
|
|
|
|
|
|
if parent:
|
|
|
|
self.top.set_transient_for(parent)
|
|
|
|
self.top.show()
|
|
|
|
self.response = self.top.run()
|
|
|
|
#no matter how it finishes, destroy dialog
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
|
|
def get_response(self):
|
|
|
|
return self.response
|
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class MissingMediaDialog(object):
|
2009-08-14 12:37:10 +05:30
|
|
|
def __init__(self, msg1, msg2, task1, task2, task3, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='missmediadialog')
|
|
|
|
|
|
|
|
self.top = self.xml.toplevel
|
* src/gramps_main.py (tool_callback): Typo.
* src/QuestionDialog.py: Use gramps icon.
* src/plugins/EventCmp.py: HIG; single instance; help.
* src/plugins/eventcmp.glade: HIG; help.
* src/plugins/Desbrowser.py: HIG, help, rebuild model after edit.
* src/plugins/desbrowse.glade: help, info label.
* src/plugins/PatchNames.py: HIG, help, single instance.
* src/plugins/patchnames.glade: HIG, help.
* src/plugins/Merge.py: HIG, help, single instance.
* src/plugins/merge.glade: HIG, help.
* src/plugins/ChangeNames.py: HIG, help, single instance.
svn: r4230
2005-03-24 11:52:25 +05:30
|
|
|
self.top.set_icon(ICON)
|
2006-11-09 17:08:18 +05:30
|
|
|
self.top.set_title("%s - GRAMPS" % msg1)
|
2006-03-01 01:24:35 +05:30
|
|
|
|
2003-05-13 09:05:39 +05:30
|
|
|
self.task1 = task1
|
|
|
|
self.task2 = task2
|
|
|
|
self.task3 = task3
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label1 = self.xml.get_object('label4')
|
2003-05-13 09:05:39 +05:30
|
|
|
label1.set_text('<span weight="bold" size="larger">%s</span>' % msg1)
|
2005-02-24 05:55:34 +05:30
|
|
|
label1.set_use_markup(True)
|
2003-05-13 09:05:39 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
label2 = self.xml.get_object('label3')
|
2003-05-13 09:05:39 +05:30
|
|
|
label2.set_text(msg2)
|
2005-02-24 05:55:34 +05:30
|
|
|
label2.set_use_markup(True)
|
2003-05-13 09:05:39 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
check_button = self.xml.get_object('use_always')
|
2004-01-17 12:21:49 +05:30
|
|
|
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
if parent:
|
|
|
|
self.top.set_transient_for(parent)
|
2008-02-29 04:02:40 +05:30
|
|
|
self.top.show()
|
2009-08-14 12:37:10 +05:30
|
|
|
self.top.connect('delete_event', self.warn)
|
2006-03-01 01:24:35 +05:30
|
|
|
response = gtk.RESPONSE_DELETE_EVENT
|
|
|
|
|
|
|
|
# Need some magic here, because an attempt to close the dialog
|
|
|
|
# with the X button not only emits the 'delete_event' signal
|
|
|
|
# but also exits with the RESPONSE_DELETE_EVENT
|
|
|
|
while response == gtk.RESPONSE_DELETE_EVENT:
|
|
|
|
response = self.top.run()
|
|
|
|
|
2003-05-13 09:05:39 +05:30
|
|
|
if response == 1:
|
|
|
|
self.task1()
|
|
|
|
elif response == 2:
|
|
|
|
self.task2()
|
|
|
|
elif response == 3:
|
|
|
|
self.task3()
|
2004-01-17 12:21:49 +05:30
|
|
|
if check_button.get_active():
|
|
|
|
self.default_action = response
|
|
|
|
else:
|
|
|
|
self.default_action = 0
|
2003-05-13 09:05:39 +05:30
|
|
|
self.top.destroy()
|
2006-03-01 01:24:35 +05:30
|
|
|
|
2008-02-24 19:25:55 +05:30
|
|
|
def warn(self, obj, obj2):
|
2006-03-01 01:24:35 +05:30
|
|
|
WarningDialog(
|
|
|
|
_("Attempt to force closing the dialog"),
|
|
|
|
_("Please do not force closing this important dialog.\n"
|
|
|
|
"Instead select one of the available options"),
|
|
|
|
self.top)
|
|
|
|
return True
|
2006-05-08 06:45:19 +05:30
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class MessageHideDialog(object):
|
2006-09-24 10:07:59 +05:30
|
|
|
|
2006-05-08 06:45:19 +05:30
|
|
|
def __init__(self, title, message, key, parent=None):
|
2009-05-15 01:45:59 +05:30
|
|
|
self.xml = Glade(toplevel='hidedialog')
|
|
|
|
|
|
|
|
self.top = self.xml.toplevel
|
2009-08-14 12:37:10 +05:30
|
|
|
self.top.set_icon(ICON)
|
|
|
|
self.top.set_title("%s - GRAMPS" % title)
|
2006-11-09 17:08:18 +05:30
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
dont_show = self.xml.get_object('dont_show')
|
2006-09-26 09:38:41 +05:30
|
|
|
dont_show.set_active(Config.get(key))
|
2009-05-06 20:14:22 +05:30
|
|
|
title_label = self.xml.get_object('title')
|
2006-09-25 07:49:58 +05:30
|
|
|
title_label.set_text(
|
|
|
|
'<span size="larger" weight="bold">%s</span>' % title)
|
|
|
|
title_label.set_use_markup(True)
|
|
|
|
|
2009-05-06 20:14:22 +05:30
|
|
|
self.xml.get_object('message').set_text(message)
|
2006-09-25 07:49:58 +05:30
|
|
|
|
2009-08-14 12:37:10 +05:30
|
|
|
dont_show.connect('toggled', self.update_checkbox, key)
|
|
|
|
self.top.run()
|
|
|
|
self.top.destroy()
|
2006-05-08 06:45:19 +05:30
|
|
|
|
|
|
|
def update_checkbox(self, obj, constant):
|
|
|
|
Config.set(constant, obj.get_active())
|
2006-09-26 07:37:03 +05:30
|
|
|
Config.sync()
|