from pychrysalide.features import * from .panel import HelloPanel class HelloPlugin(PluginModule): """Simple demo plugin to build a GUI panel.""" def get_interface(self): """Provide the full plugin description.""" desc = { 'name' : 'HelloPanel', 'desc' : 'Say hello in the main GUI', 'version' : '0.1', 'actions' : [ PluginModule.PGA_PLUGIN_INIT ] } return desc def init(self): """Initialize the plugin.""" p = HelloPanel() register_panel(p); return True