1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use std::ffi::{CString, CStr};
use libc::c_void;
use libc::c_char;
use crate::get_error;
use crate::sys;
pub struct ClipboardUtil {
_subsystem: crate::VideoSubsystem
}
impl crate::VideoSubsystem {
#[inline]
pub fn clipboard(&self) -> ClipboardUtil {
ClipboardUtil {
_subsystem: self.clone()
}
}
}
impl ClipboardUtil {
pub fn set_clipboard_text(&self, text: &str) -> Result<(), String> {
unsafe {
let text = CString::new(text).unwrap();
let result = sys::SDL_SetClipboardText(text.as_ptr() as *const c_char);
if result != 0 {
Err(get_error())
} else {
Ok(())
}
}
}
pub fn clipboard_text(&self) -> Result<String, String> {
unsafe {
let buf = sys::SDL_GetClipboardText();
if buf.is_null() {
Err(get_error())
} else {
let s = CStr::from_ptr(buf as *const _).to_str().unwrap().to_owned();
sys::SDL_free(buf as *mut c_void);
Ok(s)
}
}
}
pub fn has_clipboard_text(&self) -> bool {
unsafe { sys::SDL_HasClipboardText() == sys::SDL_bool::SDL_TRUE }
}
}