2 Simple DirectMedia Layer
3 Copyright (C) 1997-2011 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;
48 NSAutoreleasePool *pool;
49 NSPasteboard *pasteboard;
50 NSString *format = GetTextFormat(_this);
52 pool = [[NSAutoreleasePool alloc] init];
54 pasteboard = [NSPasteboard generalPasteboard];
55 data->clipboard_count = [pasteboard declareTypes:[NSArray arrayWithObject:format] owner:nil];
56 [pasteboard setString:[NSString stringWithUTF8String:text] forType:format];
64 Cocoa_GetClipboardText(_THIS)
66 NSAutoreleasePool *pool;
67 NSPasteboard *pasteboard;
68 NSString *format = GetTextFormat(_this);
72 pool = [[NSAutoreleasePool alloc] init];
74 pasteboard = [NSPasteboard generalPasteboard];
75 available = [pasteboard availableTypeFromArray: [NSArray arrayWithObject:format]];
76 if ([available isEqualToString:format]) {
80 string = [pasteboard stringForType:format];
84 utf8 = [string UTF8String];
86 text = SDL_strdup(utf8);
88 text = SDL_strdup("");
97 Cocoa_HasClipboardText(_THIS)
99 SDL_bool result = SDL_FALSE;
100 char *text = Cocoa_GetClipboardText(_this);
102 result = (SDL_strlen(text)>0) ? SDL_TRUE : SDL_FALSE;
109 Cocoa_CheckClipboardUpdate(struct SDL_VideoData * data)
111 NSAutoreleasePool *pool;
112 NSPasteboard *pasteboard;
115 pool = [[NSAutoreleasePool alloc] init];
117 pasteboard = [NSPasteboard generalPasteboard];
118 count = [pasteboard changeCount];
119 if (count != data->clipboard_count) {
120 if (data->clipboard_count) {
121 SDL_SendClipboardUpdate();
123 data->clipboard_count = count;
129 #endif /* SDL_VIDEO_DRIVER_COCOA */
131 /* vi: set ts=4 sw=4 expandtab: */