Re: Why does wx.Window.CaptureMouse() send EVT_PAINT

2006-12-12 Thread Bill Jackson
Tim Roberts wrote the following on 12/09/2006 08:27 PM: > The source code could answer that question for sure, but I doubt that it is > CaptureMouse doing it, and I know the SetCapture API (which it eventually > calls) does not. Is it possible that your clicking caused some part of the > app to be

Re: Why does wx.Window.CaptureMouse() send EVT_PAINT

2006-12-09 Thread Tim Roberts
Bill Jackson <[EMAIL PROTECTED]> wrote: > >It seems that the CaptureMouse method sends an EVT_PAINT handler. The >documentation does not mention this...is it somewhere else? Could >someone explain why this handler is sent out? The source code could answer that question for sure, but I doubt th

Why does wx.Window.CaptureMouse() send EVT_PAINT

2006-12-07 Thread Bill Jackson
It seems that the CaptureMouse method sends an EVT_PAINT handler. The documentation does not mention this...is it somewhere else? Could someone explain why this handler is sent out? Also, I've seen: def OnMouseDown(self, evt): self.CaptureMouse() self.x, self.y = self.l