/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to dialog.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-03 14:19:44 UTC
  • Revision ID: jelmer@samba.org-20070203141944-oa6iqhetsy0slqo0
Fix references to dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
def about():
28
28
    """ Display the AboutDialog. """
29
 
    import olive
 
29
    version = None
 
30
    try:
 
31
        import bzrlib.plugins.gtk
 
32
    except ImportError:
 
33
        version = 'N/A'
 
34
    else:
 
35
        version = bzrlib.plugins.gtk.__version__
 
36
    from guifiles import GLADEFILENAME
30
37
 
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')
34
41
 
35
42
    # Set version
36
 
    dialog.set_version(olive.__version__)
37
 
    
 
43
    dialog.set_version(version)
 
44
 
 
45
    dialog.run()
38
46
    # Destroy the dialog
39
 
    if dialog.run() == gtk.RESPONSE_CANCEL:
40
 
        dialog.destroy()
 
47
    dialog.destroy()
41
48
 
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.
44
51
    
45
 
    :param type: error | warning | info
 
52
    :param type: message dialog type
46
53
    
47
54
    :param message: the message you want to display.
48
55
    """
49
 
    if type == 'error':
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>')
59
 
    elif type == 'info':
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>')
64
 
    else:
65
 
        return
66
 
    
 
56
    dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL, type=type,
 
57
                               buttons=buttons)
 
58
    dialog.set_markup('<big><b>' + primary + '</b></big>')
67
59
    dialog.format_secondary_markup(secondary)
68
 
    
69
 
    if dialog.run() == gtk.RESPONSE_OK:
70
 
        dialog.destroy()
 
60
    response = dialog.run()
 
61
    dialog.destroy()
 
62
    return response
71
63
 
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)
75
67
 
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)
79
71
 
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)
 
75
 
 
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)