2019-11-17 05:40:03 +03:00
|
|
|
module clipboard
|
|
|
|
|
|
|
|
#include <libkern/OSAtomic.h>
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
#flag -framework Cocoa
|
2021-04-19 19:01:47 +03:00
|
|
|
#include "@VEXEROOT/vlib/clipboard/clipboard_darwin.m"
|
2021-03-04 11:49:40 +03:00
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// Clipboard represents a system clipboard.
|
|
|
|
//
|
|
|
|
// System "copy" and "paste" actions utilize the clipboard for temporary storage.
|
2022-05-16 08:45:40 +03:00
|
|
|
[heap]
|
2020-01-09 14:00:39 +03:00
|
|
|
pub struct Clipboard {
|
2020-11-03 01:00:29 +03:00
|
|
|
pb voidptr
|
|
|
|
last_cb_serial i64
|
2019-12-07 15:22:28 +03:00
|
|
|
mut:
|
2021-01-21 14:45:59 +03:00
|
|
|
foo int // TODO remove, for mut hack
|
2019-11-17 05:40:03 +03:00
|
|
|
}
|
|
|
|
|
2020-11-20 03:08:39 +03:00
|
|
|
fn C.darwin_new_pasteboard() voidptr
|
2021-01-09 12:37:40 +03:00
|
|
|
|
2022-04-15 18:25:45 +03:00
|
|
|
fn C.darwin_get_pasteboard_text(voidptr) &u8
|
2021-01-09 12:37:40 +03:00
|
|
|
|
2021-01-31 15:57:06 +03:00
|
|
|
fn C.darwin_set_pasteboard_text(voidptr, string) bool
|
2020-11-20 03:08:39 +03:00
|
|
|
|
2020-11-03 01:00:29 +03:00
|
|
|
fn new_clipboard() &Clipboard {
|
2019-11-17 05:40:03 +03:00
|
|
|
cb := &Clipboard{
|
2021-01-09 12:37:40 +03:00
|
|
|
pb: C.darwin_new_pasteboard() // pb
|
2019-11-17 05:40:03 +03:00
|
|
|
}
|
|
|
|
return cb
|
|
|
|
}
|
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// check_availability returns true if the clipboard is ready to be used.
|
2021-03-04 11:49:40 +03:00
|
|
|
pub fn (cb &Clipboard) check_availability() bool {
|
2019-11-17 05:40:03 +03:00
|
|
|
return cb.pb != C.NULL
|
|
|
|
}
|
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// clear empties the clipboard contents.
|
2021-03-04 11:49:40 +03:00
|
|
|
pub fn (mut cb Clipboard) clear() {
|
2019-12-07 15:22:28 +03:00
|
|
|
cb.foo = 0
|
2020-11-20 12:43:41 +03:00
|
|
|
cb.set_text('')
|
2020-11-20 13:58:53 +03:00
|
|
|
//#[cb->pb clearContents];
|
2019-11-17 05:40:03 +03:00
|
|
|
}
|
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// free releases all memory associated with the clipboard
|
|
|
|
// instance.
|
2021-03-04 11:49:40 +03:00
|
|
|
pub fn (mut cb Clipboard) free() {
|
2019-12-07 15:22:28 +03:00
|
|
|
cb.foo = 0
|
2020-11-03 01:00:29 +03:00
|
|
|
// nothing to free
|
2019-11-17 05:40:03 +03:00
|
|
|
}
|
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// has_ownership returns true if the contents of
|
|
|
|
// the clipboard were created by this clipboard instance.
|
2021-03-04 11:49:40 +03:00
|
|
|
pub fn (cb &Clipboard) has_ownership() bool {
|
2020-11-03 01:00:29 +03:00
|
|
|
if cb.last_cb_serial == 0 {
|
|
|
|
return false
|
|
|
|
}
|
2020-11-21 01:49:52 +03:00
|
|
|
//#return [cb->pb changeCount] == cb->last_cb_serial;
|
2019-11-17 05:40:03 +03:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-11-24 06:27:02 +03:00
|
|
|
fn C.OSAtomicCompareAndSwapLong()
|
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// set_text transfers `text` to the system clipboard.
|
|
|
|
// This is often associated with a *copy* action (`Cmd` + `C`).
|
2021-03-04 11:49:40 +03:00
|
|
|
pub fn (mut cb Clipboard) set_text(text string) bool {
|
2020-11-20 05:28:28 +03:00
|
|
|
return C.darwin_set_pasteboard_text(cb.pb, text)
|
2019-11-17 05:40:03 +03:00
|
|
|
}
|
|
|
|
|
2022-04-05 13:06:32 +03:00
|
|
|
// get_text retrieves the contents of the system clipboard
|
|
|
|
// as a `string`.
|
|
|
|
// This is often associated with a *paste* action (`Cmd` + `V`).
|
2021-03-04 11:49:40 +03:00
|
|
|
pub fn (mut cb Clipboard) get_text() string {
|
2019-12-07 15:22:28 +03:00
|
|
|
cb.foo = 0
|
2020-11-20 03:08:39 +03:00
|
|
|
if isnil(cb.pb) {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
utf8_clip := C.darwin_get_pasteboard_text(cb.pb)
|
2022-04-15 14:58:56 +03:00
|
|
|
return unsafe { tos_clone(&u8(utf8_clip)) }
|
2019-11-18 13:10:31 +03:00
|
|
|
}
|
2019-12-27 19:59:04 +03:00
|
|
|
|
2021-01-21 14:45:59 +03:00
|
|
|
// new_primary returns a new X11 `PRIMARY` type `Clipboard` instance allocated on the heap.
|
|
|
|
// Please note: new_primary only works on X11 based systems.
|
2019-12-27 19:59:04 +03:00
|
|
|
pub fn new_primary() &Clipboard {
|
|
|
|
panic('Primary clipboard is not supported on non-Linux systems.')
|
|
|
|
}
|