/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: Daniel Schierbeck
  • Date: 2008-04-07 20:34:51 UTC
  • mfrom: (450.6.13 bugs)
  • mto: (463.2.1 bug.78765)
  • mto: This revision was merged to the branch mainline in revision 462.
  • Revision ID: daniel.schierbeck@gmail.com-20080407203451-2i6el7jf9t0k9y64
Merged bug page improvements.

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
 
 
19
17
try:
20
18
    import pygtk
21
19
    pygtk.require("2.0")
22
20
except:
23
21
    pass
24
 
try:
25
 
    import gtk
26
 
    import gtk.glade
27
 
except:
28
 
    sys.exit(1)
29
 
 
30
 
class OliveBookmark:
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')
36
 
        
37
 
        # Communication object
38
 
        self.comm = comm
39
 
        # Dialog object
40
 
        self.dialog = dialog
41
 
        
42
 
        self.window = self.glade.get_widget('window_bookmark')
43
 
        
44
 
        # Dictionary for signal_autoconnect
45
 
        dic = { "on_button_bookmark_save_clicked": self.bookmark,
46
 
                "on_button_bookmark_cancel_clicked": self.close }
47
 
        
48
 
        # Connect the signals to the handlers
49
 
        self.glade.signal_autoconnect(dic)
50
 
        
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')
54
 
 
55
 
    def display(self):
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()
61
 
        
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.'))
 
22
 
 
23
import gtk
 
24
 
 
25
from olive import Preferences
 
26
from bzrlib.plugins.gtk.dialog import error_dialog
 
27
 
 
28
 
 
29
class BookmarkDialog(gtk.Dialog):
 
30
    """ This class wraps the old Bookmark window into a gtk.Dialog. """
 
31
    
 
32
    def __init__(self, selected, parent=None):
 
33
        """ Initialize the Bookmark dialog. """
 
34
        gtk.Dialog.__init__(self, title="Bookmarks - Olive",
 
35
                                  parent=parent,
 
36
                                  flags=0,
 
37
                                  buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL))
 
38
        
 
39
        self.pref = Preferences()
 
40
        
 
41
        # Get arguments
 
42
        self.selected = selected
 
43
        
 
44
        # Create widgets
 
45
        self._label_location = gtk.Label(_("Location:"))
 
46
        self._label_title = gtk.Label(_("Title:"))
 
47
        self._entry_location = gtk.Entry()
 
48
        self._entry_title = gtk.Entry()
 
49
        self._button_save = gtk.Button(stock=gtk.STOCK_SAVE)
 
50
        
 
51
        self._button_save.connect('clicked', self._on_save_clicked)
 
52
        
 
53
        # Set default values
 
54
        self._entry_location.set_text(self.selected)
 
55
        self._entry_location.set_sensitive(False)
 
56
        self._entry_title.set_text(self.pref.get_bookmark_title(self.selected))
 
57
        self._entry_title.set_flags(gtk.CAN_FOCUS | gtk.HAS_FOCUS)
 
58
        
 
59
        # Create a table and put widgets into it
 
60
        self._table = gtk.Table(rows=2, columns=2)
 
61
        self._table.attach(self._label_location, 0, 1, 0, 1)
 
62
        self._table.attach(self._label_title, 0, 1, 1, 2)
 
63
        self._table.attach(self._entry_location, 1, 2, 0, 1)
 
64
        self._table.attach(self._entry_title, 1, 2, 1, 2)
 
65
        
 
66
        self._label_location.set_alignment(0, 0.5)
 
67
        self._label_title.set_alignment(0, 0.5)
 
68
        self._table.set_row_spacings(3)
 
69
        self._table.set_col_spacings(3)
 
70
        self.vbox.set_spacing(3)
 
71
        
 
72
        self.vbox.add(self._table)
 
73
        
 
74
        self.action_area.pack_end(self._button_save)
 
75
        
 
76
        self.vbox.show_all()
 
77
        
 
78
    def _on_save_clicked(self, button):
 
79
        """ Save button clicked handler. """
 
80
        if self._entry_title.get_text() == '':
 
81
            error_dialog(_('No title given'),
 
82
                         _('Please specify a title to continue.'))
66
83
            return
67
84
        
68
 
        self.comm.pref.set_bookmark_title(self.entry_location.get_text(),
69
 
                                          self.entry_title.get_text())
 
85
        self.pref.set_bookmark_title(self._entry_location.get_text(),
 
86
                                     self._entry_title.get_text())
 
87
        self.pref.write()
70
88
        
71
 
        self.close()
72
 
        self.comm.refresh_left()
73
 
    
74
 
    def close(self, widget=None):
75
 
        self.window.destroy()
 
89
        self.response(gtk.RESPONSE_OK)