+ # DaD
+ def OnLeftDownOnButton(self, evt):
+ self.posDown = evt.GetPosition()
+ self.idDown = evt.GetId()
+ self.btnDown = evt.GetEventObject()
+ evt.Skip()
+
+ def OnMotionOnButton(self, evt):
+ # Detect dragging
+ if evt.Dragging() and evt.LeftIsDown():
+ d = evt.GetPosition() - self.posDown
+ if max(abs(d[0]), abs(d[1])) >= 5:
+ if self.btnDown.HasCapture():
+ # Generate up event to release mouse
+ evt = wx.MouseEvent(wx.EVT_LEFT_UP.typeId)
+ evt.SetId(self.idDown)
+ # Set flag to prevent normal button operation this time
+ self.drag = True
+ self.btnDown.ProcessEvent(evt)
+ self.StartDrag()
+ evt.Skip()
+
+ def StartDrag(self):