v/vlib/clipboard
yuyi f6f77e5264
clipboard: make clipboard.Clipboard public on windows (#14810)
2022-06-21 08:21:54 +03:00
..
dummy clipboard: add `[heap]` tag to the Clipboard structs (#14412) 2022-05-16 08:45:40 +03:00
x11 clipboard: fix `v -gc boehm run x.v`, where x.v does c.paste() (fix #14281) 2022-05-16 12:54:30 +03:00
README.md docs: add more documentation to each of the modules in vlib (#13043) 2022-01-07 13:28:50 +02:00
clipboard.v docs: add more documentation to each of the modules in vlib (#13043) 2022-01-07 13:28:50 +02: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 clipboard: add `[heap]` tag to the Clipboard structs (#14412) 2022-05-16 08:45:40 +03: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: make clipboard.Clipboard public on windows (#14810) 2022-06-21 08:21:54 +03:00

README.md

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())
}