/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/menu.py

  • Committer: Jelmer Vernooij
  • Date: 2006-05-19 16:37:13 UTC
  • Revision ID: jelmer@samba.org-20060519163713-be77b31c72cbc7e8
Move visualisation code to a separate directory, preparing for bundling 
the GTK+ plugins for bzr.

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
 
import os.path
18
 
import sys
19
 
 
20
 
try:
21
 
    import pygtk
22
 
    pygtk.require("2.0")
23
 
except:
24
 
    pass
25
 
 
26
 
import gtk
27
 
 
28
 
import bzrlib.errors as errors
29
 
from dialog import error_dialog
30
 
 
31
 
from launch import launch
32
 
 
33
 
class OliveMenu:
34
 
    """ This class is responsible for building the context menus. """
35
 
    def __init__(self, comm):
36
 
        # Load the UI file
37
 
        if sys.platform == 'win32':
38
 
            self.uifile = os.path.dirname(sys.executable) + "/share/olive/cmenu.ui"
39
 
        else:
40
 
            self.uifile = "/usr/share/olive/cmenu.ui"
41
 
        
42
 
        if not os.path.exists(self.uifile):
43
 
            # Load from current directory if not installed
44
 
            self.uifile = "cmenu.ui"
45
 
            # Check again
46
 
            if not os.path.exists(self.uifile):
47
 
                # Fail
48
 
                print _('UI description file cannot be found.')
49
 
                sys.exit(1)
50
 
        
51
 
        self.comm = comm
52
 
        
53
 
        # Create the file list context menu
54
 
        self.ui = gtk.UIManager()
55
 
        
56
 
        self.actiongroup = gtk.ActionGroup('context')
57
 
        self.actiongroup.add_actions([('add', gtk.STOCK_ADD,
58
 
                                       _('Add'), None,
59
 
                                       _('Add the selected file'),
60
 
                                       self.add_file),
61
 
                                      ('remove', gtk.STOCK_REMOVE,
62
 
                                       _('Remove'), None,
63
 
                                       _('Remove the selected file'),
64
 
                                       self.remove_file),
65
 
                                      ('open', gtk.STOCK_OPEN,
66
 
                                       _('Open'), None,
67
 
                                       _('Open the selected file'),
68
 
                                       self.open_file),
69
 
                                      ('commit', None,
70
 
                                       _('Commit'), None,
71
 
                                       _('Commit the changes'),
72
 
                                       self.commit),
73
 
                                      ('diff', None,
74
 
                                       _('Diff'), None,
75
 
                                       _('Show the diff of the file'),
76
 
                                       self.diff),
77
 
                                      ('bookmark', None,
78
 
                                       _('Bookmark'), None,
79
 
                                       _('Bookmark current location'),
80
 
                                       self.bookmark),
81
 
                                      ('edit_bookmark', gtk.STOCK_EDIT,
82
 
                                       _('Edit'), None,
83
 
                                       _('Edit the selected bookmark'),
84
 
                                       self.edit_bookmark),
85
 
                                      ('remove_bookmark', gtk.STOCK_REMOVE,
86
 
                                       _('Remove'), None,
87
 
                                       _('Remove the selected bookmark'),
88
 
                                       self.remove_bookmark),
89
 
                                      ('open_folder', gtk.STOCK_OPEN,
90
 
                                       _('Open Folder'), None,
91
 
                                       _('Open bookmark folder in Nautilus'),
92
 
                                       self.open_folder),
93
 
                                      ('diff_selected', None,
94
 
                                       _('Selected...'), None,
95
 
                                       _('Show the differences of the selected file'),
96
 
                                       self.diff_selected),
97
 
                                      ('diff_all', None,
98
 
                                       _('All...'), None,
99
 
                                       _('Show the differences of all files'),
100
 
                                       self.diff_all)
101
 
                                     ])
102
 
        
103
 
        self.ui.insert_action_group(self.actiongroup, 0)
104
 
        self.ui.add_ui_from_file(self.uifile)
105
 
        
106
 
        self.cmenu_right = self.ui.get_widget('/context_right')
107
 
        self.cmenu_left = self.ui.get_widget('/context_left')
108
 
        self.toolbar_diff = self.ui.get_widget('/toolbar_diff')
109
 
        
110
 
        # Set icons
111
 
        commit_menu = self.ui.get_widget('/context_right/commit')
112
 
        commit_image = self.comm.menuitem_branch_commit.get_image()
113
 
        commit_pixbuf = commit_image.get_pixbuf()
114
 
        commit_icon = gtk.Image()
115
 
        commit_icon.set_from_pixbuf(commit_pixbuf)
116
 
        commit_menu.set_image(commit_icon)
117
 
        diff_menu = self.ui.get_widget('/context_right/diff')
118
 
        diff_image = self.comm.menuitem_stats_diff.get_image()
119
 
        diff_pixbuf = diff_image.get_pixbuf()
120
 
        diff_icon = gtk.Image()
121
 
        diff_icon.set_from_pixbuf(diff_pixbuf)
122
 
        diff_menu.set_image(diff_icon)
123
 
 
124
 
    def right_context_menu(self):
125
 
        return self.cmenu_right
126
 
    
127
 
    def left_context_menu(self):
128
 
        return self.cmenu_left
129
 
    
130
 
    def add_file(self, action):
131
 
        """ Right context menu -> Add """
132
 
        # Add only the selected file
133
 
        directory = self.comm.get_path()
134
 
        filename = self.comm.get_selected_right()
135
 
            
136
 
        if filename is None:
137
 
            error_dialog(_('No file was selected'),
138
 
                                     _('Please select a file from the list,\nor choose the other option.'))
139
 
            return
140
 
        
141
 
        try:
142
 
            bzrlib.add.smart_add([directory + '/' + filename])
143
 
        except errors.NotBranchError:
144
 
            error_dialog(_('Directory is not a branch'),
145
 
                                     _('You can perform this action only in a branch.'))
146
 
            return
147
 
        
148
 
        self.comm.refresh_right()
149
 
    
150
 
    def remove_file(self, action):
151
 
        """ Right context menu -> Remove """
152
 
        # Remove only the selected file
153
 
        directory = self.comm.get_path()
154
 
        filename = self.comm.get_selected_right()
155
 
        
156
 
        if filename is None:
157
 
            error_dialog(_('No file was selected'),
158
 
                                     _('Please select a file from the list,\nor choose the other option.'))
159
 
            return
160
 
        
161
 
        try:
162
 
            wt, path = WorkingTree.open_containing(directory+'/'+filename)
163
 
            wt.remove(path)
164
 
 
165
 
        except errors.NotBranchError:
166
 
            error_dialog(_('Directory is not a branch'),
167
 
                                     _('You can perform this action only in a branch.'))
168
 
            return
169
 
        except errors.NotVersionedError:
170
 
            error_dialog(_('File not versioned'),
171
 
                                     _('The selected file is not versioned.'))
172
 
            return
173
 
        except:
174
 
            raise
175
 
        
176
 
        self.comm.refresh_right()
177
 
 
178
 
    def open_file(self, action):
179
 
        """ Right context menu -> Open """
180
 
        # Open only the selected file
181
 
        filename = self.comm.get_selected_right()
182
 
        
183
 
        if filename is None:
184
 
            error_dialog(_('No file was selected'),
185
 
                                     _('Please select a file from the list,\nor choose the other option.'))
186
 
            return
187
 
 
188
 
        if filename == '..':
189
 
            self.comm.set_path(os.path.split(self.comm.get_path())[0])
190
 
        else:
191
 
            fullpath = self.comm.get_path() + os.sep + filename
192
 
            if os.path.isdir(fullpath):
193
 
                # selected item is an existant directory
194
 
                self.comm.set_path(fullpath)
195
 
            else:
196
 
                launch(fullpath) 
197
 
        
198
 
        self.comm.refresh_right()
199
 
 
200
 
    def commit(self, action):
201
 
        """ Right context menu -> Commit """
202
 
        from commit import OliveCommit
203
 
        wt, path = WorkingTree.open_containing(self.comm.get_path())
204
 
        commit = OliveCommit(wt, path)
205
 
        commit.display()
206
 
    
207
 
    def diff(self, action):
208
 
        """ Right context menu -> Diff """
209
 
        from diff import OliveDiff
210
 
        diff = OliveDiff(self.comm)
211
 
        diff.display()
212
 
    
213
 
    def bookmark(self, action):
214
 
        """ Right context menu -> Bookmark """
215
 
        if self.comm.pref.add_bookmark(self.comm.get_path()):
216
 
            info_dialog(_('Bookmark successfully added'),
217
 
                                    _('The current directory was bookmarked. You can reach\nit by selecting it from the left panel.'))
218
 
        else:
219
 
            warning_dialog(_('Location already bookmarked'),
220
 
                                       _('The current directory is already bookmarked.\nSee the left panel for reference.'))
221
 
        
222
 
        self.comm.refresh_left()
223
 
 
224
 
    def edit_bookmark(self, action):
225
 
        """ Left context menu -> Edit """
226
 
        from bookmark import OliveBookmark
227
 
 
228
 
        if self.comm.get_selected_left() != None:
229
 
            bookmark = OliveBookmark(self.comm)
230
 
            bookmark.display()
231
 
 
232
 
    def remove_bookmark(self, action):
233
 
        """ Left context menu -> Remove """
234
 
        
235
 
        if self.comm.get_selected_left() != None:
236
 
            self.comm.pref.remove_bookmark(self.comm.get_selected_left())
237
 
            self.comm.refresh_left()
238
 
    
239
 
    def open_folder(self, action):
240
 
        """ Left context menu -> Open Folder """
241
 
        path = self.comm.get_selected_left()
242
 
 
243
 
        if path != None:
244
 
            launch(path)
245
 
    
246
 
    def diff_selected(self, action):
247
 
        """ Diff toolbutton -> Selected... """
248
 
        print "DEBUG: not implemented."
249
 
    
250
 
    def diff_all(self, action):
251
 
        """ Diff toolbutton -> All... """
252
 
        from diff import OliveDiff
253
 
        diff = OliveDiff(self.comm)
254
 
        diff.display()