/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 olive/bookmark.py

  • Committer: Jasper Groenewegen
  • Date: 2008-07-27 07:59:23 UTC
  • mto: This revision was merged to the branch mainline in revision 577.
  • Revision ID: colbrac@xs4all.nl-20080727075923-89sjwarwxezojre5
Add parent setting to dialogs and implement in gcommit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
try:
 
18
    import pygtk
 
19
    pygtk.require("2.0")
 
20
except:
 
21
    pass
 
22
 
 
23
import gtk
 
24
 
 
25
from bzrlib.plugins.gtk.olive import Preferences
 
26
from bzrlib.plugins.gtk import _i18n
 
27
from bzrlib.plugins.gtk.dialog import error_dialog
 
28
 
 
29
 
 
30
class BookmarkDialog(gtk.Dialog):
 
31
    """ This class wraps the old Bookmark window into a gtk.Dialog. """
 
32
    
 
33
    def __init__(self, selected, parent=None):
 
34
        """ Initialize the Bookmark dialog. """
 
35
        gtk.Dialog.__init__(self, title="Bookmarks - Olive",
 
36
                                  parent=parent,
 
37
                                  flags=0,
 
38
                                  buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL))
 
39
        
 
40
        self.pref = Preferences()
 
41
        
 
42
        # Get arguments
 
43
        self.selected = selected
 
44
        
 
45
        # Create widgets
 
46
        self._label_location = gtk.Label(_i18n("Location:"))
 
47
        self._label_title = gtk.Label(_i18n("Title:"))
 
48
        self._entry_location = gtk.Entry()
 
49
        self._entry_title = gtk.Entry()
 
50
        self._button_save = gtk.Button(stock=gtk.STOCK_SAVE)
 
51
        
 
52
        self._button_save.connect('clicked', self._on_save_clicked)
 
53
        
 
54
        # Set default values
 
55
        self._entry_location.set_text(self.selected)
 
56
        self._entry_location.set_sensitive(False)
 
57
        self._entry_title.set_text(self.pref.get_bookmark_title(self.selected))
 
58
        self._entry_title.set_flags(gtk.CAN_FOCUS | gtk.HAS_FOCUS)
 
59
        
 
60
        self._entry_title.connect('activate', self._on_save_clicked)
 
61
        
 
62
        # Create a table and put widgets into it
 
63
        self._table = gtk.Table(rows=2, columns=2)
 
64
        self._table.attach(self._label_location, 0, 1, 0, 1)
 
65
        self._table.attach(self._label_title, 0, 1, 1, 2)
 
66
        self._table.attach(self._entry_location, 1, 2, 0, 1)
 
67
        self._table.attach(self._entry_title, 1, 2, 1, 2)
 
68
        
 
69
        self._label_location.set_alignment(0, 0.5)
 
70
        self._label_title.set_alignment(0, 0.5)
 
71
        self._table.set_row_spacings(3)
 
72
        self._table.set_col_spacings(3)
 
73
        self.vbox.set_spacing(3)
 
74
        
 
75
        self.vbox.add(self._table)
 
76
        
 
77
        self.action_area.pack_end(self._button_save)
 
78
        
 
79
        self.vbox.show_all()
 
80
        
 
81
    def _on_save_clicked(self, button):
 
82
        """ Save button clicked handler. """
 
83
        if self._entry_title.get_text() == '':
 
84
            error_dialog(_i18n('No title given'),
 
85
                         _i18n('Please specify a title to continue.'))
 
86
            return
 
87
        
 
88
        self.pref.set_bookmark_title(self._entry_location.get_text(),
 
89
                                     self._entry_title.get_text())
 
90
        self.pref.write()
 
91
        
 
92
        self.response(gtk.RESPONSE_OK)