28
28
""" Display the AboutDialog. """
31
import bzrlib.plugins.gtk
35
version = bzrlib.plugins.gtk.__version__
36
from guifiles import GLADEFILENAME
31
38
# Load AboutDialog description
32
dglade = gtk.glade.XML(olive.gladefile, 'aboutdialog')
39
dglade = gtk.glade.XML(GLADEFILENAME, 'aboutdialog')
33
40
dialog = dglade.get_widget('aboutdialog')
36
dialog.set_version(olive.__version__)
43
dialog.set_version(version)
38
46
# Destroy the dialog
39
if dialog.run() == gtk.RESPONSE_CANCEL:
42
def _message_dialog(type, primary, secondary):
49
def _message_dialog(type, primary, secondary, buttons=gtk.BUTTONS_OK):
43
50
""" Display a given type of MessageDialog with the given message.
45
:param type: error | warning | info
52
:param type: message dialog type
47
54
:param message: the message you want to display.
50
dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
51
type=gtk.MESSAGE_ERROR,
52
buttons=gtk.BUTTONS_OK)
53
dialog.set_markup('<big><b>' + primary + '</b></big>')
54
elif type == 'warning':
55
dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
56
type=gtk.MESSAGE_WARNING,
57
buttons=gtk.BUTTONS_OK)
58
dialog.set_markup('<big><b>' + primary + '</b></big>')
60
dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
61
type=gtk.MESSAGE_INFO,
62
buttons=gtk.BUTTONS_OK)
63
dialog.set_markup('<big><b>' + primary + '</b></big>')
56
dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL, type=type,
58
dialog.set_markup('<big><b>' + primary + '</b></big>')
67
59
dialog.format_secondary_markup(secondary)
69
if dialog.run() == gtk.RESPONSE_OK:
60
response = dialog.run()
72
64
def error_dialog(primary, secondary):
73
65
""" Display an error dialog with the given message. """
74
_message_dialog('error', primary, secondary)
66
return _message_dialog(gtk.MESSAGE_ERROR, primary, secondary)
76
68
def info_dialog(primary, secondary):
77
69
""" Display an info dialog with the given message. """
78
_message_dialog('info', primary, secondary)
70
return _message_dialog(gtk.MESSAGE_INFO, primary, secondary)
80
72
def warning_dialog(primary, secondary):
81
73
""" Display a warning dialog with the given message. """
82
_message_dialog('warning', primary, secondary)
74
return _message_dialog(gtk.MESSAGE_WARNING, primary, secondary)
76
def question_dialog(primary, secondary):
77
""" Display a dialog with the given question. """
78
return _message_dialog(gtk.MESSAGE_QUESTION, primary, secondary, gtk.BUTTONS_YES_NO)