2019-11-17 03:40:03 +01:00
|
|
|
// Currently there is only X11 Selections support and no way to handle Wayland
|
|
|
|
// but since Wayland isn't extremely adopted, we are covering almost all Linux distros.
|
|
|
|
module clipboard
|
|
|
|
|
2020-04-26 13:49:31 +02:00
|
|
|
import time
|
|
|
|
import sync
|
|
|
|
import math
|
2019-11-17 03:40:03 +01:00
|
|
|
|
|
|
|
#flag -lX11
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
// X11
|
2020-04-21 09:24:23 +02:00
|
|
|
struct C.Display{}
|
|
|
|
struct C.Atom{}
|
|
|
|
struct C.Window{}
|
2019-11-17 03:40:03 +01:00
|
|
|
fn C.XInitThreads() int
|
|
|
|
fn C.XCloseDisplay(d &Display)
|
|
|
|
fn C.XFlush(d &Display)
|
|
|
|
fn C.XDestroyWindow(d &Display, w Window)
|
|
|
|
fn C.XNextEvent(d Display, e &XEvent)
|
2020-04-21 09:24:23 +02:00
|
|
|
fn C.XSetSelectionOwner(d &Display, a C.Atom, w Window, time int)
|
|
|
|
fn C.XGetSelectionOwner(d &Display, a C.Atom) Window
|
|
|
|
fn C.XChangeProperty(d &Display, requestor Window, property C.Atom, typ C.Atom, format int, mode int, data voidptr, nelements int) int
|
2019-11-17 03:40:03 +01:00
|
|
|
fn C.XSendEvent(d &Display, requestor Window, propogate int, mask i64, event &XEvent)
|
2020-04-21 09:24:23 +02:00
|
|
|
fn C.XInternAtom(d &Display, typ byteptr, only_if_exists int) C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
fn C.XCreateSimpleWindow(d &Display, root Window, x int, y int, width u32, height u32, border_width u32, border u64, background u64) Window
|
|
|
|
fn C.XOpenDisplay(name byteptr) &Display
|
2020-04-21 09:24:23 +02:00
|
|
|
fn C.XConvertSelection(d &Display, selection C.Atom, target C.Atom, property C.Atom, requestor Window, time int) int
|
2019-11-17 03:40:03 +01:00
|
|
|
fn C.XSync(d &Display, discard int) int
|
2020-04-21 09:24:23 +02:00
|
|
|
fn C.XGetWindowProperty(d &Display, w Window, property C.Atom, offset i64, length i64, delete int, req_type C.Atom, actual_type_return &C.Atom, actual_format_return &int, nitems &i64, bytes_after_return &i64, prop_return &byteptr) int
|
|
|
|
fn C.XDeleteProperty(d &Display, w Window, property C.Atom) int
|
2019-11-24 11:22:57 +01:00
|
|
|
fn C.DefaultScreen() int
|
|
|
|
fn C.RootWindow() voidptr
|
|
|
|
fn C.BlackPixel() voidptr
|
|
|
|
fn C.WhitePixel() voidptr
|
2019-11-24 11:53:59 +01:00
|
|
|
fn C.XFree()
|
2019-11-24 11:16:02 +01:00
|
|
|
|
2019-11-17 03:40:03 +01:00
|
|
|
struct C.XSelectionRequestEvent{
|
|
|
|
mut:
|
2020-04-21 09:24:23 +02:00
|
|
|
selection C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
display &Display /* Display the event was read from */
|
|
|
|
owner Window
|
|
|
|
requestor Window
|
2020-04-21 09:24:23 +02:00
|
|
|
target C.Atom
|
|
|
|
property C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
time int
|
|
|
|
}
|
|
|
|
struct C.XSelectionEvent{
|
|
|
|
mut:
|
|
|
|
@type int
|
2020-04-21 09:24:23 +02:00
|
|
|
selection C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
display &Display /* Display the event was read from */
|
|
|
|
requestor Window
|
2020-04-21 09:24:23 +02:00
|
|
|
target C.Atom
|
|
|
|
property C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
time int
|
|
|
|
}
|
|
|
|
struct C.XSelectionClearEvent{
|
|
|
|
mut:
|
|
|
|
window Window
|
2020-04-21 09:24:23 +02:00
|
|
|
selection C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
struct C.XDestroyWindowEvent {
|
|
|
|
mut:
|
|
|
|
window Window
|
|
|
|
}
|
|
|
|
struct C.XEvent{
|
|
|
|
mut:
|
|
|
|
@type int
|
2020-04-21 09:24:23 +02:00
|
|
|
xselectionrequest C.XSelectionRequestEvent
|
|
|
|
xselection C.XSelectionEvent
|
|
|
|
xselectionclear C.XSelectionClearEvent
|
|
|
|
xdestroywindow C.XDestroyWindowEvent
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
atom_names = ["TARGETS", "CLIPBOARD", "PRIMARY", "SECONDARY", "TEXT", "UTF8_STRING", "text/plain", "text/html"]
|
|
|
|
)
|
|
|
|
//UNSUPPORTED TYPES: MULTIPLE, INCR, TIMESTAMP, image/bmp, image/jpeg, image/tiff, image/png
|
|
|
|
|
|
|
|
// all the atom types we need
|
|
|
|
// currently we only support text
|
|
|
|
// in the future, maybe we can extend this
|
|
|
|
// to support other mime types
|
2020-04-21 09:24:23 +02:00
|
|
|
enum AtomType {
|
2020-04-23 01:16:16 +02:00
|
|
|
xa_atom = 0 //value 4
|
|
|
|
xa_string = 1 //value 31
|
|
|
|
targets = 2
|
|
|
|
clipboard = 3
|
|
|
|
primary = 4
|
|
|
|
secondary = 5
|
|
|
|
text = 6
|
2019-11-17 03:40:03 +01:00
|
|
|
utf8_string = 7
|
2020-04-23 01:16:16 +02:00
|
|
|
text_plain = 8
|
2019-11-17 03:40:03 +01:00
|
|
|
text_html = 9
|
|
|
|
}
|
|
|
|
|
2020-01-09 12:00:39 +01:00
|
|
|
pub struct Clipboard {
|
2019-11-17 03:40:03 +01:00
|
|
|
display &Display
|
|
|
|
mut:
|
2020-04-21 09:24:23 +02:00
|
|
|
selection C.Atom //the selection atom
|
2019-11-17 03:40:03 +01:00
|
|
|
window Window
|
2020-04-21 09:24:23 +02:00
|
|
|
atoms []C.Atom
|
2020-01-19 20:32:22 +01:00
|
|
|
mutex &sync.Mutex
|
2019-11-17 03:40:03 +01:00
|
|
|
text string // text data sent or received
|
|
|
|
got_text bool // used to confirm that we have got the text
|
|
|
|
is_owner bool // to save selection owner state
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Property{
|
2020-04-21 09:24:23 +02:00
|
|
|
actual_type C.Atom
|
2019-11-17 03:40:03 +01:00
|
|
|
actual_format int
|
|
|
|
nitems int
|
|
|
|
data byteptr
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_clipboard() &Clipboard {
|
|
|
|
return new_x11_clipboard(.clipboard)
|
|
|
|
}
|
|
|
|
|
2019-11-24 11:16:02 +01:00
|
|
|
// Initialize a new clipboard of the given selection type.
|
2019-11-17 03:40:03 +01:00
|
|
|
// We can initialize multiple clipboard instances and use them separately
|
2020-04-21 09:24:23 +02:00
|
|
|
fn new_x11_clipboard(selection AtomType) &Clipboard {
|
2020-04-26 06:39:23 +02:00
|
|
|
if selection !in [.clipboard, .primary, .secondary] {
|
2020-04-21 09:24:23 +02:00
|
|
|
panic("Wrong AtomType. Must be one of .primary, .secondary or .clipboard.")
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2019-11-17 03:40:03 +01:00
|
|
|
//init x11 thread support
|
2020-04-21 09:24:23 +02:00
|
|
|
status := C.XInitThreads()
|
2019-11-17 03:40:03 +01:00
|
|
|
if status == 0 {
|
|
|
|
println("WARN: this system does not support threads; clipboard will cause the program to lock.")
|
|
|
|
}
|
|
|
|
|
|
|
|
display := new_display()
|
|
|
|
|
|
|
|
if display == C.NULL {
|
|
|
|
println("ERROR: No X Server running. Clipboard cannot be used.")
|
2020-01-19 20:32:22 +01:00
|
|
|
return &Clipboard{ display: 0 mutex: sync.new_mutex() }
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
mut cb := &Clipboard{
|
|
|
|
display: display
|
|
|
|
window: create_xwindow(display)
|
|
|
|
mutex: sync.new_mutex()
|
|
|
|
}
|
|
|
|
cb.intern_atoms()
|
|
|
|
cb.selection = cb.get_atom(selection)
|
|
|
|
// start the listener on another thread or
|
|
|
|
// we will be locked and will have to hard exit
|
|
|
|
go cb.start_listener()
|
|
|
|
return cb
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb &Clipboard) check_availability() bool {
|
|
|
|
return cb.display != C.NULL
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb mut Clipboard) free() {
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XDestroyWindow(cb.display, cb.window)
|
2019-11-17 03:40:03 +01:00
|
|
|
cb.window = Window(C.None)
|
|
|
|
//FIX ME: program hangs when closing display
|
|
|
|
//XCloseDisplay(cb.display)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb mut Clipboard) clear(){
|
|
|
|
cb.mutex.lock()
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XSetSelectionOwner(cb.display, cb.selection, Window(C.None), C.CurrentTime)
|
|
|
|
C.XFlush(cb.display)
|
2019-11-17 03:40:03 +01:00
|
|
|
cb.is_owner = false
|
|
|
|
cb.text = ""
|
|
|
|
cb.mutex.unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb &Clipboard) has_ownership() bool {
|
|
|
|
return cb.is_owner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb &Clipboard) take_ownership(){
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XSetSelectionOwner(cb.display, cb.selection, cb.window, C.CurrentTime)
|
|
|
|
C.XFlush(cb.display)
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb mut Clipboard) set_text(text string) bool {
|
|
|
|
if cb.window == Window(C.None) {return false}
|
|
|
|
cb.mutex.lock()
|
|
|
|
cb.text = text
|
|
|
|
cb.is_owner = true
|
|
|
|
cb.take_ownership()
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XFlush(cb.display)
|
2019-11-17 03:40:03 +01:00
|
|
|
cb.mutex.unlock()
|
|
|
|
// sleep a little bit
|
|
|
|
time.sleep(1)
|
|
|
|
return cb.is_owner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb mut Clipboard) get_text() string {
|
|
|
|
if cb.window == Window(C.None) {return ""}
|
|
|
|
if cb.is_owner {
|
|
|
|
return cb.text
|
|
|
|
}
|
|
|
|
cb.got_text = false
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2019-11-17 03:40:03 +01:00
|
|
|
//Request a list of possible conversions, if we're pasting.
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XConvertSelection(cb.display, cb.selection, cb.get_atom(.targets), cb.selection, cb.window, C.CurrentTime)
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2019-11-17 03:40:03 +01:00
|
|
|
//wait for the text to arrive
|
|
|
|
mut retries := 5
|
|
|
|
for {
|
|
|
|
if cb.got_text || retries == 0 {break}
|
|
|
|
time.usleep(50000)
|
|
|
|
retries--
|
|
|
|
}
|
|
|
|
return cb.text
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function is crucial to handling all the different data types
|
|
|
|
// if we ever support other mimetypes they should be handled here
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb mut Clipboard) transmit_selection(xse &C.XSelectionEvent) bool {
|
2019-11-17 03:40:03 +01:00
|
|
|
if xse.target == cb.get_atom(.targets) {
|
|
|
|
targets := cb.get_supported_targets()
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XChangeProperty(xse.display, xse.requestor, xse.property, cb.get_atom(.xa_atom), 32, C.PropModeReplace, targets.data, targets.len)
|
2019-11-17 03:40:03 +01:00
|
|
|
} else if cb.is_supported_target(xse.target) && cb.is_owner && cb.text != "" {
|
|
|
|
cb.mutex.lock()
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XChangeProperty(xse.display, xse.requestor, xse.property, xse.target, 8, C.PropModeReplace, cb.text.str, cb.text.len)
|
2019-11-17 03:40:03 +01:00
|
|
|
cb.mutex.unlock()
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cb mut Clipboard) start_listener(){
|
2020-04-21 09:24:23 +02:00
|
|
|
event := C.XEvent{}
|
2019-11-17 03:40:03 +01:00
|
|
|
mut sent_request := false
|
2020-04-21 09:24:23 +02:00
|
|
|
mut to_be_requested := C.Atom(0)
|
2019-11-17 03:40:03 +01:00
|
|
|
for {
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XNextEvent(cb.display, &event)
|
2020-03-29 10:08:42 +02:00
|
|
|
if event.@type == 0 {
|
2019-11-17 03:40:03 +01:00
|
|
|
println("error")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
match event.@type {
|
|
|
|
C.DestroyNotify {
|
|
|
|
if event.xdestroywindow.window == cb.window {
|
|
|
|
return // we are done
|
|
|
|
}
|
|
|
|
}
|
|
|
|
C.SelectionClear {
|
|
|
|
if event.xselectionclear.window == cb.window && event.xselectionclear.selection == cb.selection {
|
|
|
|
cb.mutex.lock()
|
|
|
|
cb.is_owner = false
|
|
|
|
cb.text = ""
|
|
|
|
cb.mutex.unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
C.SelectionRequest {
|
|
|
|
if event.xselectionrequest.selection == cb.selection {
|
2020-04-21 09:24:23 +02:00
|
|
|
mut xsre := &C.XSelectionRequestEvent{ display: 0 }
|
2019-11-17 03:40:03 +01:00
|
|
|
xsre = &event.xselectionrequest
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
mut xse := C.XSelectionEvent{
|
2019-11-17 03:40:03 +01:00
|
|
|
@type: C.SelectionNotify // 31
|
|
|
|
display: xsre.display
|
|
|
|
requestor: xsre.requestor
|
|
|
|
selection: xsre.selection
|
|
|
|
time: xsre.time
|
|
|
|
target: xsre.target
|
|
|
|
property: xsre.property
|
|
|
|
}
|
|
|
|
if !cb.transmit_selection(&xse) {
|
|
|
|
xse.property = new_atom(C.None)
|
|
|
|
}
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XSendEvent(cb.display, xse.requestor, 0, C.PropertyChangeMask, &xse)
|
|
|
|
C.XFlush(cb.display)
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
C.SelectionNotify {
|
2020-04-21 09:24:23 +02:00
|
|
|
if event.xselection.selection == cb.selection && event.xselection.property != C.Atom(C.None) {
|
2019-11-17 03:40:03 +01:00
|
|
|
if event.xselection.target == cb.get_atom(.targets) && !sent_request {
|
|
|
|
sent_request = true
|
|
|
|
prop := read_property(cb.display, cb.window, cb.selection)
|
|
|
|
to_be_requested = cb.pick_target(prop)
|
2020-04-21 09:24:23 +02:00
|
|
|
if to_be_requested != C.Atom(0) {
|
|
|
|
C.XConvertSelection(cb.display, cb.selection, to_be_requested, cb.selection, cb.window, C.CurrentTime)
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
} else if event.xselection.target == to_be_requested {
|
|
|
|
sent_request = false
|
2020-04-21 09:24:23 +02:00
|
|
|
to_be_requested = C.Atom(0)
|
2019-11-17 03:40:03 +01:00
|
|
|
cb.mutex.lock()
|
|
|
|
prop := read_property(event.xselection.display, event.xselection.requestor, event.xselection.property)
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XDeleteProperty(event.xselection.display, event.xselection.requestor, event.xselection.property)
|
2019-11-17 03:40:03 +01:00
|
|
|
if cb.is_supported_target(prop.actual_type) {
|
|
|
|
cb.got_text = true
|
|
|
|
cb.text = string(prop.data) //TODO: return byteptr to support other mimetypes
|
|
|
|
}
|
|
|
|
cb.mutex.unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-24 11:16:02 +01:00
|
|
|
C.PropertyNotify {}
|
2019-12-07 16:16:19 +01:00
|
|
|
else {}
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Helpers
|
|
|
|
|
|
|
|
// Initialize all the atoms we need
|
|
|
|
fn (cb mut Clipboard) intern_atoms(){
|
2020-04-21 09:24:23 +02:00
|
|
|
cb.atoms << C.Atom(4) //XA_ATOM
|
|
|
|
cb.atoms << C.Atom(31) //XA_STRING
|
2019-11-17 03:40:03 +01:00
|
|
|
for i, name in atom_names{
|
2020-04-21 09:24:23 +02:00
|
|
|
only_if_exists := if i == int(AtomType.utf8_string) {1} else {0}
|
|
|
|
cb.atoms << C.XInternAtom(cb.display, name.str, only_if_exists)
|
|
|
|
if i == int(AtomType.utf8_string) && cb.atoms[i] == C.Atom(C.None) {
|
2019-11-17 03:40:03 +01:00
|
|
|
cb.atoms[i] = cb.get_atom(.xa_string)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn read_property(d &Display, w Window, p C.Atom) Property {
|
|
|
|
actual_type := C.Atom(0)
|
2019-11-17 03:40:03 +01:00
|
|
|
actual_format := 0
|
|
|
|
nitems := 0
|
|
|
|
bytes_after := 0
|
|
|
|
ret := byteptr(0)
|
|
|
|
mut read_bytes := 1024
|
|
|
|
for {
|
2019-11-24 11:53:59 +01:00
|
|
|
if ret != 0 {
|
2019-11-17 03:40:03 +01:00
|
|
|
C.XFree(ret)
|
|
|
|
}
|
2020-04-21 09:24:23 +02:00
|
|
|
C.XGetWindowProperty(d, w, p, 0, read_bytes, 0, C.AnyPropertyType, &actual_type, &actual_format, &nitems, &bytes_after, &ret)
|
2019-11-17 03:40:03 +01:00
|
|
|
read_bytes *= 2
|
|
|
|
if bytes_after == 0 {break}
|
|
|
|
}
|
|
|
|
return Property{actual_type, actual_format, nitems, ret}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finds the best target given a local copy of a property.
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb &Clipboard) pick_target(prop Property) C.Atom {
|
2019-11-17 03:40:03 +01:00
|
|
|
//The list of targets is a list of atoms, so it should have type XA_ATOM
|
|
|
|
//but it may have the type TARGETS instead.
|
2020-04-21 09:24:23 +02:00
|
|
|
if (prop.actual_type != cb.get_atom(.xa_atom) && prop.actual_type != cb.get_atom(.targets)) || prop.actual_format != 32
|
2019-11-24 11:16:02 +01:00
|
|
|
{
|
2019-11-17 03:40:03 +01:00
|
|
|
//This would be really broken. Targets have to be an atom list
|
|
|
|
//and applications should support this. Nevertheless, some
|
|
|
|
//seem broken (MATLAB 7, for instance), so ask for STRING
|
|
|
|
//next instead as the lowest common denominator
|
|
|
|
return cb.get_atom(.xa_string)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-04-21 09:24:23 +02:00
|
|
|
atom_list := &C.Atom(prop.data)
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
mut to_be_requested := C.Atom(0)
|
2019-11-17 03:40:03 +01:00
|
|
|
|
|
|
|
//This is higher than the maximum priority.
|
|
|
|
mut priority := math.max_i32
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2020-02-24 17:55:16 +01:00
|
|
|
for i in 0..prop.nitems {
|
2019-11-17 03:40:03 +01:00
|
|
|
//See if this data type is allowed and of higher priority (closer to zero)
|
|
|
|
//than the present one.
|
2019-12-07 13:13:23 +01:00
|
|
|
|
2019-11-17 03:40:03 +01:00
|
|
|
if cb.is_supported_target(atom_list[i]) {
|
|
|
|
index := cb.get_target_index(atom_list[i])
|
2020-04-21 09:24:23 +02:00
|
|
|
if priority > index && index >= 0
|
2019-12-07 13:13:23 +01:00
|
|
|
{
|
2019-11-17 03:40:03 +01:00
|
|
|
priority = index
|
|
|
|
to_be_requested = atom_list[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return to_be_requested
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb &Clipboard) get_atoms(types ...AtomType) []C.Atom {
|
2020-04-26 16:25:54 +02:00
|
|
|
mut atoms := []C.Atom{}
|
2019-11-17 03:40:03 +01:00
|
|
|
for typ in types {
|
2019-12-07 13:13:23 +01:00
|
|
|
atoms << cb.atoms[typ]
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
return atoms
|
|
|
|
}
|
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb &Clipboard) get_atom(typ AtomType) C.Atom {
|
2019-11-17 03:40:03 +01:00
|
|
|
return cb.atoms[typ]
|
|
|
|
}
|
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb &Clipboard) is_supported_target(target C.Atom) bool {
|
2019-11-17 03:40:03 +01:00
|
|
|
return cb.get_target_index(target) >= 0
|
|
|
|
}
|
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb &Clipboard) get_target_index(target C.Atom) int {
|
2019-11-17 03:40:03 +01:00
|
|
|
for i, atom in cb.get_supported_targets() {
|
|
|
|
if atom == target {return i}
|
|
|
|
}
|
|
|
|
return -1
|
2019-11-24 11:16:02 +01:00
|
|
|
}
|
2019-11-17 03:40:03 +01:00
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn (cb &Clipboard) get_supported_targets() []C.Atom {
|
|
|
|
return cb.get_atoms(AtomType.utf8_string, .xa_string, .text, .text_plain, .text_html)
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 09:24:23 +02:00
|
|
|
fn new_atom(value int) &C.Atom {
|
|
|
|
mut atom := &C.Atom{}
|
2019-11-17 03:40:03 +01:00
|
|
|
atom = value
|
|
|
|
return atom
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_xwindow(display &Display) Window {
|
2020-04-21 09:24:23 +02:00
|
|
|
n := C.DefaultScreen(display)
|
|
|
|
return C.XCreateSimpleWindow(display, C.RootWindow(display, n), 0, 0, 1, 1,
|
|
|
|
0, C.BlackPixel(display, n), C.WhitePixel(display, n))
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn new_display() &Display {
|
2020-04-21 09:24:23 +02:00
|
|
|
return C.XOpenDisplay(C.NULL)
|
2019-11-17 03:40:03 +01:00
|
|
|
}
|
|
|
|
|
2019-12-27 17:59:04 +01:00
|
|
|
// create a new PRIMARY clipboard (only supported on Linux)
|
|
|
|
pub fn new_primary() &Clipboard {
|
|
|
|
return new_x11_clipboard(.primary)
|
|
|
|
}
|