]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/NSScroller.mm
Misc XRC format docs corrections.
[wxWidgets.git] / src / cocoa / NSScroller.mm
CommitLineData
5369a054 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/cocoa/NSScroller.mm
5369a054
DE
3// Purpose: wxCocoaNSScroller
4// Author: David Elliott
5// Modified by:
6// Created: 2004/04/27
5369a054
DE
7// Copyright: (c) 2004 David Elliott
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#include "wx/wxprec.h"
12#ifndef WX_PRECOMP
13 #include "wx/log.h"
14#endif // WX_PRECOMP
15
e7e1ad7d
DE
16#include "wx/cocoa/objc/objc_uniquifying.h"
17
5369a054
DE
18#include "wx/cocoa/NSScroller.h"
19#import <AppKit/NSScroller.h>
20
21WX_IMPLEMENT_OBJC_INTERFACE_HASHMAP(NSScroller)
22
23// ============================================================================
24// @class wxNSScrollerTarget
25// ============================================================================
26@interface wxNSScrollerTarget : NSObject
27{
28}
29
30- (void)wxNSScrollerAction: (id)sender;
31@end // wxNSScrollerTarget
e7e1ad7d 32WX_DECLARE_GET_OBJC_CLASS(wxNSScrollerTarget,NSObject)
5369a054
DE
33
34@implementation wxNSScrollerTarget : NSObject
35- (void)wxNSScrollerAction: (id)sender
36{
37 wxCocoaNSScroller *scroller = wxCocoaNSScroller::GetFromCocoa(sender);
38 wxCHECK_RET(scroller,wxT("wxNSScrollerAction received without associated wx object"));
39 scroller->Cocoa_wxNSScrollerAction();
40}
41
42@end // implementation wxNSScrollerTarget
e7e1ad7d 43WX_IMPLEMENT_GET_OBJC_CLASS(wxNSScrollerTarget,NSObject)
5369a054
DE
44
45// ============================================================================
46// class wxCocoaNSScroller
47// ============================================================================
e7e1ad7d 48const wxObjcAutoRefFromAlloc<struct objc_object*> wxCocoaNSScroller::sm_cocoaTarget = [[WX_GET_OBJC_CLASS(wxNSScrollerTarget) alloc] init];
5369a054
DE
49
50void wxCocoaNSScroller::AssociateNSScroller(WX_NSScroller cocoaNSScroller)
51{
52 if(cocoaNSScroller)
53 {
54 sm_cocoaHash.insert(wxCocoaNSScrollerHash::value_type(cocoaNSScroller,this));
55 [cocoaNSScroller setTarget: sm_cocoaTarget];
56 [cocoaNSScroller setAction: @selector(wxNSScrollerAction:)];
57 }
58}
59