annotate plugins/xxmouse-zoom.py @ 235:f6aca9a7370b alpha

Traipse Alpha 'OpenRPG' {100616-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 (Closed) New Features: New to Map, can re-order Grid, Miniatures, and Whiteboard layer draw order New to Server GUI, can now clear log Updates: Update to Warhammer PC Sheet. Rollers set as macros. Should work with little maintanence. Update to Browser Server window. Display rooms with ' " & cleaner Update to Server. Handles ' " & cleaner. 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 Fix to Single and Double quotes in Whiteboard text Fix to Background images not showing when using the Image Server Fix to Duplicate chat names appearing Fix to Server GUI's logging output Fix to FNB.COLORFUL_TABS bug.
author sirebral
date Wed, 16 Jun 2010 03:01:22 -0500
parents b633f4c64aae
children
rev   line source
120
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
1 import os
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
2 import orpg.pluginhandler
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
3 try: from orpg.orpgCore import component
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
4 except: from orpg.orpgCore import open_rpg
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
5 import wx
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
6
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
7 class Plugin(orpg.pluginhandler.PluginHandler):
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
8 # Initialization subroutine.
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
9 #
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
10 # !self : instance of self
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
11 # !openrpg : instance of the the base openrpg control
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
12 def __init__(self, plugindb, parent):
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
13 orpg.pluginhandler.PluginHandler.__init__(self, plugindb, parent)
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
14
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
15 # The Following code should be edited to contain the proper information
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
16 self.name = 'Mouse Zoom'
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
17 self.author = 'Tyler Starke (Prof. Ebral)'
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
18 self.help = 'This plugin allows users to zoom their map with super ease. Hold Ctrl or Cmd and scroll your mouse '
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
19 self.help += 'wheel and the map will zoom in or out. And FAST too! \n'
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
20 self.help += 'This plugin is designed for Grumpy Goblin and Ornery Orc.'
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
21
195
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
22 def plugin_menu(self):
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
23 self.menu = wx.Menu()
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
24 self.toggle = self.menu.AppendCheckItem(wx.ID_ANY, 'On')
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
25 self.topframe.Bind(wx.EVT_MENU, self.plugin_toggle, self.toggle)
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
26 self.toggle.Check(True)
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
27
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
28 def plugin_toggle(self, evt):
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
29 if self.toggle.IsChecked() == False: self.canvas.Disconnect(-1, -1, wx.wxEVT_MOUSEWHEEL)
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
30 if self.toggle.IsChecked() == True:
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
31 self.canvas.Bind(wx.EVT_MOUSEWHEEL, self.MouseWheel)
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
32
120
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
33 def plugin_enabled(self):
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
34 try: self.canvas = component.get('map').canvas
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
35 except: self.canvas = open_rpg.get_component('map').canvas
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
36 self.canvas.Bind(wx.EVT_MOUSEWHEEL, self.MouseWheel)
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
37
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
38 def MouseWheel(self, evt):
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
39 if evt.CmdDown():
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
40 if evt.GetWheelRotation() > 0: self.canvas.on_zoom_in(None)
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
41 elif evt.GetWheelRotation() < 0: self.canvas.on_zoom_out(None)
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
42 else: pass
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
43 else: self.canvas.on_scroll(evt)
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
44
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
45 def plugin_disabled(self):
195
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
46 try: self.canvas.Disconnect(-1, -1, wx.wxEVT_MOUSEWHEEL)
b633f4c64aae Traipse Alpha 'OpenRPG' {100219-00}
sirebral
parents: 120
diff changeset
47 except: pass
120
d86e762a994f Traipse Alpha 'OpenRPG' {091029-00}
sirebral
parents:
diff changeset
48