Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
a007a286
Commit
a007a286
authored
Jul 08, 2010
by
Sam Lantinga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Mac OS X implementation of clipboard support
parent
3a942c6d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
161 additions
and
0 deletions
+161
-0
SDL_cocoaclipboard.h
src/video/cocoa/SDL_cocoaclipboard.h
+33
-0
SDL_cocoaclipboard.m
src/video/cocoa/SDL_cocoaclipboard.m
+123
-0
SDL_cocoavideo.h
src/video/cocoa/SDL_cocoavideo.h
+1
-0
SDL_cocoavideo.m
src/video/cocoa/SDL_cocoavideo.m
+4
-0
No files found.
src/video/cocoa/SDL_cocoaclipboard.h
0 → 100644
View file @
a007a286
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2010 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
#ifndef _SDL_cocoaclipboard_h
#define _SDL_cocoaclipboard_h
extern
int
Cocoa_SetClipboardText
(
_THIS
,
const
char
*
text
);
extern
char
*
Cocoa_GetClipboardText
(
_THIS
);
extern
SDL_bool
Cocoa_HasClipboardText
(
_THIS
);
#endif
/* _SDL_cocoaclipboard_h */
/* vi: set ts=4 sw=4 expandtab: */
src/video/cocoa/SDL_cocoaclipboard.m
0 → 100644
View file @
a007a286
/*
SDL
-
Simple
DirectMedia
Layer
Copyright
(
C
)
1997
-
2010
Sam
Lantinga
This
library
is
free
software
;
you
can
redistribute
it
and
/
or
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
License
as
published
by
the
Free
Software
Foundation
;
either
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
but
WITHOUT
ANY
WARRANTY
;
without
even
the
implied
warranty
of
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
Lesser
General
Public
License
for
more
details
.
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
License
along
with
this
library
;
if
not
,
write
to
the
Free
Software
Foundation
,
Inc
.,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
USA
Sam
Lantinga
slouken
@
libsdl
.
org
*/
#include
"SDL_config.h"
#include
"SDL_cocoavideo.h"
int
Cocoa
_
SetClipboardText
(
_
THIS
,
const
char
*
text
)
{
SDL
_
VideoData
*
data
=
(
SDL
_
VideoData
*
)
_
this
->
driverdata
;
NSAutoreleasePool
*
pool
;
NSPasteboard
*
pasteboard
;
NSString
*
format
;
if
(
data
->
osversion
>=
0
x1060
)
{
format
=
NSPasteboardTypeString
;
}
else
{
format
=
NSStringPboardType
;
}
pool
=
[[
NSAutoreleasePool
alloc
]
init
]
;
pasteboard
=
[
NSPasteboard
generalPasteboard
]
;
[
pasteboard
declareTypes
:
[
NSArray
arrayWithObject
:
format
]
owner
:
nil
]
;
[
pasteboard
setString
:
[
NSString
stringWithUTF8String
:
text
]
forType
:
format
]
;
[
pool
release
]
;
return
0
;
}
char
*
Cocoa
_
GetClipboardText
(
_
THIS
)
{
SDL
_
VideoData
*
data
=
(
SDL
_
VideoData
*
)
_
this
->
driverdata
;
NSAutoreleasePool
*
pool
;
NSPasteboard
*
pasteboard
;
NSString
*
format
;
NSString
*
available
;
char
*
text
;
if
(
data
->
osversion
>=
0
x1060
)
{
format
=
NSPasteboardTypeString
;
}
else
{
format
=
NSStringPboardType
;
}
pool
=
[[
NSAutoreleasePool
alloc
]
init
]
;
pasteboard
=
[
NSPasteboard
generalPasteboard
]
;
available
=
[
pasteboard
availableTypeFromArray
:
[
NSArray
arrayWithObject
:
format
]]
;
if
([
available
isEqualToString
:
format
])
{
NSString
*
string
;
const
char
*
utf8
;
string
=
[
pasteboard
stringForType
:
format
]
;
if
(
string
==
nil
)
{
utf8
=
""
;
}
else
{
utf8
=
[
string
UTF8String
]
;
}
text
=
SDL
_
strdup
(
utf8
)
;
}
else
{
text
=
SDL
_
strdup
(
""
)
;
}
[
pool
release
]
;
return
text
;
}
SDL
_
bool
Cocoa
_
HasClipboardText
(
_
THIS
)
{
SDL
_
VideoData
*
data
=
(
SDL
_
VideoData
*
)
_
this
->
driverdata
;
NSAutoreleasePool
*
pool
;
NSPasteboard
*
pasteboard
;
NSString
*
format
;
NSString
*
available
;
SDL
_
bool
result
;
if
(
data
->
osversion
>=
0
x1060
)
{
format
=
NSPasteboardTypeString
;
}
else
{
format
=
NSStringPboardType
;
}
pool
=
[[
NSAutoreleasePool
alloc
]
init
]
;
pasteboard
=
[
NSPasteboard
generalPasteboard
]
;
available
=
[
pasteboard
availableTypeFromArray
:
[
NSArray
arrayWithObject
:
format
]]
;
if
([
available
isEqualToString
:
format
])
{
result
=
SDL
_
TRUE
;
}
else
{
result
=
SDL
_
FALSE
;
}
[
pool
release
]
;
return
result
;
}
/*
vi
:
set
ts
=
4
sw
=
4
expandtab
:
*/
src/video/cocoa/SDL_cocoavideo.h
View file @
a007a286
...
...
@@ -32,6 +32,7 @@
#include "SDL_keysym.h"
#include "../SDL_sysvideo.h"
#include "SDL_cocoaclipboard.h"
#include "SDL_cocoaevents.h"
#include "SDL_cocoakeyboard.h"
#include "SDL_cocoamodes.h"
...
...
src/video/cocoa/SDL_cocoavideo.m
View file @
a007a286
...
...
@@ -108,6 +108,10 @@ Cocoa_CreateDevice(int devindex)
device
->
StopTextInput
=
Cocoa_StopTextInput
;
device
->
SetTextInputRect
=
Cocoa_SetTextInputRect
;
device
->
SetClipboardText
=
Cocoa_SetClipboardText
;
device
->
GetClipboardText
=
Cocoa_GetClipboardText
;
device
->
HasClipboardText
=
Cocoa_HasClipboardText
;
device
->
free
=
Cocoa_DeleteDevice
;
return
device
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment