dropSource = wxDropSource(self)
dropSource.SetData(data)
self.log.WriteText("Begining DragDrop\n")
- result = dropSource.DoDragDrop(true)
+ result = dropSource.DoDragDrop(wxDrag_AllowMove)
self.log.WriteText("DragDrop completed: %d\n" % result)
if result == wxDragMove:
self.lines = []
EVT_ERASE_BACKGROUND(self, self.OnEraseBackground)
EVT_SIZE(self, self.OnSize)
EVT_PAINT(self, self.OnPaint)
- #EVT_LEFT_DOWN(self, self.OnMouseDown) # needs fixing...
- #EVT_LEFT_UP(self, self.OnMouseUp)
- #EVT_MOTION(self, self.OnMouseMotion)
+ EVT_LEFT_DOWN(self, self.OnMouseDown) # needs fixing...
+ EVT_LEFT_UP(self, self.OnMouseUp)
+ EVT_MOTION(self, self.OnMouseMotion)
def OnEraseBackground(self, event):
pass # Do nothing, to avoid flashing on MSW.
if evt.Dragging() and evt.LeftIsDown():
self.x, self.y = self.lastx, self.lasty
self.x, self.y = evt.GetPosition()
- self.Refresh()
+ self.Refresh(false)
wxPoint(20, 30))
wxStaticText(self, -1, "Is this yellow?",
- wxPoint(20, 70)).SetBackgroundColour(wxNamedColour('Yellow'))
+ wxPoint(20, 70)).SetBackgroundColour('Yellow')
str = "This is a different font."
text = wxStaticText(self, -1, str, wxPoint(20, 100))