1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
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.
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.
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
31
""" Display the Edit bookmark dialog and perform the needed actions. """
32
def __init__(self, gladefile, comm, dialog):
33
""" Initialize the Edit bookmark dialog. """
34
self.gladefile = gladefile
35
self.glade = gtk.glade.XML(self.gladefile, 'window_bookmark', 'olive-gtk')
37
# Communication object
42
self.window = self.glade.get_widget('window_bookmark')
44
# Dictionary for signal_autoconnect
45
dic = { "on_button_bookmark_save_clicked": self.bookmark,
46
"on_button_bookmark_cancel_clicked": self.close }
48
# Connect the signals to the handlers
49
self.glade.signal_autoconnect(dic)
51
# Get some important widgets
52
self.entry_location = self.glade.get_widget('entry_bookmark_location')
53
self.entry_title = self.glade.get_widget('entry_bookmark_title')
56
""" Display the Edit bookmark dialog. """
57
path = self.comm.get_selected_left()
58
self.entry_location.set_text(path)
59
self.entry_title.set_text(self.comm.pref.get_bookmark_title(path))
60
self.window.show_all()
62
def bookmark(self, widget):
63
if self.entry_title.get_text() == '':
64
self.dialog.error_dialog(_('No title given'),
65
_('Please specify a title to continue.'))
68
self.comm.pref.set_bookmark_title(self.entry_location.get_text(),
69
self.entry_title.get_text())
72
self.comm.refresh_left()
74
def close(self, widget=None):