pycrossword  0.3
Pure-Python implementation of a crossword puzzle generator and editor
List of all members
pycross.utils.pluginbase.PxPluginGeneral Class Reference

Base class General user plugins (placed in the 'general' category). More...

Inheritance diagram for pycross.utils.pluginbase.PxPluginGeneral:
pycross.utils.pluginbase.PxPluginBase

Additional Inherited Members

- Public Member Functions inherited from pycross.utils.pluginbase.PxPluginBase
def __init__ (self, plugin_manager)
 Constructor initializes a pointer to the PxPluginManager object. More...
 
def activate (self)
 Called at plugin activation. More...
 
def deactivate (self)
 Called the plugin is disabled. More...
 
def test (self)
 Testing method: prints the plugin's class name by default. More...
 
- Public Attributes inherited from pycross.utils.pluginbase.PxPluginBase
 plugin_manager
 

Detailed Description

Base class General user plugins (placed in the 'general' category).

A bare-bones plugin source module would look like this:

from pycross.utils.pluginbase import *
class MyPlugin(PxPluginGeneral):
pass # do whatever...

The documentation for this class was generated from the following file: