~ubuntu-branches/ubuntu/maverick/backintime/maverick

« back to all changes in this revision

Viewing changes to gnomemessagebox.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Wiltshire
  • Date: 2009-05-16 23:04:32 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090516230432-orrutvtufbtuxsc6
Tags: 0.9.24-1
* New upstream version (closes: #527447):
  - backintime is no longer aware of 'backintime-gnome' and 'backintime-kde4'
    (you need run 'backintime-gnome' for GNOME version and 'backintime-kde4'
    for KDE4 version)
  - fix a bug that crashes the program after taking a snapshot
* Update homepage field in debian/control (closes: #527595)
* Refactor packaging to fit new upstream build system (an almost entire 
  re-write of debian/rules)
* Make configure scripts use /bin/sh instead of /bin/bash (they don't use
  bash features)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#    Back In Time
2
 
#    Copyright (C) 2008-2009 Oprea Dan
3
 
#
4
 
#    This program is free software; you can redistribute it and/or modify
5
 
#    it under the terms of the GNU General Public License as published by
6
 
#    the Free Software Foundation; either version 2 of the License, or
7
 
#    (at your option) any later version.
8
 
#
9
 
#    This program is distributed in the hope that it will be useful,
10
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
#    GNU General Public License for more details.
13
 
#
14
 
#    You should have received a copy of the GNU General Public License along
15
 
#    with this program; if not, write to the Free Software Foundation, Inc.,
16
 
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
 
 
18
 
 
19
 
import pygtk
20
 
pygtk.require("2.0")
21
 
import gtk
22
 
import gettext
23
 
 
24
 
import config
25
 
 
26
 
 
27
 
_=gettext.gettext
28
 
 
29
 
 
30
 
def show_question( parent, config, message ):
31
 
        dialog = gtk.MessageDialog( parent, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO )
32
 
        dialog.set_markup( message )
33
 
        dialog.set_title( config.APP_NAME )
34
 
        retVal = dialog.run()
35
 
        dialog.destroy()
36
 
        return retVal
37
 
 
38
 
def show_error( parent, config, message ):
39
 
        dialog = gtk.MessageDialog( parent, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK )
40
 
        dialog.set_markup( message )
41
 
        dialog.set_title( config.APP_NAME )
42
 
        retVal = dialog.run()
43
 
        dialog.destroy()
44
 
        return retVal
45
 
 
46
 
def text_input_dialog( parent, glade, title, default_value = "" ):
47
 
        dialog = glade.get_widget( 'TextInputDialog' )
48
 
        dialog.set_title( title )
49
 
        dialog.set_transient_for( parent )
50
 
 
51
 
        edit = glade.get_widget( 'edit_text' )
52
 
        edit.set_text( default_value )
53
 
        edit.grab_focus()
54
 
        
55
 
        text = None
56
 
        if gtk.RESPONSE_OK == dialog.run():
57
 
                text = edit.get_text()
58
 
 
59
 
        dialog.hide()
60
 
        return text  
61