/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/frontend/gtk/handler.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-08-09 14:39:28 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060809143928-968881b09d21ccd7
Implemented Rename functionality.

2006-08-09  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>

    * olive.glade: added Rename dialog
    * olive/frontend/gtk/rename.py: implemented OliveRename
    * olive/frontend/gtk/handler.py: added Rename signal handler

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
        move = OliveMove(self.gladefile, self.comm)
125
125
        move.display()
126
126
    
 
127
    def on_menuitem_file_rename_activate(self, widget):
 
128
        """ File/Rename... menu handler. """
 
129
        from rename import OliveRename
 
130
        rename = OliveRename(self.gladefile, self.comm)
 
131
        rename.display()
 
132
 
127
133
    def on_menuitem_remove_file_activate(self, widget):
128
134
        """ Remove (unversion) selected file. """
129
135
        from remove import OliveRemove