comparison plugins/xxblank.py @ 227:81d0bfd5e800 alpha

Traipse Alpha 'OpenRPG' {100612-00} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary (Preparing to close updates) New Features: New to Map, can re-order Grid, Miniatures, and Whiteboard layer draw order Fixes: Fix to InterParse that was causing an Infernal Loop with Namespace Internal Fix to XML data, removed old Minidom and switched to Element Tree Fix to Server that was causing eternal attempt to find a Server ID, in Register Rooms thread Fix to metaservers.xml file not being created
author sirebral
date Sat, 12 Jun 2010 03:50:37 -0500
parents 4385a7d0efd1
children
comparison
equal deleted inserted replaced
182:4b2884f29a72 227:81d0bfd5e800
1 import os 1 import os, wx
2 import orpg.pluginhandler 2 import orpg.pluginhandler
3 3
4 class Plugin(orpg.pluginhandler.PluginHandler): 4 class Plugin(orpg.pluginhandler.PluginHandler):
5 # Initialization subroutine. 5 # Initialization subroutine.
6 # 6 #
15 self.help = 'Info About your plugin' 15 self.help = 'Info About your plugin'
16 16
17 #You can set variables below here. Always set them to a blank value in this section. Use plugin_enabled 17 #You can set variables below here. Always set them to a blank value in this section. Use plugin_enabled
18 #to set their proper values. 18 #to set their proper values.
19 self.sample_variable = {} 19 self.sample_variable = {}
20
21 def plugin_menu(self):
22 ## This is a standardized Menu item. It connects to plugin_toggle where you can set events.
23 self.menu = wx.Menu()
24 self.toggle = self.menu.AppendCheckItem(wx.ID_ANY, 'On')
25 self.topframe.Bind(wx.EVT_MENU, self.plugin_toggle, self.toggle)
26 self.toggle.Check(True)
27
28 def plugin_toggle(self, evt):
29 pass
20 30
21 31
22 def plugin_enabled(self): 32 def plugin_enabled(self):
23 #You can add new /commands like 33 #You can add new /commands like
24 # self.plugin_addcommand(cmd, function, helptext) 34 # self.plugin_addcommand(cmd, function, helptext)