2 Simple DirectMedia Layer
3 Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
21 #include "SDL_config.h"
23 #if SDL_VIDEO_DRIVER_COCOA
25 #include "SDL_cocoavideo.h"
26 #include "../../events/SDL_clipboardevents_c.h"
31 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
32 SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
34 if (data->osversion >= 0x1060) {
35 return NSPasteboardTypeString;
37 return NSStringPboardType;
40 return NSStringPboardType;
45 Cocoa_SetClipboardText(_THIS, const char *text)
47 SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
49 NSPasteboard *pasteboard;
50 NSString *format = GetTextFormat(_this);
53 pasteboard = [NSPasteboard generalPasteboard];
54 data->clipboard_count = [pasteboard declareTypes:[NSArray arrayWithObject:format] owner:nil];
55 [pasteboard setString:[NSString stringWithUTF8String:text] forType:format];
62 Cocoa_GetClipboardText(_THIS)
64 NSPasteboard *pasteboard;
65 NSString *format = GetTextFormat(_this);
70 pasteboard = [NSPasteboard generalPasteboard];
71 available = [pasteboard availableTypeFromArray: [NSArray arrayWithObject:format]];
72 if ([available isEqualToString:format]) {
76 string = [pasteboard stringForType:format];
80 utf8 = [string UTF8String];
82 text = SDL_strdup(utf8);
84 text = SDL_strdup("");
92 Cocoa_HasClipboardText(_THIS)
94 SDL_bool result = SDL_FALSE;
95 char *text = Cocoa_GetClipboardText(_this);
97 result = (SDL_strlen(text)>0) ? SDL_TRUE : SDL_FALSE;
104 Cocoa_CheckClipboardUpdate(struct SDL_VideoData * data)
106 NSPasteboard *pasteboard;
110 pasteboard = [NSPasteboard generalPasteboard];
111 count = [pasteboard changeCount];
112 if (count != data->clipboard_count) {
113 if (data->clipboard_count) {
114 SDL_SendClipboardUpdate();
116 data->clipboard_count = count;
121 #endif /* SDL_VIDEO_DRIVER_COCOA */
123 /* vi: set ts=4 sw=4 expandtab: */