]> git.mxchange.org Git - flightgear.git/blob - src/Scripting/ClipboardCocoa.mm
Fix stray back-button in Qt launcher
[flightgear.git] / src / Scripting / ClipboardCocoa.mm
1 // Cocoa implementation of clipboard access for Nasal
2 //
3 // Copyright (C) 2012  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
21 #include "NasalClipboard.hxx"
22
23 #include <simgear/debug/logstream.hxx>
24
25 #include <AppKit/NSPasteboard.h>
26 #include <Foundation/NSArray.h>
27
28 #include <GUI/CocoaHelpers_private.h>
29
30 /**
31  */
32 class ClipboardCocoa: public NasalClipboard
33 {
34   public:
35
36     /**
37      * Get clipboard contents as text
38      */
39     virtual std::string getText(Type type)
40     {
41       CocoaAutoreleasePool pool;
42       
43       if( type == CLIPBOARD )
44       {
45        NSPasteboard* pboard = [NSPasteboard generalPasteboard];
46        #if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050
47          NSString* nstext = [pboard stringForType:NSStringPboardType];
48        #else // > 10.5
49          NSString* nstext = [pboard stringForType:NSPasteboardTypeString];
50        #endif // MAC_OS_X_VERSION_MIN_REQUIRED
51        return stdStringFromCocoa(nstext);
52       }
53       
54       return "";
55     }
56
57     /**
58      * Set clipboard contents as text
59      */
60     virtual bool setText(const std::string& text, Type type)
61     {
62       CocoaAutoreleasePool pool;
63       
64       if( type == CLIPBOARD )
65       {
66         NSPasteboard* pboard = [NSPasteboard generalPasteboard];
67         NSString* nstext = stdStringToCocoa(text);
68         #if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050
69           NSString* type = NSStringPboardType;
70           NSArray* types = [NSArray arrayWithObjects: type, nil];
71           [pboard declareTypes:types owner:nil];
72           [pboard setString:nstext forType: NSStringPboardType];
73         #else // > 10.5
74           NSString* type = NSPasteboardTypeString;
75           [pboard clearContents];
76           [pboard setString:nstext forType:NSPasteboardTypeString];
77         #endif // MAC_OS_X_VERSION_MIN_REQUIRED
78         return true;
79       }
80       
81       return false;
82     }
83
84   protected:
85
86     std::string _selection;
87 };
88
89 //------------------------------------------------------------------------------
90 NasalClipboard::Ptr NasalClipboard::create()
91 {
92   return NasalClipboard::Ptr(new ClipboardCocoa);
93 }