~bratdaking/backintime/snapshotfolder

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#    Back In Time
#    Copyright (C) 2008-2009 Oprea Dan
#
#    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.,
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import os
import os.path

import pygtk
pygtk.require("2.0")
import gtk
import gettext

import config


_=gettext.gettext


def show_question( parent, config, message ):
    dialog = gtk.MessageDialog( parent, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO )
    dialog.set_markup( message )
    dialog.set_title( config.APP_NAME )
    retVal = dialog.run()
    dialog.destroy()
    return retVal

def show_error( parent, config, message ):
    dialog = gtk.MessageDialog( parent, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK )
    dialog.set_markup( message )
    dialog.set_title( config.APP_NAME )
    retVal = dialog.run()
    dialog.destroy()
    return retVal

def text_input_dialog( parent, config, title, default_value = '' ):
    
    builder = gtk.Builder()

    glade_file = os.path.join(config.get_app_path(), 'gnome',
            'textinputdialog.glade')

    builder.add_from_file(glade_file)

    dialog = builder.get_object( 'TextInputDialog' )
    dialog.set_title( title )
    dialog.set_transient_for( parent )
    
    edit = builder.get_object( 'edit_text' )

    if not default_value is None:
        edit.set_text( default_value )

    edit.grab_focus()
    
    text = None
    if gtk.RESPONSE_OK == dialog.run():
        text = edit.get_text()
    else:
        text = default_value

    dialog.destroy()
    return text