root/gaphor-plugins/sandbox/plugineditor/__init__.py

Revision 383, 336 bytes (checked in by arjanmol, 4 years ago)

*** empty log message ***

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # vim:sw=4:et
2
3 import gaphor.plugin
4 from plugineditor import PluginEditorWindow
5
6 class PluginEditorAction(gaphor.plugin.Action):
7
8     def execute(self):
9         #print 'CheckMetamodelAction'
10         # TODO: override checkmodel.report
11         cw = PluginEditorWindow()
12         cw.construct()
13         self.window.add_transient_window(cw)
Note: See TracBrowser for help on using the browser.