v/vlib/clipboard
2024-03-13 18:49:20 +02:00
..
dummy all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
x11 clipboard: workaround printing of structs containing &C.Display pointers with gcc 2024-03-13 18:49:20 +02:00
clipboard.v checker: require unsafe for free() 2022-08-20 08:03:07 +03:00
clipboard_android.c.v clipboard: add doc strings to all implementations (#13932) 2022-04-05 13:06:32 +03:00
clipboard_darwin.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
clipboard_darwin.m clipboard: fix clear() on macos 2020-11-20 12:00:16 +01:00
clipboard_default.c.v clipboard: add doc strings to all implementations (#13932) 2022-04-05 13:06:32 +03:00
clipboard_solaris.c.v clipboard: add doc strings to all implementations (#13932) 2022-04-05 13:06:32 +03:00
clipboard_test.v clipboard: fix test on freebsd (#7735) 2020-12-31 11:34:46 +02:00
clipboard_windows.c.v clipboard: fix notice in clipboard_windows.c.v (#20733) 2024-02-05 17:14:27 +02:00
README.md doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00

Description

clipboard provides access to the platform's clipboard mechanism. You can use it to read from the system clipboard, and write to it from your applications.

Examples

import clipboard

fn main() {
	mut c := clipboard.new()
	println(c.get_text())
}