2002-04-24 10:01:29 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 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
|
|
|
|
#
|
|
|
|
|
|
|
|
import gnome.ui
|
|
|
|
import gtk
|
|
|
|
|
|
|
|
class QuestionDialog:
|
|
|
|
def __init__(self,title,msg,blabel1,task1,blabel2,task2=None):
|
|
|
|
title = '%s - GRAMPS' % title
|
|
|
|
|
|
|
|
self.top = gnome.ui.GnomeDialog(title,blabel1,blabel2)
|
|
|
|
label = gtk.GtkLabel(msg)
|
|
|
|
label.show()
|
|
|
|
self.top.vbox.pack_start(label)
|
|
|
|
self.top.set_usize(450,150)
|
|
|
|
self.task2 = task2
|
|
|
|
self.task1 = task1
|
|
|
|
self.top.button_connect(0,self.my_task1)
|
|
|
|
self.top.button_connect(1,self.my_task2)
|
2002-04-25 10:06:16 +05:30
|
|
|
self.top.set_modal(1)
|
2002-04-24 10:01:29 +05:30
|
|
|
self.top.show()
|
|
|
|
|
|
|
|
def my_task1(self,obj):
|
|
|
|
if self.task1:
|
|
|
|
self.task1()
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
|
|
def my_task2(self,obj):
|
|
|
|
if self.task2:
|
|
|
|
self.task2()
|
|
|
|
self.top.destroy()
|
|
|
|
|