Changeset 3009
- Timestamp:
- 06/15/08 17:41:20 (5 years ago)
- Location:
- branch/UmitPlugins
- Files:
-
- 6 added
- 3 modified
-
source-plugins/terminal-pad (added)
-
source-plugins/terminal-pad/dist (added)
-
source-plugins/terminal-pad/dist/logo.png (added)
-
source-plugins/terminal-pad/setup.py (added)
-
source-plugins/terminal-pad/sources (added)
-
source-plugins/terminal-pad/sources/main.py (added)
-
umitGUI/App.py (modified) (1 diff)
-
umitGUI/MainWindow.py (modified) (1 diff)
-
umitPlugin/Core.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branch/UmitPlugins/umitGUI/App.py
r3002 r3009 64 64 self.main_window.show_all() 65 65 66 # Load the selected plugins 66 # Set the mainwindow and load the selected plugins 67 PluginEngine().core.mainwindow = self.main_window 67 68 PluginEngine().load_selected_plugins() 68 69 -
branch/UmitPlugins/umitGUI/MainWindow.py
r3002 r3009 385 385 filename = None 386 386 387 if page == None :387 if page == None or not isinstance(page, ScanNotebookPage): 388 388 return True 389 389 -
branch/UmitPlugins/umitPlugin/Core.py
r3007 r3009 29 29 class Core(object): 30 30 def __init__(self): 31 print "IMPLEMENT ME MAN! I'M CoreObject.__init__"31 self.mainwindow = None 32 32 gtk.about_dialog_set_url_hook(self.__about_dialog_url, None) 33 34 # 35 # MainWindow related functions 36 37 def get_main_toolbar(self): 38 "@return the toolbar of the MainWindow" 39 return self.mainwindow.toolbar 40 41 def get_main_menu(self): 42 "@return the menubar of the MainWindow" 43 return self.mainwindow.menubar 44 45 def get_main_scan_notebook(self): 46 "@return the scan_notebook of the MainWindow" 47 return self.mainwindow.scan_notebook 33 48 34 49 def get_need(self, reader, needstr, classname=None):
