]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/lib/floatcanvas/Utilities/GUI.py
3 Part of the floatcanvas.Utilities package.
5 This module contains assorted GUI-related utilities that can be used
10 RubberBandBox: used to draw a RubberBand Box on the screen
14 from floatcanvas
import FloatCanvas
18 Class to provide a rubber band box that can be drawn on a Window
22 def __init__(self
, Canvas
, CallBack
, Tol
=5):
27 RubberBandBox(Canvas, CallBack)
29 Canvas: the FloatCanvas you want the Rubber band box to be used on
31 CallBack: is the method you want called when the mouse is
32 released. That method will be called, passing in a rect
33 parameter, where rect is: (Point, WH) of the rect in
36 Tol: The tolerance for the smallest rectangle allowed. defaults
41 Enable() : Enables the Rubber Band Box (Binds the events)
43 Disable() : Enables the Rubber Band Box (Unbinds the events)
47 CallBack: The callback function, if it's replaced you need to
53 self
.CallBack
= CallBack
58 self
.StartPointWorld
= None
64 Called when you want the rubber band box to be enabled
69 self
.Canvas
.Bind(FloatCanvas
.EVT_MOTION
, self
.OnMove
)
70 self
.Canvas
.Bind(FloatCanvas
.EVT_LEFT_DOWN
, self
.OnLeftDown
)
71 self
.Canvas
.Bind(FloatCanvas
.EVT_LEFT_UP
, self
.OnLeftUp
)
75 Called when you don't want the rubber band box to be enabled
80 self
.Canvas
.Unbind(FloatCanvas
.EVT_MOTION
)
81 self
.Canvas
.Unbind(FloatCanvas
.EVT_LEFT_DOWN
)
82 self
.Canvas
.Unbind(FloatCanvas
.EVT_LEFT_UP
)
84 def OnMove(self
, event
):
86 x
, y
= self
.StartPoint
87 Cornerx
, Cornery
= event
.GetPosition()
88 w
, h
= ( Cornerx
- x
, Cornery
- y
)
89 if abs(w
) > self
.Tol
and abs(h
) > self
.Tol
:
91 dc
= wx
.ClientDC(self
.Canvas
)
92 dc
.SetPen(wx
.Pen('WHITE', 2, wx
.SHORT_DASH
))
93 dc
.SetBrush(wx
.TRANSPARENT_BRUSH
)
94 dc
.SetLogicalFunction(wx
.XOR
)
96 dc
.DrawRectangle(*self
.RBRect
)
97 self
.RBRect
= (x
, y
, w
, h
)
98 dc
.DrawRectangle(*self
.RBRect
)
99 event
.Skip() # skip so that other events can catch these
101 def OnLeftDown(self
, event
):
104 self
.StartPoint
= event
.GetPosition()
105 self
.StartPointWorld
= event
.Coords
107 def OnLeftUp(self
, event
):
112 WH
= event
.Coords
- self
.StartPointWorld
113 wx
.CallAfter(self
.CallBack
, (self
.StartPointWorld
, WH
))
115 self
.StartPointWorld
= None