]> git.mxchange.org Git - flightgear.git/blob - src/GUI/CocoaMouseCursor.mm
03798d4f05861d1db05586a9ce2f203d710d1d31
[flightgear.git] / src / GUI / CocoaMouseCursor.mm
1 // CocoaMouseCursor.cxx - mouse cursor using Cocoa APIs
2
3 // Copyright (C) 2013 James Turner <zakalawe@mac.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19
20 #include "CocoaMouseCursor.hxx"
21
22 #include <Cocoa/Cocoa.h>
23 #include <map>
24
25 #include <Main/globals.hxx>
26
27 class CocoaMouseCursor::CocoaMouseCursorPrivate
28 {
29 public:
30     Cursor activeCursorKey;
31     
32     typedef std::map<Cursor, NSCursor*> CursorMap;
33     CursorMap cursors;
34 };
35
36 NSCursor* cocoaCursorForKey(FGMouseCursor::Cursor aKey)
37 {
38     NSImage* img = nil;
39     
40     NSString* path = [NSString stringWithCString:globals->get_fg_root().c_str()
41                                             encoding:NSUTF8StringEncoding];
42     path = [path stringByAppendingPathComponent:@"gui"];
43     
44     switch (aKey) {
45     case FGMouseCursor::CURSOR_HAND: return [NSCursor pointingHandCursor];
46     case FGMouseCursor::CURSOR_CROSSHAIR: return [NSCursor crosshairCursor];
47     case FGMouseCursor::CURSOR_IBEAM: return [NSCursor IBeamCursor];
48     
49     // FIXME - use a proper left-right cursor here.
50     case FGMouseCursor::CURSOR_LEFT_RIGHT: return [NSCursor resizeLeftRightCursor];
51             
52     case FGMouseCursor::CURSOR_SPIN_CW:
53         path = [path stringByAppendingPathComponent:@"cursor-spin-cw.png"];
54         img = [[NSImage alloc] initWithContentsOfFile:path];
55         return [[NSCursor alloc] initWithImage:img hotSpot:NSMakePoint(16,16)];
56             
57     case FGMouseCursor::CURSOR_SPIN_CCW:
58         path = [path stringByAppendingPathComponent:@"cursor-spin-cw.png"];
59         img = [[NSImage alloc] initWithContentsOfFile:path];
60         return [[NSCursor alloc] initWithImage:img hotSpot:NSMakePoint(16,16)];
61             
62     default: return [NSCursor arrowCursor];
63     }
64
65 }
66
67 CocoaMouseCursor::CocoaMouseCursor() :
68     d(new CocoaMouseCursorPrivate)
69 {
70     
71 }
72
73 CocoaMouseCursor::~CocoaMouseCursor()
74 {
75     
76     
77 }
78
79
80 void CocoaMouseCursor::setCursor(Cursor aCursor)
81 {
82     if (aCursor == d->activeCursorKey) {
83         return;
84     }
85     
86     d->activeCursorKey = aCursor;
87     if (d->cursors.find(aCursor) == d->cursors.end()) {
88         d->cursors[aCursor] = cocoaCursorForKey(aCursor);
89         [d->cursors[aCursor] retain];
90     }
91     
92     [d->cursors[aCursor] set];
93 }
94
95 void CocoaMouseCursor::setCursorVisible(bool aVis)
96 {
97     if (aVis) {
98         [NSCursor unhide];
99     } else {
100         [NSCursor hide];
101     }
102 }
103
104 void CocoaMouseCursor::hideCursorUntilMouseMove()
105 {
106     [NSCursor setHiddenUntilMouseMoves:YES];
107 }
108
109 void CocoaMouseCursor::mouseMoved()
110 {
111     // no-op
112 }