/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 13:15:41 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-20060809131541-cd4eba8e228f2b60
Implemented Make directory functionality; some cleanups.

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

    * olive/backend/fileops.py: added NotBranchError support to mkdir()
    * olive/frontend/gtk/mkdir.py: implemented OliveMkdir
    * olive/frontend/gtk/handler.py: added Make directory signal handler

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
            self.dialog.info_dialog('Directory successfully initialized.')
113
113
            self.comm.refresh_right()
114
114
        
 
115
    def on_menuitem_file_make_directory_activate(self, widget):
 
116
        """ File/Make directory... menu handler. """
 
117
        from mkdir import OliveMkdir
 
118
        mkdir = OliveMkdir(self.gladefile, self.comm)
 
119
        mkdir.display()
 
120
    
115
121
    def on_menuitem_remove_file_activate(self, widget):
116
122
        """ Remove (unversion) selected file. """
117
123
        from remove import OliveRemove