Changeset 1261
- Timestamp:
- 05/08/07 22:57:05 (2 years ago)
- Files:
-
- gaphor/trunk/gaphor/services/guimanager.py (modified) (1 diff)
- gaphor/trunk/gaphor/ui/mainwindow.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/trunk/gaphor/services/guimanager.py
r1260 r1261 12 12 13 13 def __init__(self): 14 pass14 self._ui_components = dict() 15 15 16 16 main_window = property(lambda s: s._main_window) gaphor/trunk/gaphor/ui/mainwindow.py
r1259 r1261 19 19 20 20 21 from interfaces import I DiagramElementReceivedFocus21 from interfaces import IUIComponent, IDiagramElementReceivedFocus 22 22 from gaphor.interfaces import IServiceEvent 23 23 from zope import component … … 28 28 It contains a Namespace-based tree view and a menu and a statusbar. 29 29 """ 30 interface.implements(I Service, IActionProvider)30 interface.implements(IUIComponent, IActionProvider) 31 31 32 32 properties = inject('properties')
