X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c05e07cb8c5a4e4baa29369a49fd87ac0f1ea3a9..8dba4c72300eafb6b35eaf754c379a72416bfbdd:/src/cocoa/NSView.mm diff --git a/src/cocoa/NSView.mm b/src/cocoa/NSView.mm index 72c6899868..5c4b2a5680 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,12 @@ #include "wx/window.h" #endif // WX_PRECOMP -#include "wx/cocoa/ObjcPose.h" +#include "wx/cocoa/objc/objc_uniquifying.h" #include "wx/cocoa/NSView.h" -#import #import #import +#include "wx/cocoa/objc/NSView.h" // ---------------------------------------------------------------------------- // globals @@ -54,30 +54,10 @@ 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; -- (void)resetCursorRects; -@end // wxPoserNSView -WX_IMPLEMENT_POSER(wxPoserNSView); -@implementation wxPoserNSView : NSView +@implementation WXNSView : NSView - (BOOL)acceptsFirstMouse:(NSEvent *)theEvent { @@ -186,20 +166,35 @@ WX_IMPLEMENT_POSER(wxPoserNSView); [super resetCursorRects]; } -@end // implementation wxPoserNSView +- (void)viewDidMoveToWindow +{ + wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa(self); + if( !win || !win->Cocoa_viewDidMoveToWindow() ) + [super viewDidMoveToWindow]; +} -@interface wxNSViewNotificationObserver : NSObject +- (void)viewWillMoveToWindow:(NSWindow *)newWindow { + wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa(self); + if( !win || !win->Cocoa_viewWillMoveToWindow(newWindow) ) + [super viewWillMoveToWindow:newWindow]; } -// FIXME: Initializing like this is a really bad idea. If for some reason -// we ever require posing as an NSObject we won't be able to since an instance -// will have already been created here. Of course, catching messages for -// NSObject seems like a LOT of overkill, so I doubt we ever will anyway! -void *wxCocoaNSView::sm_cocoaObserver = [[wxNSViewNotificationObserver alloc] init]; +@end // implementation WXNSView +WX_IMPLEMENT_GET_OBJC_CLASS(WXNSView,NSView) + +// ============================================================================ +// @class wxNSViewNotificationObserver +// ============================================================================ + +@interface wxNSViewNotificationObserver : NSObject +{ +} - (void)notificationFrameChanged: (NSNotification *)notification; +- (void)synthesizeMouseMovedForView: (NSView *)theView; @end // interface wxNSViewNotificationObserver +WX_DECLARE_GET_OBJC_CLASS(wxNSViewNotificationObserver,NSObject) @implementation wxNSViewNotificationObserver : NSObject @@ -210,5 +205,15 @@ void *wxCocoaNSView::sm_cocoaObserver = [[wxNSViewNotificationObserver alloc] in win->Cocoa_FrameChanged(); } +- (void)synthesizeMouseMovedForView: (NSView *)theView +{ + wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa(theView); + wxCHECK_RET(win,wxT("synthesizeMouseMovedForView received but no wxWindow exists")); + win->Cocoa_synthesizeMouseMoved(); +} + @end // implementation wxNSViewNotificationObserver +WX_IMPLEMENT_GET_OBJC_CLASS(wxNSViewNotificationObserver,NSObject) + +void *wxCocoaNSView::sm_cocoaObserver = [[WX_GET_OBJC_CLASS(wxNSViewNotificationObserver) alloc] init];