+ bool ret = GetEventHandler()->ProcessEvent(event);
+ m_isInPaint = FALSE;
+ return ret;
+}
+
+void wxWindowCocoa::InitMouseEvent(wxMouseEvent& event, WX_NSEvent cocoaEvent)
+{
+ NSView *nsview = m_dummyNSView?m_dummyNSView:m_cocoaNSView;
+ wxASSERT_MSG([nsview window]==[cocoaEvent window],"Mouse event for different NSWindow");
+ NSPoint cocoaPoint = [nsview convertPoint:[(NSEvent*)cocoaEvent locationInWindow] fromView:nil];
+ NSRect cocoaRect = [nsview frame];
+ const wxPoint &clientorigin = GetClientAreaOrigin();
+ event.m_x = (wxCoord)cocoaPoint.x - clientorigin.x;
+ event.m_y = (wxCoord)(cocoaRect.size.height - cocoaPoint.y) - clientorigin.y;
+
+ event.m_shiftDown = [cocoaEvent modifierFlags] & NSShiftKeyMask;
+ event.m_controlDown = [cocoaEvent modifierFlags] & NSControlKeyMask;
+ event.m_altDown = [cocoaEvent modifierFlags] & NSAlternateKeyMask;
+ event.m_metaDown = [cocoaEvent modifierFlags] & NSCommandKeyMask;
+
+ // TODO: set timestamp?
+ event.SetEventObject(this);
+ event.SetId(GetId());
+}
+
+bool wxWindowCocoa::Cocoa_mouseMoved(WX_NSEvent theEvent)
+{
+ wxMouseEvent event(wxEVT_MOTION);
+ InitMouseEvent(event,theEvent);
+ wxLogDebug("Mouse Drag @%d,%d",event.m_x,event.m_y);
+ return GetEventHandler()->ProcessEvent(event);
+}
+
+bool wxWindowCocoa::Cocoa_mouseEntered(WX_NSEvent theEvent)
+{
+ return false;
+}
+
+bool wxWindowCocoa::Cocoa_mouseExited(WX_NSEvent theEvent)
+{
+ return false;
+}
+
+bool wxWindowCocoa::Cocoa_mouseDown(WX_NSEvent theEvent)
+{
+ wxMouseEvent event([theEvent clickCount]<2?wxEVT_LEFT_DOWN:wxEVT_LEFT_DCLICK);
+ InitMouseEvent(event,theEvent);
+ wxLogDebug("Mouse Down @%d,%d num clicks=%d",event.m_x,event.m_y,[theEvent clickCount]);
+ return GetEventHandler()->ProcessEvent(event);
+}
+
+bool wxWindowCocoa::Cocoa_mouseDragged(WX_NSEvent theEvent)
+{
+ wxMouseEvent event(wxEVT_MOTION);
+ InitMouseEvent(event,theEvent);
+ event.m_leftDown = true;
+ wxLogDebug("Mouse Drag @%d,%d",event.m_x,event.m_y);