X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/065e208ec09e3d08d51d9604497f92f53c210f93..5d0fac27c4b2151b1ff3689cdb602bbaf10a4003:/src/cocoa/NSView.mm?ds=sidebyside diff --git a/src/cocoa/NSView.mm b/src/cocoa/NSView.mm index 7a4d133ff4..b9bc519574 100644 --- a/src/cocoa/NSView.mm +++ b/src/cocoa/NSView.mm @@ -4,7 +4,7 @@ // Author: David Elliott // Modified by: // Created: 2003/02/15 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott // Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// @@ -22,12 +22,11 @@ #include "wx/window.h" #endif // WX_PRECOMP -#include "wx/cocoa/ObjcPose.h" #include "wx/cocoa/NSView.h" -#import #import #import +#include "wx/cocoa/objc/NSView.h" // ---------------------------------------------------------------------------- // globals @@ -54,29 +53,19 @@ void wxCocoaNSView::DisassociateNSView(WX_NSView cocoaNSView) } // ============================================================================ -// @class wxPoserNSView +// @class WXNSView // ============================================================================ -@interface wxPoserNSView : NSView -{ -} -- (void)drawRect: (NSRect)rect; -- (void)mouseDown:(NSEvent *)theEvent; -- (void)mouseDragged:(NSEvent *)theEvent; -- (void)mouseUp:(NSEvent *)theEvent; -- (void)mouseMoved:(NSEvent *)theEvent; -- (void)mouseEntered:(NSEvent *)theEvent; -- (void)mouseExited:(NSEvent *)theEvent; -- (void)rightMouseDown:(NSEvent *)theEvent; -- (void)rightMouseDragged:(NSEvent *)theEvent; -- (void)rightMouseUp:(NSEvent *)theEvent; -- (void)otherMouseDown:(NSEvent *)theEvent; -- (void)otherMouseDragged:(NSEvent *)theEvent; -- (void)otherMouseUp:(NSEvent *)theEvent; -@end // wxPoserNSView +@implementation WXNSView : NSView -WX_IMPLEMENT_POSER(wxPoserNSView); -@implementation wxPoserNSView : NSView +- (BOOL)acceptsFirstMouse:(NSEvent *)theEvent +{ + bool acceptsFirstMouse = false; + wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa(self); + if(!win || !win->Cocoa_acceptsFirstMouse(acceptsFirstMouse, theEvent)) + acceptsFirstMouse = [super acceptsFirstMouse:theEvent]; + return acceptsFirstMouse; +} - (void)drawRect: (NSRect)rect { @@ -169,7 +158,14 @@ WX_IMPLEMENT_POSER(wxPoserNSView); [super otherMouseUp:theEvent]; } -@end // implementation wxPoserNSView +- (void)resetCursorRects +{ + wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa(self); + if( !win || !win->Cocoa_resetCursorRects() ) + [super resetCursorRects]; +} + +@end // implementation WXNSView @interface wxNSViewNotificationObserver : NSObject {