/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__
30
36
    from guifiles import GLADEFILENAME
31
37
 
32
38
    # Load AboutDialog description
34
40
    dialog = dglade.get_widget('aboutdialog')
35
41
 
36
42
    # Set version
37
 
    dialog.set_version(olive.__version__)
 
43
    dialog.set_version(version)
38
44
 
39
45
    dialog.run()
40
46
    # Destroy the dialog
41
47
    dialog.destroy()
42
48
 
43
 
def _message_dialog(type, primary, secondary):
 
49
def _message_dialog(type, primary, secondary, buttons=gtk.BUTTONS_OK):
44
50
    """ Display a given type of MessageDialog with the given message.
45
51
    
46
 
    :param type: error | warning | info
 
52
    :param type: message dialog type
47
53
    
48
54
    :param message: the message you want to display.
49
55
    """
50
 
    if type == 'error':
51
 
        dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
52
 
                                   type=gtk.MESSAGE_ERROR,
53
 
                                   buttons=gtk.BUTTONS_OK)
54
 
        dialog.set_markup('<big><b>' + primary + '</b></big>')
55
 
    elif type == 'warning':
56
 
        dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
57
 
                                   type=gtk.MESSAGE_WARNING,
58
 
                                   buttons=gtk.BUTTONS_OK)
59
 
        dialog.set_markup('<big><b>' + primary + '</b></big>')
60
 
    elif type == 'info':
61
 
        dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
62
 
                                   type=gtk.MESSAGE_INFO,
63
 
                                   buttons=gtk.BUTTONS_OK)
64
 
        dialog.set_markup('<big><b>' + primary + '</b></big>')
65
 
    elif type == 'question':
66
 
        dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL,
67
 
                                   type=gtk.MESSAGE_QUESTION,
68
 
                                   buttons=gtk.BUTTONS_YES_NO)
69
 
        dialog.set_markup('<big><b>' + primary + '</b></big>')
70
 
    else:
71
 
        return
72
 
 
 
56
    dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL, type=type,
 
57
                               buttons=buttons)
 
58
    dialog.set_markup('<big><b>' + primary + '</b></big>')
73
59
    dialog.format_secondary_markup(secondary)
74
 
 
75
60
    response = dialog.run()
76
61
    dialog.destroy()
77
 
 
78
62
    return response
79
63
 
80
64
def error_dialog(primary, secondary):
81
65
    """ Display an error dialog with the given message. """
82
 
    return _message_dialog('error', primary, secondary)
 
66
    return _message_dialog(gtk.MESSAGE_ERROR, primary, secondary)
83
67
 
84
68
def info_dialog(primary, secondary):
85
69
    """ Display an info dialog with the given message. """
86
 
    return _message_dialog('info', primary, secondary)
 
70
    return _message_dialog(gtk.MESSAGE_INFO, primary, secondary)
87
71
 
88
72
def warning_dialog(primary, secondary):
89
73
    """ Display a warning dialog with the given message. """
90
 
    return _message_dialog('warning', primary, secondary)
 
74
    return _message_dialog(gtk.MESSAGE_WARNING, primary, secondary)
91
75
 
92
76
def question_dialog(primary, secondary):
93
77
    """ Display a dialog with the given question. """
94
 
    return _message_dialog('question', primary, secondary)
 
78
    return _message_dialog(gtk.MESSAGE_QUESTION, primary, secondary, gtk.BUTTONS_YES_NO)