/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: Jelmer Vernooij
  • Date: 2006-09-28 06:35:56 UTC
  • mto: (0.12.2 olive)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: jelmer@samba.org-20060928063556-62ec354cb06ba38c
Update TODO
integrate the handle and communicator functions into a main class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
import sys
 
18
 
17
19
try:
18
20
    import pygtk
19
21
    pygtk.require("2.0")
21
23
    pass
22
24
 
23
25
import gtk
24
 
 
25
 
from 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. """
 
26
import gtk.glade
 
27
from olive import gladefile
 
28
 
 
29
class OliveBookmark:
 
30
    """ Display the Edit bookmark dialog and perform the needed actions. """
 
31
    def __init__(self, comm):
 
32
        """ Initialize the Edit bookmark dialog. """
 
33
        self.glade = gtk.glade.XML(gladefile, 'window_bookmark', 'olive-gtk')
 
34
        
 
35
        self.window = self.glade.get_widget('window_bookmark')
 
36
        
 
37
        # Dictionary for signal_autoconnect
 
38
        dic = { "on_button_bookmark_save_clicked": self.bookmark,
 
39
                "on_button_bookmark_cancel_clicked": self.close }
 
40
        
 
41
        # Connect the signals to the handlers
 
42
        self.glade.signal_autoconnect(dic)
 
43
        
 
44
        # Get some important widgets
 
45
        self.entry_location = self.glade.get_widget('entry_bookmark_location')
 
46
        self.entry_title = self.glade.get_widget('entry_bookmark_title')
 
47
 
 
48
    def display(self):
 
49
        """ Display the Edit bookmark dialog. """
 
50
        path = self.comm.get_selected_left()
 
51
        self.entry_location.set_text(path)
 
52
        self.entry_title.set_text(self.comm.pref.get_bookmark_title(path))
 
53
        self.window.show_all()
 
54
        
 
55
    def bookmark(self, widget):
 
56
        if self.entry_title.get_text() == '':
 
57
            error_dialog(_('No title given'),
 
58
                                     _('Please specify a title to continue.'))
 
59
            return
 
60
        
 
61
        self.comm.pref.set_bookmark_title(self.entry_location.get_text(),
 
62
                                          self.entry_title.get_text())
 
63
        
 
64
        self.close()
32
65
    
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
 
        # Create a table and put widgets into it
61
 
        self._table = gtk.Table(rows=2, columns=2)
62
 
        self._table.attach(self._label_location, 0, 1, 0, 1)
63
 
        self._table.attach(self._label_title, 0, 1, 1, 2)
64
 
        self._table.attach(self._entry_location, 1, 2, 0, 1)
65
 
        self._table.attach(self._entry_title, 1, 2, 1, 2)
66
 
        
67
 
        self._label_location.set_alignment(0, 0.5)
68
 
        self._label_title.set_alignment(0, 0.5)
69
 
        self._table.set_row_spacings(3)
70
 
        self._table.set_col_spacings(3)
71
 
        self.vbox.set_spacing(3)
72
 
        
73
 
        self.vbox.add(self._table)
74
 
        
75
 
        self.action_area.pack_end(self._button_save)
76
 
        
77
 
        self.vbox.show_all()
78
 
        
79
 
    def _on_save_clicked(self, button):
80
 
        """ Save button clicked handler. """
81
 
        if self._entry_title.get_text() == '':
82
 
            error_dialog(_i18n('No title given'),
83
 
                         _i18n('Please specify a title to continue.'))
84
 
            return
85
 
        
86
 
        self.pref.set_bookmark_title(self._entry_location.get_text(),
87
 
                                     self._entry_title.get_text())
88
 
        self.pref.write()
89
 
        
90
 
        self.response(gtk.RESPONSE_OK)
 
66
    def close(self, widget=None):
 
67
        self.window.destroy()