v/vlib/clipboard
jeffmikels 6e6d51a1c9
docs: add more documentation to each of the modules in vlib (#13043)
2022-01-07 13:28:50 +02:00
..
dummy clipboard: ensure public method access after #9062. Fixes #9089 (#9107) 2021-03-04 10:49:40 +02:00
x11 fmt: fix unnecessary line break in array init (fix #11448) (#11562) 2021-09-21 16:20:09 +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 android variant (#8585) 2021-02-05 16:49:04 +01:00
clipboard_darwin.c.v builtin: fix leak in rune.str(), fix leaks in most assert x == y statements in tests (#11091) 2021-08-13 18:37:34 +03:00
clipboard_darwin.m clipboard: fix clear() on macos 2020-11-20 12:00:16 +01:00
clipboard_default.c.v clipboard: document all pub functions, adhere to vdoc style (#8243) 2021-01-21 12:45:59 +01:00
clipboard_solaris.c.v clipboard: document all pub functions, adhere to vdoc style (#8243) 2021-01-21 12:45:59 +01:00
clipboard_test.v clipboard: fix test on freebsd (#7735) 2020-12-31 11:34:46 +02:00
clipboard_windows.c.v tools,clipboard: use lowercase library names for `-luser32`etc, allowing linux->windows cross compilation of ui programs (#10455) 2021-06-14 15:42:56 +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())
}