diff --git a/.gitignore b/.gitignore index 62c8935..92322c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.idea/ \ No newline at end of file +.idea/ +target/ diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/src/main.rs b/src/main.rs index 19992f5..ff8c776 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,7 @@ use generator::password_generator::gen_by_len as gen_by_len; use copypasta::ClipboardContext; use copypasta::ClipboardProvider; +use std::env; @@ -11,11 +12,21 @@ mod generator; fn main() { // input password length let mut password_length = String::new(); - println!("Input password length: "); - std::io::stdin().read_line(&mut password_length).expect("Failed to read line"); - let password_length: i32 = password_length.trim().parse().expect("Please type a number!"); + // Integer Arguments = password_length or input password_length + let args: Vec = env::args().collect(); + if args.len() > 1 { + password_length = args[1].clone(); + } + else { + println!("Input password length: "); + std::io::stdin().read_line(&mut password_length).expect("Failed to read line"); + } + + // Convert values of password_length to i32 + let password_length: i32 = password_length.trim().parse().expect("Please type a number!"); + // Password_string // Generate password let password_string = String::from(gen_by_len(password_length)); diff --git a/target/.rustc_info.json b/target/.rustc_info.json deleted file mode 100644 index 31f0b3e..0000000 --- a/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":4393577217838838638,"outputs":{"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/mohuva/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.71.0 (8ede3aae2 2023-07-12)\nbinary: rustc\ncommit-hash: 8ede3aae28fe6e4d52b38157d7bfe0d3bceef225\ncommit-date: 2023-07-12\nhost: x86_64-unknown-linux-gnu\nrelease: 1.71.0\nLLVM version: 16.0.5\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/target/CACHEDIR.TAG b/target/CACHEDIR.TAG deleted file mode 100644 index 20d7c31..0000000 --- a/target/CACHEDIR.TAG +++ /dev/null @@ -1,3 +0,0 @@ -Signature: 8a477f597d28d172789f06886806bc55 -# This file is a cache directory tag created by cargo. -# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/target/debug/.cargo-lock b/target/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/bin-Fast_Password_Generator b/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/bin-Fast_Password_Generator deleted file mode 100644 index f7d4c53..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/bin-Fast_Password_Generator +++ /dev/null @@ -1 +0,0 @@ -00daed2cb3bb17a7 \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/bin-Fast_Password_Generator.json b/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/bin-Fast_Password_Generator.json deleted file mode 100644 index f9bad24..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/bin-Fast_Password_Generator.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":16344651264385132259,"profile":12909064940101087186,"path":1684066648322511884,"deps":[[3083426555513292373,"copypasta",false,6684236895788549686],[5910892534286594076,"rand",false,10213324475002052070]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/dep-bin-Fast_Password_Generator"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/dep-bin-Fast_Password_Generator b/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/dep-bin-Fast_Password_Generator deleted file mode 100644 index 5501b24..0000000 Binary files a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/dep-bin-Fast_Password_Generator and /dev/null differ diff --git a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/invoked.timestamp b/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-0075aa48f1aa4331/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/invoked.timestamp b/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/test-bin-Fast_Password_Generator b/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/test-bin-Fast_Password_Generator deleted file mode 100644 index bbd514a..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/test-bin-Fast_Password_Generator +++ /dev/null @@ -1 +0,0 @@ -40d230e4dbae170e \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/test-bin-Fast_Password_Generator.json b/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/test-bin-Fast_Password_Generator.json deleted file mode 100644 index d165690..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/test-bin-Fast_Password_Generator.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":16344651264385132259,"profile":7364977192075987598,"path":1684066648322511884,"deps":[[3083426555513292373,"copypasta",false,10921191662120862398],[5910892534286594076,"rand",false,16160009263064822134]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/Fast_Password_Generator-5406a3a8d085ac77/dep-test-bin-Fast_Password_Generator"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/bin-Fast_Password_Generator b/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/bin-Fast_Password_Generator deleted file mode 100644 index c6b585c..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/bin-Fast_Password_Generator +++ /dev/null @@ -1 +0,0 @@ -a4aeda99e141547c \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/bin-Fast_Password_Generator.json b/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/bin-Fast_Password_Generator.json deleted file mode 100644 index 9829be6..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/bin-Fast_Password_Generator.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":16344651264385132259,"profile":16217916096779473954,"path":1684066648322511884,"deps":[[3083426555513292373,"copypasta",false,10921191662120862398],[5910892534286594076,"rand",false,16160009263064822134]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/dep-bin-Fast_Password_Generator"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/invoked.timestamp b/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/Fast_Password_Generator-ea7034cb44fc4935/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/dep-lib-autocfg b/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/dep-lib-autocfg deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/dep-lib-autocfg and /dev/null differ diff --git a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/invoked.timestamp b/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/lib-autocfg b/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/lib-autocfg deleted file mode 100644 index 3a9dbf5..0000000 --- a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/lib-autocfg +++ /dev/null @@ -1 +0,0 @@ -3e6aff6f9c0db7e3 \ No newline at end of file diff --git a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/lib-autocfg.json b/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/lib-autocfg.json deleted file mode 100644 index 3ea7a58..0000000 --- a/target/debug/.fingerprint/autocfg-fb3f84c0729e48d4/lib-autocfg.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14886237245231788030,"profile":9347176690363218083,"path":2864906636355273100,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-fb3f84c0729e48d4/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/dep-lib-bitflags b/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/dep-lib-bitflags deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/dep-lib-bitflags and /dev/null differ diff --git a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/invoked.timestamp b/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/lib-bitflags b/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/lib-bitflags deleted file mode 100644 index 7c97c95..0000000 --- a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/lib-bitflags +++ /dev/null @@ -1 +0,0 @@ -8900889b627a4fa3 \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/lib-bitflags.json b/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/lib-bitflags.json deleted file mode 100644 index 3e87cfa..0000000 --- a/target/debug/.fingerprint/bitflags-ae5d509a8ae7fba7/lib-bitflags.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":15712369643656012375,"profile":7767436220172716501,"path":3511512817866469484,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-ae5d509a8ae7fba7/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-d7fc1498305afff4/invoked.timestamp b/target/debug/.fingerprint/bitflags-d7fc1498305afff4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/bitflags-d7fc1498305afff4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-d7fc1498305afff4/lib-bitflags b/target/debug/.fingerprint/bitflags-d7fc1498305afff4/lib-bitflags deleted file mode 100644 index 92163e7..0000000 --- a/target/debug/.fingerprint/bitflags-d7fc1498305afff4/lib-bitflags +++ /dev/null @@ -1 +0,0 @@ -f49e2ebc247f1b01 \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-d7fc1498305afff4/lib-bitflags.json b/target/debug/.fingerprint/bitflags-d7fc1498305afff4/lib-bitflags.json deleted file mode 100644 index 1df99c3..0000000 --- a/target/debug/.fingerprint/bitflags-d7fc1498305afff4/lib-bitflags.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":15712369643656012375,"profile":7890341536494525235,"path":3511512817866469484,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-d7fc1498305afff4/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/invoked.timestamp b/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/lib-cfg-if b/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/lib-cfg-if deleted file mode 100644 index d8c4589..0000000 --- a/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/lib-cfg-if +++ /dev/null @@ -1 +0,0 @@ -ff9f72fe94d87aa0 \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/lib-cfg-if.json b/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/lib-cfg-if.json deleted file mode 100644 index 97fdf09..0000000 --- a/target/debug/.fingerprint/cfg-if-14458ed2700f0b6c/lib-cfg-if.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":10623512480563079566,"profile":7890341536494525235,"path":10429846360450568020,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-14458ed2700f0b6c/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/dep-lib-cfg-if b/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/dep-lib-cfg-if deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/dep-lib-cfg-if and /dev/null differ diff --git a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/invoked.timestamp b/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/lib-cfg-if b/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/lib-cfg-if deleted file mode 100644 index 81ff9c9..0000000 --- a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/lib-cfg-if +++ /dev/null @@ -1 +0,0 @@ -f43c03a27d8a9f09 \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/lib-cfg-if.json b/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/lib-cfg-if.json deleted file mode 100644 index 769bc65..0000000 --- a/target/debug/.fingerprint/cfg-if-f700ffed35b37b93/lib-cfg-if.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":10623512480563079566,"profile":7767436220172716501,"path":10429846360450568020,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-f700ffed35b37b93/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/copypasta-706a8258db9639c4/dep-lib-copypasta b/target/debug/.fingerprint/copypasta-706a8258db9639c4/dep-lib-copypasta deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/copypasta-706a8258db9639c4/dep-lib-copypasta and /dev/null differ diff --git a/target/debug/.fingerprint/copypasta-706a8258db9639c4/invoked.timestamp b/target/debug/.fingerprint/copypasta-706a8258db9639c4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/copypasta-706a8258db9639c4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/copypasta-706a8258db9639c4/lib-copypasta b/target/debug/.fingerprint/copypasta-706a8258db9639c4/lib-copypasta deleted file mode 100644 index e298d82..0000000 --- a/target/debug/.fingerprint/copypasta-706a8258db9639c4/lib-copypasta +++ /dev/null @@ -1 +0,0 @@ -364609c80a2ec35c \ No newline at end of file diff --git a/target/debug/.fingerprint/copypasta-706a8258db9639c4/lib-copypasta.json b/target/debug/.fingerprint/copypasta-706a8258db9639c4/lib-copypasta.json deleted file mode 100644 index b87b2ae..0000000 --- a/target/debug/.fingerprint/copypasta-706a8258db9639c4/lib-copypasta.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"smithay-clipboard\", \"wayland\", \"x11\", \"x11-clipboard\"]","target":7972745694412979922,"profile":7767436220172716501,"path":10818358479165355152,"deps":[[9459561631278736489,"smithay_clipboard",false,14072594847510578368],[13027543786508450568,"x11_clipboard",false,2236835290444885025]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/copypasta-706a8258db9639c4/dep-lib-copypasta"}}],"rustflags":[],"metadata":3317546725659431772,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/invoked.timestamp b/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/lib-copypasta b/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/lib-copypasta deleted file mode 100644 index 5f3b23a..0000000 --- a/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/lib-copypasta +++ /dev/null @@ -1 +0,0 @@ -be02ac28f4dd8f97 \ No newline at end of file diff --git a/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/lib-copypasta.json b/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/lib-copypasta.json deleted file mode 100644 index 9099525..0000000 --- a/target/debug/.fingerprint/copypasta-e9174be4d81a9fb2/lib-copypasta.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"smithay-clipboard\", \"wayland\", \"x11\", \"x11-clipboard\"]","target":7972745694412979922,"profile":7890341536494525235,"path":10818358479165355152,"deps":[[9459561631278736489,"smithay_clipboard",false,17715349699810873274],[13027543786508450568,"x11_clipboard",false,14294252336013952978]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/copypasta-e9174be4d81a9fb2/dep-lib-copypasta"}}],"rustflags":[],"metadata":3317546725659431772,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/dep-lib-dlib b/target/debug/.fingerprint/dlib-47ea5380e39be9a0/dep-lib-dlib deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/dep-lib-dlib and /dev/null differ diff --git a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/invoked.timestamp b/target/debug/.fingerprint/dlib-47ea5380e39be9a0/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/lib-dlib b/target/debug/.fingerprint/dlib-47ea5380e39be9a0/lib-dlib deleted file mode 100644 index 24a3cd5..0000000 --- a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/lib-dlib +++ /dev/null @@ -1 +0,0 @@ -5b30e9ed489addc2 \ No newline at end of file diff --git a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/lib-dlib.json b/target/debug/.fingerprint/dlib-47ea5380e39be9a0/lib-dlib.json deleted file mode 100644 index e1886d8..0000000 --- a/target/debug/.fingerprint/dlib-47ea5380e39be9a0/lib-dlib.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":6999338767167956407,"profile":7767436220172716501,"path":13285617472452246236,"deps":[[8550539457301843222,"libloading",false,426456253831079649]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dlib-47ea5380e39be9a0/dep-lib-dlib"}}],"rustflags":[],"metadata":14915576400165441898,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/dlib-69d96506c5b5be3a/invoked.timestamp b/target/debug/.fingerprint/dlib-69d96506c5b5be3a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/dlib-69d96506c5b5be3a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/dlib-69d96506c5b5be3a/lib-dlib b/target/debug/.fingerprint/dlib-69d96506c5b5be3a/lib-dlib deleted file mode 100644 index 9cd1d47..0000000 --- a/target/debug/.fingerprint/dlib-69d96506c5b5be3a/lib-dlib +++ /dev/null @@ -1 +0,0 @@ -2ff79deb16b6e4fd \ No newline at end of file diff --git a/target/debug/.fingerprint/dlib-69d96506c5b5be3a/lib-dlib.json b/target/debug/.fingerprint/dlib-69d96506c5b5be3a/lib-dlib.json deleted file mode 100644 index 9d94483..0000000 --- a/target/debug/.fingerprint/dlib-69d96506c5b5be3a/lib-dlib.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":6999338767167956407,"profile":7890341536494525235,"path":13285617472452246236,"deps":[[8550539457301843222,"libloading",false,5417336643675399591]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dlib-69d96506c5b5be3a/dep-lib-dlib"}}],"rustflags":[],"metadata":14915576400165441898,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/invoked.timestamp b/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/lib-downcast-rs b/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/lib-downcast-rs deleted file mode 100644 index c71d4be..0000000 --- a/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/lib-downcast-rs +++ /dev/null @@ -1 +0,0 @@ -7b42e547367200ec \ No newline at end of file diff --git a/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/lib-downcast-rs.json b/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/lib-downcast-rs.json deleted file mode 100644 index a377e2a..0000000 --- a/target/debug/.fingerprint/downcast-rs-1d612dbd25e081e4/lib-downcast-rs.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"std\"]","target":11833479043893298793,"profile":7890341536494525235,"path":4347770476481342406,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/downcast-rs-1d612dbd25e081e4/dep-lib-downcast-rs"}}],"rustflags":[],"metadata":14063588153147126258,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/dep-lib-downcast-rs b/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/dep-lib-downcast-rs deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/dep-lib-downcast-rs and /dev/null differ diff --git a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/invoked.timestamp b/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/lib-downcast-rs b/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/lib-downcast-rs deleted file mode 100644 index 9d1c450..0000000 --- a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/lib-downcast-rs +++ /dev/null @@ -1 +0,0 @@ -ebc008d530e3e7de \ No newline at end of file diff --git a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/lib-downcast-rs.json b/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/lib-downcast-rs.json deleted file mode 100644 index f92ae65..0000000 --- a/target/debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/lib-downcast-rs.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"std\"]","target":11833479043893298793,"profile":7767436220172716501,"path":4347770476481342406,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/downcast-rs-9f1fa194eeda37a1/dep-lib-downcast-rs"}}],"rustflags":[],"metadata":14063588153147126258,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/gethostname-871891c9cc923845/invoked.timestamp b/target/debug/.fingerprint/gethostname-871891c9cc923845/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/gethostname-871891c9cc923845/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/gethostname-871891c9cc923845/lib-gethostname b/target/debug/.fingerprint/gethostname-871891c9cc923845/lib-gethostname deleted file mode 100644 index 7e99362..0000000 --- a/target/debug/.fingerprint/gethostname-871891c9cc923845/lib-gethostname +++ /dev/null @@ -1 +0,0 @@ -a4df4296b0f4c6f1 \ No newline at end of file diff --git a/target/debug/.fingerprint/gethostname-871891c9cc923845/lib-gethostname.json b/target/debug/.fingerprint/gethostname-871891c9cc923845/lib-gethostname.json deleted file mode 100644 index a5c3608..0000000 --- a/target/debug/.fingerprint/gethostname-871891c9cc923845/lib-gethostname.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3027175314346830224,"profile":7890341536494525235,"path":10157346088843717788,"deps":[[2798846484360888381,"libc",false,17280950622636566663]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gethostname-871891c9cc923845/dep-lib-gethostname"}}],"rustflags":[],"metadata":4235199418446044842,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/gethostname-96d4295935641eec/dep-lib-gethostname b/target/debug/.fingerprint/gethostname-96d4295935641eec/dep-lib-gethostname deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/gethostname-96d4295935641eec/dep-lib-gethostname and /dev/null differ diff --git a/target/debug/.fingerprint/gethostname-96d4295935641eec/invoked.timestamp b/target/debug/.fingerprint/gethostname-96d4295935641eec/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/gethostname-96d4295935641eec/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/gethostname-96d4295935641eec/lib-gethostname b/target/debug/.fingerprint/gethostname-96d4295935641eec/lib-gethostname deleted file mode 100644 index 3522f8e..0000000 --- a/target/debug/.fingerprint/gethostname-96d4295935641eec/lib-gethostname +++ /dev/null @@ -1 +0,0 @@ -6c1a93c31cac2237 \ No newline at end of file diff --git a/target/debug/.fingerprint/gethostname-96d4295935641eec/lib-gethostname.json b/target/debug/.fingerprint/gethostname-96d4295935641eec/lib-gethostname.json deleted file mode 100644 index bd178d6..0000000 --- a/target/debug/.fingerprint/gethostname-96d4295935641eec/lib-gethostname.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3027175314346830224,"profile":7767436220172716501,"path":10157346088843717788,"deps":[[2798846484360888381,"libc",false,14372125050684023642]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gethostname-96d4295935641eec/dep-lib-gethostname"}}],"rustflags":[],"metadata":4235199418446044842,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/invoked.timestamp b/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/lib-getrandom b/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/lib-getrandom deleted file mode 100644 index 6639658..0000000 --- a/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/lib-getrandom +++ /dev/null @@ -1 +0,0 @@ -b0af4732ac3739f2 \ No newline at end of file diff --git a/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/lib-getrandom.json b/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/lib-getrandom.json deleted file mode 100644 index 2e104c5..0000000 --- a/target/debug/.fingerprint/getrandom-5ee588e33ed112c8/lib-getrandom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":16789414514566550411,"profile":7890341536494525235,"path":6498994150243112320,"deps":[[2452538001284770427,"cfg_if",false,11563793127662854143],[2798846484360888381,"libc",false,17280950622636566663]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-5ee588e33ed112c8/dep-lib-getrandom"}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/dep-lib-getrandom b/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/dep-lib-getrandom deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/dep-lib-getrandom and /dev/null differ diff --git a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/invoked.timestamp b/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/lib-getrandom b/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/lib-getrandom deleted file mode 100644 index 00e470b..0000000 --- a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/lib-getrandom +++ /dev/null @@ -1 +0,0 @@ -5df6706059181fe4 \ No newline at end of file diff --git a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/lib-getrandom.json b/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/lib-getrandom.json deleted file mode 100644 index 2a29606..0000000 --- a/target/debug/.fingerprint/getrandom-ea1cb92bd864b7cd/lib-getrandom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":16789414514566550411,"profile":7767436220172716501,"path":6498994150243112320,"deps":[[2452538001284770427,"cfg_if",false,693425139832012020],[2798846484360888381,"libc",false,14372125050684023642]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-ea1cb92bd864b7cd/dep-lib-getrandom"}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/dep-lib-lazy_static b/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/dep-lib-lazy_static deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/dep-lib-lazy_static and /dev/null differ diff --git a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/invoked.timestamp b/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/lib-lazy_static b/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/lib-lazy_static deleted file mode 100644 index 11d32d8..0000000 --- a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/lib-lazy_static +++ /dev/null @@ -1 +0,0 @@ -6951307a4f7e208c \ No newline at end of file diff --git a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/lib-lazy_static.json b/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/lib-lazy_static.json deleted file mode 100644 index 41ea17a..0000000 --- a/target/debug/.fingerprint/lazy_static-55299e210f3a54bc/lib-lazy_static.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":1623840821729021818,"profile":7767436220172716501,"path":14909690414878957835,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-55299e210f3a54bc/dep-lib-lazy_static"}}],"rustflags":[],"metadata":111743654650316589,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/invoked.timestamp b/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/lib-lazy_static b/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/lib-lazy_static deleted file mode 100644 index 084b681..0000000 --- a/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/lib-lazy_static +++ /dev/null @@ -1 +0,0 @@ -eabde32d03158eab \ No newline at end of file diff --git a/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/lib-lazy_static.json b/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/lib-lazy_static.json deleted file mode 100644 index 8799c16..0000000 --- a/target/debug/.fingerprint/lazy_static-76368cd173cc9a9a/lib-lazy_static.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":1623840821729021818,"profile":7890341536494525235,"path":14909690414878957835,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-76368cd173cc9a9a/dep-lib-lazy_static"}}],"rustflags":[],"metadata":111743654650316589,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-41419d257afa2c5f/dep-lib-libc b/target/debug/.fingerprint/libc-41419d257afa2c5f/dep-lib-libc deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/libc-41419d257afa2c5f/dep-lib-libc and /dev/null differ diff --git a/target/debug/.fingerprint/libc-41419d257afa2c5f/invoked.timestamp b/target/debug/.fingerprint/libc-41419d257afa2c5f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/libc-41419d257afa2c5f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-41419d257afa2c5f/lib-libc b/target/debug/.fingerprint/libc-41419d257afa2c5f/lib-libc deleted file mode 100644 index d1d887d..0000000 --- a/target/debug/.fingerprint/libc-41419d257afa2c5f/lib-libc +++ /dev/null @@ -1 +0,0 @@ -5aa38339960b74c7 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-41419d257afa2c5f/lib-libc.json b/target/debug/.fingerprint/libc-41419d257afa2c5f/lib-libc.json deleted file mode 100644 index ab040a4..0000000 --- a/target/debug/.fingerprint/libc-41419d257afa2c5f/lib-libc.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"extra_traits\", \"std\"]","target":1307715644349195660,"profile":7767436220172716501,"path":13823011967339436655,"deps":[[2798846484360888381,"build_script_build",false,5843279908128947373]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-41419d257afa2c5f/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/invoked.timestamp b/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/lib-libc b/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/lib-libc deleted file mode 100644 index 64bc44e..0000000 --- a/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/lib-libc +++ /dev/null @@ -1 +0,0 @@ -8768516b0845d2ef \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/lib-libc.json b/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/lib-libc.json deleted file mode 100644 index 19f7bb3..0000000 --- a/target/debug/.fingerprint/libc-8b6f2fc2fa00da18/lib-libc.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"extra_traits\", \"std\"]","target":1307715644349195660,"profile":7890341536494525235,"path":13823011967339436655,"deps":[[2798846484360888381,"build_script_build",false,5843279908128947373]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-8b6f2fc2fa00da18/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/build-script-build-script-build b/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/build-script-build-script-build deleted file mode 100644 index d6620a8..0000000 --- a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -302b76e10c914d17 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/build-script-build-script-build.json b/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/build-script-build-script-build.json deleted file mode 100644 index 8bdacb2..0000000 --- a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"extra_traits\", \"std\"]","target":8188216131759486267,"profile":9347176690363218083,"path":15801844498217677233,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-b9b650ea1aa7aec8/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/dep-build-script-build-script-build b/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/invoked.timestamp b/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/libc-b9b650ea1aa7aec8/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-e7e760dafd8cd667/run-build-script-build-script-build b/target/debug/.fingerprint/libc-e7e760dafd8cd667/run-build-script-build-script-build deleted file mode 100644 index 58f802c..0000000 --- a/target/debug/.fingerprint/libc-e7e760dafd8cd667/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -adfc330f1e801751 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-e7e760dafd8cd667/run-build-script-build-script-build.json b/target/debug/.fingerprint/libc-e7e760dafd8cd667/run-build-script-build-script-build.json deleted file mode 100644 index 393b09b..0000000 --- a/target/debug/.fingerprint/libc-e7e760dafd8cd667/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[2798846484360888381,"build_script_build",false,1679157720587316016]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-e7e760dafd8cd667/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libloading-7e77e2c95528f131/invoked.timestamp b/target/debug/.fingerprint/libloading-7e77e2c95528f131/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/libloading-7e77e2c95528f131/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/libloading-7e77e2c95528f131/lib-libloading b/target/debug/.fingerprint/libloading-7e77e2c95528f131/lib-libloading deleted file mode 100644 index 44ab065..0000000 --- a/target/debug/.fingerprint/libloading-7e77e2c95528f131/lib-libloading +++ /dev/null @@ -1 +0,0 @@ -a7a5faa2f93e2e4b \ No newline at end of file diff --git a/target/debug/.fingerprint/libloading-7e77e2c95528f131/lib-libloading.json b/target/debug/.fingerprint/libloading-7e77e2c95528f131/lib-libloading.json deleted file mode 100644 index 7bdcb3b..0000000 --- a/target/debug/.fingerprint/libloading-7e77e2c95528f131/lib-libloading.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3904882595153906123,"profile":7890341536494525235,"path":2524354147456831335,"deps":[[2452538001284770427,"cfg_if",false,11563793127662854143]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libloading-7e77e2c95528f131/dep-lib-libloading"}}],"rustflags":[],"metadata":17567831315501188372,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/dep-lib-libloading b/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/dep-lib-libloading deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/dep-lib-libloading and /dev/null differ diff --git a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/invoked.timestamp b/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/lib-libloading b/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/lib-libloading deleted file mode 100644 index 67eee24..0000000 --- a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/lib-libloading +++ /dev/null @@ -1 +0,0 @@ -e166d811b413eb05 \ No newline at end of file diff --git a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/lib-libloading.json b/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/lib-libloading.json deleted file mode 100644 index f8ab535..0000000 --- a/target/debug/.fingerprint/libloading-f0f4114b1f2923b7/lib-libloading.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3904882595153906123,"profile":7767436220172716501,"path":2524354147456831335,"deps":[[2452538001284770427,"cfg_if",false,693425139832012020]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libloading-f0f4114b1f2923b7/dep-lib-libloading"}}],"rustflags":[],"metadata":17567831315501188372,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/log-00bf8177b3921886/invoked.timestamp b/target/debug/.fingerprint/log-00bf8177b3921886/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/log-00bf8177b3921886/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/log-00bf8177b3921886/lib-log b/target/debug/.fingerprint/log-00bf8177b3921886/lib-log deleted file mode 100644 index f0d341d..0000000 --- a/target/debug/.fingerprint/log-00bf8177b3921886/lib-log +++ /dev/null @@ -1 +0,0 @@ -9ddf35e53e52c2dc \ No newline at end of file diff --git a/target/debug/.fingerprint/log-00bf8177b3921886/lib-log.json b/target/debug/.fingerprint/log-00bf8177b3921886/lib-log.json deleted file mode 100644 index 2857118..0000000 --- a/target/debug/.fingerprint/log-00bf8177b3921886/lib-log.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":4487324886529943577,"profile":7890341536494525235,"path":15879963733942325703,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-00bf8177b3921886/dep-lib-log"}}],"rustflags":[],"metadata":179143468214550567,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/log-b88fed8af967d155/dep-lib-log b/target/debug/.fingerprint/log-b88fed8af967d155/dep-lib-log deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/log-b88fed8af967d155/dep-lib-log and /dev/null differ diff --git a/target/debug/.fingerprint/log-b88fed8af967d155/invoked.timestamp b/target/debug/.fingerprint/log-b88fed8af967d155/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/log-b88fed8af967d155/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/log-b88fed8af967d155/lib-log b/target/debug/.fingerprint/log-b88fed8af967d155/lib-log deleted file mode 100644 index d3f9d1b..0000000 --- a/target/debug/.fingerprint/log-b88fed8af967d155/lib-log +++ /dev/null @@ -1 +0,0 @@ -700a2dc25d175468 \ No newline at end of file diff --git a/target/debug/.fingerprint/log-b88fed8af967d155/lib-log.json b/target/debug/.fingerprint/log-b88fed8af967d155/lib-log.json deleted file mode 100644 index a034225..0000000 --- a/target/debug/.fingerprint/log-b88fed8af967d155/lib-log.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":4487324886529943577,"profile":7767436220172716501,"path":15879963733942325703,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-b88fed8af967d155/dep-lib-log"}}],"rustflags":[],"metadata":179143468214550567,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-36496497ef836299/dep-lib-memchr b/target/debug/.fingerprint/memchr-36496497ef836299/dep-lib-memchr deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/memchr-36496497ef836299/dep-lib-memchr and /dev/null differ diff --git a/target/debug/.fingerprint/memchr-36496497ef836299/invoked.timestamp b/target/debug/.fingerprint/memchr-36496497ef836299/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memchr-36496497ef836299/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-36496497ef836299/lib-memchr b/target/debug/.fingerprint/memchr-36496497ef836299/lib-memchr deleted file mode 100644 index 3371a8f..0000000 --- a/target/debug/.fingerprint/memchr-36496497ef836299/lib-memchr +++ /dev/null @@ -1 +0,0 @@ -88632bf02b1b180d \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-36496497ef836299/lib-memchr.json b/target/debug/.fingerprint/memchr-36496497ef836299/lib-memchr.json deleted file mode 100644 index 54b7bf3..0000000 --- a/target/debug/.fingerprint/memchr-36496497ef836299/lib-memchr.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":3122691792076482017,"profile":7767436220172716501,"path":8362493403944333487,"deps":[[6893260508610722743,"build_script_build",false,6649996526653149769]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-36496497ef836299/dep-lib-memchr"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-45f397f81631e6cd/invoked.timestamp b/target/debug/.fingerprint/memchr-45f397f81631e6cd/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memchr-45f397f81631e6cd/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-45f397f81631e6cd/lib-memchr b/target/debug/.fingerprint/memchr-45f397f81631e6cd/lib-memchr deleted file mode 100644 index 3886e9f..0000000 --- a/target/debug/.fingerprint/memchr-45f397f81631e6cd/lib-memchr +++ /dev/null @@ -1 +0,0 @@ -a16662881088968f \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-45f397f81631e6cd/lib-memchr.json b/target/debug/.fingerprint/memchr-45f397f81631e6cd/lib-memchr.json deleted file mode 100644 index 237dbb3..0000000 --- a/target/debug/.fingerprint/memchr-45f397f81631e6cd/lib-memchr.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":3122691792076482017,"profile":7890341536494525235,"path":8362493403944333487,"deps":[[6893260508610722743,"build_script_build",false,6649996526653149769]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-45f397f81631e6cd/dep-lib-memchr"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-9cdc05fe9278eb8f/run-build-script-build-script-build b/target/debug/.fingerprint/memchr-9cdc05fe9278eb8f/run-build-script-build-script-build deleted file mode 100644 index dcd7b48..0000000 --- a/target/debug/.fingerprint/memchr-9cdc05fe9278eb8f/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -4912be989b88495c \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-9cdc05fe9278eb8f/run-build-script-build-script-build.json b/target/debug/.fingerprint/memchr-9cdc05fe9278eb8f/run-build-script-build-script-build.json deleted file mode 100644 index ed7798e..0000000 --- a/target/debug/.fingerprint/memchr-9cdc05fe9278eb8f/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[6893260508610722743,"build_script_build",false,17831027677562939806]],"local":[{"Precalculated":"2.5.0"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-c64898c1d4f72845/build-script-build-script-build b/target/debug/.fingerprint/memchr-c64898c1d4f72845/build-script-build-script-build deleted file mode 100644 index 1f8f53b..0000000 --- a/target/debug/.fingerprint/memchr-c64898c1d4f72845/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -9e294c2d338974f7 \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-c64898c1d4f72845/build-script-build-script-build.json b/target/debug/.fingerprint/memchr-c64898c1d4f72845/build-script-build-script-build.json deleted file mode 100644 index e8fae37..0000000 --- a/target/debug/.fingerprint/memchr-c64898c1d4f72845/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":2297296889237502566,"profile":9347176690363218083,"path":11582060615545135133,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-c64898c1d4f72845/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memchr-c64898c1d4f72845/dep-build-script-build-script-build b/target/debug/.fingerprint/memchr-c64898c1d4f72845/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/memchr-c64898c1d4f72845/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/memchr-c64898c1d4f72845/invoked.timestamp b/target/debug/.fingerprint/memchr-c64898c1d4f72845/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memchr-c64898c1d4f72845/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/dep-lib-memmap2 b/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/dep-lib-memmap2 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/dep-lib-memmap2 and /dev/null differ diff --git a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/invoked.timestamp b/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/lib-memmap2 b/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/lib-memmap2 deleted file mode 100644 index ade9073..0000000 --- a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/lib-memmap2 +++ /dev/null @@ -1 +0,0 @@ -392530abb17c4388 \ No newline at end of file diff --git a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/lib-memmap2.json b/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/lib-memmap2.json deleted file mode 100644 index 86fd477..0000000 --- a/target/debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/lib-memmap2.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14437422156975073459,"profile":7767436220172716501,"path":9393730649597173391,"deps":[[2798846484360888381,"libc",false,14372125050684023642]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memmap2-2a672c8aa4fc2d1c/dep-lib-memmap2"}}],"rustflags":[],"metadata":7859718134507496869,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memmap2-535f6d90e224eb33/invoked.timestamp b/target/debug/.fingerprint/memmap2-535f6d90e224eb33/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memmap2-535f6d90e224eb33/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memmap2-535f6d90e224eb33/lib-memmap2 b/target/debug/.fingerprint/memmap2-535f6d90e224eb33/lib-memmap2 deleted file mode 100644 index 9393cfa..0000000 --- a/target/debug/.fingerprint/memmap2-535f6d90e224eb33/lib-memmap2 +++ /dev/null @@ -1 +0,0 @@ -04840db06ef27efb \ No newline at end of file diff --git a/target/debug/.fingerprint/memmap2-535f6d90e224eb33/lib-memmap2.json b/target/debug/.fingerprint/memmap2-535f6d90e224eb33/lib-memmap2.json deleted file mode 100644 index bac7ad7..0000000 --- a/target/debug/.fingerprint/memmap2-535f6d90e224eb33/lib-memmap2.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14437422156975073459,"profile":7890341536494525235,"path":9393730649597173391,"deps":[[2798846484360888381,"libc",false,17280950622636566663]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memmap2-535f6d90e224eb33/dep-lib-memmap2"}}],"rustflags":[],"metadata":7859718134507496869,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/build-script-build-script-build b/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/build-script-build-script-build deleted file mode 100644 index a3363d5..0000000 --- a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -249eec2fae044c53 \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/build-script-build-script-build.json b/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/build-script-build-script-build.json deleted file mode 100644 index ecf2733..0000000 --- a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":8188216131759486267,"profile":9347176690363218083,"path":7749016696249405209,"deps":[[14832468857926148571,"autocfg",false,16408598732892760638]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memoffset-87d9af1a62d80f3c/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/dep-build-script-build-script-build b/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/invoked.timestamp b/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memoffset-87d9af1a62d80f3c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9442d62aae17f314/dep-lib-memoffset b/target/debug/.fingerprint/memoffset-9442d62aae17f314/dep-lib-memoffset deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/memoffset-9442d62aae17f314/dep-lib-memoffset and /dev/null differ diff --git a/target/debug/.fingerprint/memoffset-9442d62aae17f314/invoked.timestamp b/target/debug/.fingerprint/memoffset-9442d62aae17f314/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memoffset-9442d62aae17f314/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9442d62aae17f314/lib-memoffset b/target/debug/.fingerprint/memoffset-9442d62aae17f314/lib-memoffset deleted file mode 100644 index b868ea7..0000000 --- a/target/debug/.fingerprint/memoffset-9442d62aae17f314/lib-memoffset +++ /dev/null @@ -1 +0,0 @@ -cc3abf7aad9ff87e \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9442d62aae17f314/lib-memoffset.json b/target/debug/.fingerprint/memoffset-9442d62aae17f314/lib-memoffset.json deleted file mode 100644 index f0653fa..0000000 --- a/target/debug/.fingerprint/memoffset-9442d62aae17f314/lib-memoffset.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":1229535848872979174,"profile":7767436220172716501,"path":11672403129109050514,"deps":[[6458888162066361806,"build_script_build",false,13677578676857249899]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memoffset-9442d62aae17f314/dep-lib-memoffset"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/invoked.timestamp b/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/lib-memoffset b/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/lib-memoffset deleted file mode 100644 index a50b748..0000000 --- a/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/lib-memoffset +++ /dev/null @@ -1 +0,0 @@ -3a5add290bca97cd \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/lib-memoffset.json b/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/lib-memoffset.json deleted file mode 100644 index 0679c03..0000000 --- a/target/debug/.fingerprint/memoffset-9ce18e1e1a2aff10/lib-memoffset.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":1229535848872979174,"profile":7890341536494525235,"path":11672403129109050514,"deps":[[6458888162066361806,"build_script_build",false,13677578676857249899]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memoffset-9ce18e1e1a2aff10/dep-lib-memoffset"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-bd75bec0a9499dc4/run-build-script-build-script-build b/target/debug/.fingerprint/memoffset-bd75bec0a9499dc4/run-build-script-build-script-build deleted file mode 100644 index 4b3d075..0000000 --- a/target/debug/.fingerprint/memoffset-bd75bec0a9499dc4/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -6ba088f55685d0bd \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-bd75bec0a9499dc4/run-build-script-build-script-build.json b/target/debug/.fingerprint/memoffset-bd75bec0a9499dc4/run-build-script-build-script-build.json deleted file mode 100644 index bc71c81..0000000 --- a/target/debug/.fingerprint/memoffset-bd75bec0a9499dc4/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[6458888162066361806,"build_script_build",false,6002177549552885284]],"local":[{"Precalculated":"0.6.5"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/invoked.timestamp b/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/lib-minimal-lexical b/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/lib-minimal-lexical deleted file mode 100644 index 1d3d983..0000000 --- a/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/lib-minimal-lexical +++ /dev/null @@ -1 +0,0 @@ -532ff8f970813fa6 \ No newline at end of file diff --git a/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/lib-minimal-lexical.json b/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/lib-minimal-lexical.json deleted file mode 100644 index ba853e8..0000000 --- a/target/debug/.fingerprint/minimal-lexical-2f199454c1cd761c/lib-minimal-lexical.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":1009644266440026082,"profile":7890341536494525235,"path":7859083007998583758,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/minimal-lexical-2f199454c1cd761c/dep-lib-minimal-lexical"}}],"rustflags":[],"metadata":2051824130325965549,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/dep-lib-minimal-lexical b/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/dep-lib-minimal-lexical deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/dep-lib-minimal-lexical and /dev/null differ diff --git a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/invoked.timestamp b/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/lib-minimal-lexical b/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/lib-minimal-lexical deleted file mode 100644 index 5357269..0000000 --- a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/lib-minimal-lexical +++ /dev/null @@ -1 +0,0 @@ -6d23b34b2f75ce1e \ No newline at end of file diff --git a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/lib-minimal-lexical.json b/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/lib-minimal-lexical.json deleted file mode 100644 index 43f4209..0000000 --- a/target/debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/lib-minimal-lexical.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":1009644266440026082,"profile":7767436220172716501,"path":7859083007998583758,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/minimal-lexical-48e2719ccc58bc2a/dep-lib-minimal-lexical"}}],"rustflags":[],"metadata":2051824130325965549,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/invoked.timestamp b/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/lib-nix b/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/lib-nix deleted file mode 100644 index 07d0a5d..0000000 --- a/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/lib-nix +++ /dev/null @@ -1 +0,0 @@ -9fc447a1b1a74de0 \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/lib-nix.json b/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/lib-nix.json deleted file mode 100644 index 2a071fb..0000000 --- a/target/debug/.fingerprint/nix-0dcc0d0eb70c680c/lib-nix.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":3017721884411201274,"profile":7890341536494525235,"path":13900890255240335189,"deps":[[2452538001284770427,"cfg_if",false,11563793127662854143],[2798846484360888381,"libc",false,17280950622636566663],[6458888162066361806,"memoffset",false,14814531648554359354],[14051957667571541382,"bitflags",false,79797214161837812]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-0dcc0d0eb70c680c/dep-lib-nix"}}],"rustflags":[],"metadata":7592889295042356366,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/dep-lib-nix b/target/debug/.fingerprint/nix-fea3b2689fd5e18d/dep-lib-nix deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/dep-lib-nix and /dev/null differ diff --git a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/invoked.timestamp b/target/debug/.fingerprint/nix-fea3b2689fd5e18d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/lib-nix b/target/debug/.fingerprint/nix-fea3b2689fd5e18d/lib-nix deleted file mode 100644 index 954951a..0000000 --- a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/lib-nix +++ /dev/null @@ -1 +0,0 @@ -ff11784595bd897b \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/lib-nix.json b/target/debug/.fingerprint/nix-fea3b2689fd5e18d/lib-nix.json deleted file mode 100644 index d09caac..0000000 --- a/target/debug/.fingerprint/nix-fea3b2689fd5e18d/lib-nix.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":3017721884411201274,"profile":7767436220172716501,"path":13900890255240335189,"deps":[[2452538001284770427,"cfg_if",false,693425139832012020],[2798846484360888381,"libc",false,14372125050684023642],[6458888162066361806,"memoffset",false,9149238210440673996],[14051957667571541382,"bitflags",false,11767758915277160585]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-fea3b2689fd5e18d/dep-lib-nix"}}],"rustflags":[],"metadata":7592889295042356366,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/invoked.timestamp b/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/lib-nom b/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/lib-nom deleted file mode 100644 index 504b276..0000000 --- a/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/lib-nom +++ /dev/null @@ -1 +0,0 @@ -87094138ccd291b4 \ No newline at end of file diff --git a/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/lib-nom.json b/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/lib-nom.json deleted file mode 100644 index f814097..0000000 --- a/target/debug/.fingerprint/nom-3fe0aa4ac7e4008d/lib-nom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"std\"]","target":1745534342555606081,"profile":7890341536494525235,"path":2412020075841791344,"deps":[[6893260508610722743,"memchr",false,10346606798519297697],[10953957149292187054,"minimal_lexical",false,11979435856058920787]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nom-3fe0aa4ac7e4008d/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/nom-73529faed4511e3c/dep-lib-nom b/target/debug/.fingerprint/nom-73529faed4511e3c/dep-lib-nom deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/nom-73529faed4511e3c/dep-lib-nom and /dev/null differ diff --git a/target/debug/.fingerprint/nom-73529faed4511e3c/invoked.timestamp b/target/debug/.fingerprint/nom-73529faed4511e3c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/nom-73529faed4511e3c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/nom-73529faed4511e3c/lib-nom b/target/debug/.fingerprint/nom-73529faed4511e3c/lib-nom deleted file mode 100644 index be14536..0000000 --- a/target/debug/.fingerprint/nom-73529faed4511e3c/lib-nom +++ /dev/null @@ -1 +0,0 @@ -ba03b396d03bd51e \ No newline at end of file diff --git a/target/debug/.fingerprint/nom-73529faed4511e3c/lib-nom.json b/target/debug/.fingerprint/nom-73529faed4511e3c/lib-nom.json deleted file mode 100644 index 245f86a..0000000 --- a/target/debug/.fingerprint/nom-73529faed4511e3c/lib-nom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"std\"]","target":1745534342555606081,"profile":7767436220172716501,"path":2412020075841791344,"deps":[[6893260508610722743,"memchr",false,943533997461037960],[10953957149292187054,"minimal_lexical",false,2219840512334177133]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nom-73529faed4511e3c/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/once_cell-09af8552c39183b1/dep-lib-once_cell b/target/debug/.fingerprint/once_cell-09af8552c39183b1/dep-lib-once_cell deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/once_cell-09af8552c39183b1/dep-lib-once_cell and /dev/null differ diff --git a/target/debug/.fingerprint/once_cell-09af8552c39183b1/invoked.timestamp b/target/debug/.fingerprint/once_cell-09af8552c39183b1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/once_cell-09af8552c39183b1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/once_cell-09af8552c39183b1/lib-once_cell b/target/debug/.fingerprint/once_cell-09af8552c39183b1/lib-once_cell deleted file mode 100644 index f972890..0000000 --- a/target/debug/.fingerprint/once_cell-09af8552c39183b1/lib-once_cell +++ /dev/null @@ -1 +0,0 @@ -85a4df29857c69b6 \ No newline at end of file diff --git a/target/debug/.fingerprint/once_cell-09af8552c39183b1/lib-once_cell.json b/target/debug/.fingerprint/once_cell-09af8552c39183b1/lib-once_cell.json deleted file mode 100644 index c39f430..0000000 --- a/target/debug/.fingerprint/once_cell-09af8552c39183b1/lib-once_cell.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","target":14856186769647684053,"profile":7767436220172716501,"path":8161630324693231681,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-09af8552c39183b1/dep-lib-once_cell"}}],"rustflags":[],"metadata":14177539708254521827,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/once_cell-2674e20a22df96ff/invoked.timestamp b/target/debug/.fingerprint/once_cell-2674e20a22df96ff/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/once_cell-2674e20a22df96ff/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/once_cell-2674e20a22df96ff/lib-once_cell b/target/debug/.fingerprint/once_cell-2674e20a22df96ff/lib-once_cell deleted file mode 100644 index 1e13db2..0000000 --- a/target/debug/.fingerprint/once_cell-2674e20a22df96ff/lib-once_cell +++ /dev/null @@ -1 +0,0 @@ -65cf70a741698a91 \ No newline at end of file diff --git a/target/debug/.fingerprint/once_cell-2674e20a22df96ff/lib-once_cell.json b/target/debug/.fingerprint/once_cell-2674e20a22df96ff/lib-once_cell.json deleted file mode 100644 index ef887f3..0000000 --- a/target/debug/.fingerprint/once_cell-2674e20a22df96ff/lib-once_cell.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","target":14856186769647684053,"profile":7890341536494525235,"path":8161630324693231681,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-2674e20a22df96ff/dep-lib-once_cell"}}],"rustflags":[],"metadata":14177539708254521827,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/dep-lib-pkg-config b/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/dep-lib-pkg-config deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/dep-lib-pkg-config and /dev/null differ diff --git a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/invoked.timestamp b/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/lib-pkg-config b/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/lib-pkg-config deleted file mode 100644 index dc54e78..0000000 --- a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/lib-pkg-config +++ /dev/null @@ -1 +0,0 @@ -84011c6175364b19 \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/lib-pkg-config.json b/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/lib-pkg-config.json deleted file mode 100644 index 9b297ec..0000000 --- a/target/debug/.fingerprint/pkg-config-1efb35da4c6a9fef/lib-pkg-config.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":15725624806819206206,"profile":9347176690363218083,"path":16404730370269568787,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pkg-config-1efb35da4c6a9fef/dep-lib-pkg-config"}}],"rustflags":[],"metadata":6346311810227624339,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/invoked.timestamp b/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/lib-ppv-lite86 b/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/lib-ppv-lite86 deleted file mode 100644 index ce9105e..0000000 --- a/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/lib-ppv-lite86 +++ /dev/null @@ -1 +0,0 @@ -fa05a3be1267761d \ No newline at end of file diff --git a/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/lib-ppv-lite86.json b/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/lib-ppv-lite86.json deleted file mode 100644 index befa74b..0000000 --- a/target/debug/.fingerprint/ppv-lite86-04333437dd28a938/lib-ppv-lite86.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"simd\", \"std\"]","target":602634026009422966,"profile":7890341536494525235,"path":10138868418580815995,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-04333437dd28a938/dep-lib-ppv-lite86"}}],"rustflags":[],"metadata":14155036307809790115,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/dep-lib-ppv-lite86 b/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/dep-lib-ppv-lite86 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/dep-lib-ppv-lite86 and /dev/null differ diff --git a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/invoked.timestamp b/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/lib-ppv-lite86 b/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/lib-ppv-lite86 deleted file mode 100644 index d2f98c1..0000000 --- a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/lib-ppv-lite86 +++ /dev/null @@ -1 +0,0 @@ -63dabb881a660770 \ No newline at end of file diff --git a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/lib-ppv-lite86.json b/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/lib-ppv-lite86.json deleted file mode 100644 index d864e6d..0000000 --- a/target/debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/lib-ppv-lite86.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"simd\", \"std\"]","target":602634026009422966,"profile":7767436220172716501,"path":10138868418580815995,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-ef4d3fc1d9e833d5/dep-lib-ppv-lite86"}}],"rustflags":[],"metadata":14155036307809790115,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/dep-lib-proc-macro2 b/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/dep-lib-proc-macro2 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/dep-lib-proc-macro2 and /dev/null differ diff --git a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/invoked.timestamp b/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/lib-proc-macro2 b/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/lib-proc-macro2 deleted file mode 100644 index c7cc2f9..0000000 --- a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/lib-proc-macro2 +++ /dev/null @@ -1 +0,0 @@ -4bff1e942e027723 \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/lib-proc-macro2.json b/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/lib-proc-macro2.json deleted file mode 100644 index ae87a48..0000000 --- a/target/debug/.fingerprint/proc-macro2-40dfe76090503f3d/lib-proc-macro2.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"proc-macro\"]","target":16714894217519287322,"profile":9347176690363218083,"path":1816841969921009812,"deps":[[2275467556785573469,"build_script_build",false,14619429013926230224],[10721203361745528474,"unicode_ident",false,13302020766892744925]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-40dfe76090503f3d/dep-lib-proc-macro2"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-bf0cdeb6ef73382f/run-build-script-build-script-build b/target/debug/.fingerprint/proc-macro2-bf0cdeb6ef73382f/run-build-script-build-script-build deleted file mode 100644 index 3fcde6e..0000000 --- a/target/debug/.fingerprint/proc-macro2-bf0cdeb6ef73382f/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -d0b81c2a3ba5e2ca \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-bf0cdeb6ef73382f/run-build-script-build-script-build.json b/target/debug/.fingerprint/proc-macro2-bf0cdeb6ef73382f/run-build-script-build-script-build.json deleted file mode 100644 index 8fca084..0000000 --- a/target/debug/.fingerprint/proc-macro2-bf0cdeb6ef73382f/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[2275467556785573469,"build_script_build",false,13181825618708343243]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-bf0cdeb6ef73382f/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/build-script-build-script-build b/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/build-script-build-script-build deleted file mode 100644 index 96b0f55..0000000 --- a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -cb2941568f40efb6 \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/build-script-build-script-build.json b/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/build-script-build-script-build.json deleted file mode 100644 index 47b45b1..0000000 --- a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"proc-macro\"]","target":427768481117760528,"profile":9347176690363218083,"path":18305302880047366859,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-f499e9a6036036ac/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/dep-build-script-build-script-build b/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/invoked.timestamp b/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/proc-macro2-f499e9a6036036ac/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/quote-c587c0da2c753bd2/dep-lib-quote b/target/debug/.fingerprint/quote-c587c0da2c753bd2/dep-lib-quote deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/quote-c587c0da2c753bd2/dep-lib-quote and /dev/null differ diff --git a/target/debug/.fingerprint/quote-c587c0da2c753bd2/invoked.timestamp b/target/debug/.fingerprint/quote-c587c0da2c753bd2/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/quote-c587c0da2c753bd2/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/quote-c587c0da2c753bd2/lib-quote b/target/debug/.fingerprint/quote-c587c0da2c753bd2/lib-quote deleted file mode 100644 index 26dfed4..0000000 --- a/target/debug/.fingerprint/quote-c587c0da2c753bd2/lib-quote +++ /dev/null @@ -1 +0,0 @@ -f157f793fc6ce629 \ No newline at end of file diff --git a/target/debug/.fingerprint/quote-c587c0da2c753bd2/lib-quote.json b/target/debug/.fingerprint/quote-c587c0da2c753bd2/lib-quote.json deleted file mode 100644 index 15d7f2f..0000000 --- a/target/debug/.fingerprint/quote-c587c0da2c753bd2/lib-quote.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"proc-macro\"]","target":10824007166531090010,"profile":9347176690363218083,"path":16872971562102161078,"deps":[[2275467556785573469,"proc_macro2",false,2555513712632856395]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-c587c0da2c753bd2/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/rand-1a353e645c41dc3c/invoked.timestamp b/target/debug/.fingerprint/rand-1a353e645c41dc3c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/rand-1a353e645c41dc3c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/rand-1a353e645c41dc3c/lib-rand b/target/debug/.fingerprint/rand-1a353e645c41dc3c/lib-rand deleted file mode 100644 index b0a530e..0000000 --- a/target/debug/.fingerprint/rand-1a353e645c41dc3c/lib-rand +++ /dev/null @@ -1 +0,0 @@ -7631002ccee243e0 \ No newline at end of file diff --git a/target/debug/.fingerprint/rand-1a353e645c41dc3c/lib-rand.json b/target/debug/.fingerprint/rand-1a353e645c41dc3c/lib-rand.json deleted file mode 100644 index 595c53c..0000000 --- a/target/debug/.fingerprint/rand-1a353e645c41dc3c/lib-rand.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","target":17786277519600763311,"profile":7890341536494525235,"path":5886328101731989687,"deps":[[1565494060434293766,"rand_core",false,4966970082444600115],[2798846484360888381,"libc",false,17280950622636566663],[12017018019769837221,"rand_chacha",false,495094461731631745]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-1a353e645c41dc3c/dep-lib-rand"}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/rand-8193d3c7bb95b526/dep-lib-rand b/target/debug/.fingerprint/rand-8193d3c7bb95b526/dep-lib-rand deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/rand-8193d3c7bb95b526/dep-lib-rand and /dev/null differ diff --git a/target/debug/.fingerprint/rand-8193d3c7bb95b526/invoked.timestamp b/target/debug/.fingerprint/rand-8193d3c7bb95b526/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/rand-8193d3c7bb95b526/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/rand-8193d3c7bb95b526/lib-rand b/target/debug/.fingerprint/rand-8193d3c7bb95b526/lib-rand deleted file mode 100644 index 02947bb..0000000 --- a/target/debug/.fingerprint/rand-8193d3c7bb95b526/lib-rand +++ /dev/null @@ -1 +0,0 @@ -e6dd4c5c7f04bd8d \ No newline at end of file diff --git a/target/debug/.fingerprint/rand-8193d3c7bb95b526/lib-rand.json b/target/debug/.fingerprint/rand-8193d3c7bb95b526/lib-rand.json deleted file mode 100644 index 7aab4b3..0000000 --- a/target/debug/.fingerprint/rand-8193d3c7bb95b526/lib-rand.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","target":17786277519600763311,"profile":7767436220172716501,"path":5886328101731989687,"deps":[[1565494060434293766,"rand_core",false,15150717411892395028],[2798846484360888381,"libc",false,14372125050684023642],[12017018019769837221,"rand_chacha",false,17564091367553805237]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-8193d3c7bb95b526/dep-lib-rand"}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/invoked.timestamp b/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/lib-rand_chacha b/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/lib-rand_chacha deleted file mode 100644 index 19a664b..0000000 --- a/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/lib-rand_chacha +++ /dev/null @@ -1 +0,0 @@ -81f2c631caedde06 \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/lib-rand_chacha.json b/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/lib-rand_chacha.json deleted file mode 100644 index 2d74d9e..0000000 --- a/target/debug/.fingerprint/rand_chacha-5990969e7a2e6f84/lib-rand_chacha.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":3291831172522752161,"profile":7890341536494525235,"path":16178273441518982686,"deps":[[1565494060434293766,"rand_core",false,4966970082444600115],[4511957894497802922,"ppv_lite86",false,2122997604557194746]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-5990969e7a2e6f84/dep-lib-rand_chacha"}}],"rustflags":[],"metadata":2235018391756195449,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/dep-lib-rand_chacha b/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/dep-lib-rand_chacha deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/dep-lib-rand_chacha and /dev/null differ diff --git a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/invoked.timestamp b/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/lib-rand_chacha b/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/lib-rand_chacha deleted file mode 100644 index 09660e8..0000000 --- a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/lib-rand_chacha +++ /dev/null @@ -1 +0,0 @@ -b5ab8c4d0a30c0f3 \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/lib-rand_chacha.json b/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/lib-rand_chacha.json deleted file mode 100644 index cd7940b..0000000 --- a/target/debug/.fingerprint/rand_chacha-8895ce8815ecc39a/lib-rand_chacha.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":3291831172522752161,"profile":7767436220172716501,"path":16178273441518982686,"deps":[[1565494060434293766,"rand_core",false,15150717411892395028],[4511957894497802922,"ppv_lite86",false,8072533121234098787]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-8895ce8815ecc39a/dep-lib-rand_chacha"}}],"rustflags":[],"metadata":2235018391756195449,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_core-965b6332d4214efa/dep-lib-rand_core b/target/debug/.fingerprint/rand_core-965b6332d4214efa/dep-lib-rand_core deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/rand_core-965b6332d4214efa/dep-lib-rand_core and /dev/null differ diff --git a/target/debug/.fingerprint/rand_core-965b6332d4214efa/invoked.timestamp b/target/debug/.fingerprint/rand_core-965b6332d4214efa/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/rand_core-965b6332d4214efa/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_core-965b6332d4214efa/lib-rand_core b/target/debug/.fingerprint/rand_core-965b6332d4214efa/lib-rand_core deleted file mode 100644 index 6f2fead..0000000 --- a/target/debug/.fingerprint/rand_core-965b6332d4214efa/lib-rand_core +++ /dev/null @@ -1 +0,0 @@ -14fc2bd4362942d2 \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_core-965b6332d4214efa/lib-rand_core.json b/target/debug/.fingerprint/rand_core-965b6332d4214efa/lib-rand_core.json deleted file mode 100644 index 8089399..0000000 --- a/target/debug/.fingerprint/rand_core-965b6332d4214efa/lib-rand_core.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"getrandom\", \"std\"]","target":3042383198953219556,"profile":7767436220172716501,"path":12854911787025030344,"deps":[[12202314575583203756,"getrandom",false,16437883937074771549]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-965b6332d4214efa/dep-lib-rand_core"}}],"rustflags":[],"metadata":3275543247315060703,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_core-cd738862859fbef9/invoked.timestamp b/target/debug/.fingerprint/rand_core-cd738862859fbef9/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/rand_core-cd738862859fbef9/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_core-cd738862859fbef9/lib-rand_core b/target/debug/.fingerprint/rand_core-cd738862859fbef9/lib-rand_core deleted file mode 100644 index 4349aef..0000000 --- a/target/debug/.fingerprint/rand_core-cd738862859fbef9/lib-rand_core +++ /dev/null @@ -1 +0,0 @@ -33631a4ef938ee44 \ No newline at end of file diff --git a/target/debug/.fingerprint/rand_core-cd738862859fbef9/lib-rand_core.json b/target/debug/.fingerprint/rand_core-cd738862859fbef9/lib-rand_core.json deleted file mode 100644 index 7d6c63f..0000000 --- a/target/debug/.fingerprint/rand_core-cd738862859fbef9/lib-rand_core.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"getrandom\", \"std\"]","target":3042383198953219556,"profile":7890341536494525235,"path":12854911787025030344,"deps":[[12202314575583203756,"getrandom",false,17454043043568529328]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-cd738862859fbef9/dep-lib-rand_core"}}],"rustflags":[],"metadata":3275543247315060703,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/scoped-tls-324980b35444534d/dep-lib-scoped-tls b/target/debug/.fingerprint/scoped-tls-324980b35444534d/dep-lib-scoped-tls deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/scoped-tls-324980b35444534d/dep-lib-scoped-tls and /dev/null differ diff --git a/target/debug/.fingerprint/scoped-tls-324980b35444534d/invoked.timestamp b/target/debug/.fingerprint/scoped-tls-324980b35444534d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/scoped-tls-324980b35444534d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/scoped-tls-324980b35444534d/lib-scoped-tls b/target/debug/.fingerprint/scoped-tls-324980b35444534d/lib-scoped-tls deleted file mode 100644 index 43e8470..0000000 --- a/target/debug/.fingerprint/scoped-tls-324980b35444534d/lib-scoped-tls +++ /dev/null @@ -1 +0,0 @@ -d814bc124955f752 \ No newline at end of file diff --git a/target/debug/.fingerprint/scoped-tls-324980b35444534d/lib-scoped-tls.json b/target/debug/.fingerprint/scoped-tls-324980b35444534d/lib-scoped-tls.json deleted file mode 100644 index 7888527..0000000 --- a/target/debug/.fingerprint/scoped-tls-324980b35444534d/lib-scoped-tls.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13840842063485176643,"profile":7767436220172716501,"path":13612145635931593162,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scoped-tls-324980b35444534d/dep-lib-scoped-tls"}}],"rustflags":[],"metadata":2149360364700900626,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/invoked.timestamp b/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/lib-scoped-tls b/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/lib-scoped-tls deleted file mode 100644 index d049208..0000000 --- a/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/lib-scoped-tls +++ /dev/null @@ -1 +0,0 @@ -e66af55b8e1be44c \ No newline at end of file diff --git a/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/lib-scoped-tls.json b/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/lib-scoped-tls.json deleted file mode 100644 index f67bd17..0000000 --- a/target/debug/.fingerprint/scoped-tls-5ece93587db1fc09/lib-scoped-tls.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13840842063485176643,"profile":7890341536494525235,"path":13612145635931593162,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scoped-tls-5ece93587db1fc09/dep-lib-scoped-tls"}}],"rustflags":[],"metadata":2149360364700900626,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smallvec-0405ca9e73475382/invoked.timestamp b/target/debug/.fingerprint/smallvec-0405ca9e73475382/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smallvec-0405ca9e73475382/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smallvec-0405ca9e73475382/lib-smallvec b/target/debug/.fingerprint/smallvec-0405ca9e73475382/lib-smallvec deleted file mode 100644 index 7f172f0..0000000 --- a/target/debug/.fingerprint/smallvec-0405ca9e73475382/lib-smallvec +++ /dev/null @@ -1 +0,0 @@ -4bad8261733dfbf7 \ No newline at end of file diff --git a/target/debug/.fingerprint/smallvec-0405ca9e73475382/lib-smallvec.json b/target/debug/.fingerprint/smallvec-0405ca9e73475382/lib-smallvec.json deleted file mode 100644 index 789620a..0000000 --- a/target/debug/.fingerprint/smallvec-0405ca9e73475382/lib-smallvec.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":15021638563153388439,"profile":7890341536494525235,"path":1772779278127255522,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-0405ca9e73475382/dep-lib-smallvec"}}],"rustflags":[],"metadata":15767570753543272391,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/dep-lib-smallvec b/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/dep-lib-smallvec deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/dep-lib-smallvec and /dev/null differ diff --git a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/invoked.timestamp b/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/lib-smallvec b/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/lib-smallvec deleted file mode 100644 index 8700156..0000000 --- a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/lib-smallvec +++ /dev/null @@ -1 +0,0 @@ -2440190ff0e9093f \ No newline at end of file diff --git a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/lib-smallvec.json b/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/lib-smallvec.json deleted file mode 100644 index 43bde57..0000000 --- a/target/debug/.fingerprint/smallvec-1dc57ee99c36d207/lib-smallvec.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":15021638563153388439,"profile":7767436220172716501,"path":1772779278127255522,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-1dc57ee99c36d207/dep-lib-smallvec"}}],"rustflags":[],"metadata":15767570753543272391,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/invoked.timestamp b/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/lib-smithay-client-toolkit b/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/lib-smithay-client-toolkit deleted file mode 100644 index 379e17f..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/lib-smithay-client-toolkit +++ /dev/null @@ -1 +0,0 @@ -38e99159ee55f7d1 \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/lib-smithay-client-toolkit.json b/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/lib-smithay-client-toolkit.json deleted file mode 100644 index ecc964d..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/lib-smithay-client-toolkit.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\"]","target":1645736066008932730,"profile":7890341536494525235,"path":18359400088547290815,"deps":[[2755275374599566682,"memmap2",false,18122188507799454724],[3454912282745707850,"dlib",false,18294947795844331311],[6685014296130524576,"lazy_static",false,12361841130577575402],[11003812557521234370,"log",false,15907367263912976285],[11213784026784147602,"wayland_cursor",false,905238508962732672],[12492735776745679186,"wayland_protocols",false,6428958792323301270],[14051957667571541382,"bitflags",false,79797214161837812],[16651451181094857152,"nix",false,16162759019059463327],[16832502711214903246,"build_script_build",false,10002580751532494225],[18047320069137138570,"wayland_client",false,7299837340470476530]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smithay-client-toolkit-12ebb2c7d38692cc/dep-lib-smithay-client-toolkit"}}],"rustflags":[],"metadata":6713962624978474474,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-5c68958f46e1c5a0/run-build-script-build-script-build b/target/debug/.fingerprint/smithay-client-toolkit-5c68958f46e1c5a0/run-build-script-build-script-build deleted file mode 100644 index 90f5088..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-5c68958f46e1c5a0/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -910d4194324ed08a \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-5c68958f46e1c5a0/run-build-script-build-script-build.json b/target/debug/.fingerprint/smithay-client-toolkit-5c68958f46e1c5a0/run-build-script-build-script-build.json deleted file mode 100644 index ce51708..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-5c68958f46e1c5a0/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[16832502711214903246,"build_script_build",false,7574095066727934046]],"local":[{"Precalculated":"0.16.0"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/dep-lib-smithay-client-toolkit b/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/dep-lib-smithay-client-toolkit deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/dep-lib-smithay-client-toolkit and /dev/null differ diff --git a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/invoked.timestamp b/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/lib-smithay-client-toolkit b/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/lib-smithay-client-toolkit deleted file mode 100644 index 43d4529..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/lib-smithay-client-toolkit +++ /dev/null @@ -1 +0,0 @@ -11a021170ef3135e \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/lib-smithay-client-toolkit.json b/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/lib-smithay-client-toolkit.json deleted file mode 100644 index de479f7..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-68152473652351e7/lib-smithay-client-toolkit.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\"]","target":1645736066008932730,"profile":7767436220172716501,"path":18359400088547290815,"deps":[[2755275374599566682,"memmap2",false,9818828715120928057],[3454912282745707850,"dlib",false,14041548851230879835],[6685014296130524576,"lazy_static",false,10097209244382155113],[11003812557521234370,"log",false,7517659369445329520],[11213784026784147602,"wayland_cursor",false,2173458457910912429],[12492735776745679186,"wayland_protocols",false,14362147141839804550],[14051957667571541382,"bitflags",false,11767758915277160585],[16651451181094857152,"nix",false,8901854587287769599],[16832502711214903246,"build_script_build",false,10002580751532494225],[18047320069137138570,"wayland_client",false,12526926313511415196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smithay-client-toolkit-68152473652351e7/dep-lib-smithay-client-toolkit"}}],"rustflags":[],"metadata":6713962624978474474,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/build-script-build-script-build b/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/build-script-build-script-build deleted file mode 100644 index f2553c3..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -5e685b7b55971c69 \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/build-script-build-script-build.json b/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/build-script-build-script-build.json deleted file mode 100644 index cefb1b4..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\"]","target":2297296889237502566,"profile":9347176690363218083,"path":1236036709910078898,"deps":[[7306026711749381407,"pkg_config",false,1822610351969796484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6713962624978474474,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/dep-build-script-build-script-build b/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/invoked.timestamp b/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smithay-client-toolkit-dbf0c88239f45546/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/dep-lib-smithay-clipboard b/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/dep-lib-smithay-clipboard deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/dep-lib-smithay-clipboard and /dev/null differ diff --git a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/invoked.timestamp b/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/lib-smithay-clipboard b/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/lib-smithay-clipboard deleted file mode 100644 index 9033e32..0000000 --- a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/lib-smithay-clipboard +++ /dev/null @@ -1 +0,0 @@ -c044dc3974e64bc3 \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/lib-smithay-clipboard.json b/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/lib-smithay-clipboard.json deleted file mode 100644 index c477cb1..0000000 --- a/target/debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/lib-smithay-clipboard.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"dlopen\"]","target":18341345375543786598,"profile":7767436220172716501,"path":12127985698073258857,"deps":[[16832502711214903246,"sctk",false,6779029105965899793],[18047320069137138570,"wayland_client",false,12526926313511415196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smithay-clipboard-059ff13c7cdf0333/dep-lib-smithay-clipboard"}}],"rustflags":[],"metadata":3331842656219828140,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/invoked.timestamp b/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/lib-smithay-clipboard b/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/lib-smithay-clipboard deleted file mode 100644 index d2433b4..0000000 --- a/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/lib-smithay-clipboard +++ /dev/null @@ -1 +0,0 @@ -bacf0c29b190d9f5 \ No newline at end of file diff --git a/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/lib-smithay-clipboard.json b/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/lib-smithay-clipboard.json deleted file mode 100644 index 4074701..0000000 --- a/target/debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/lib-smithay-clipboard.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"dlopen\"]","target":18341345375543786598,"profile":7890341536494525235,"path":12127985698073258857,"deps":[[16832502711214903246,"sctk",false,15129655955367782712],[18047320069137138570,"wayland_client",false,7299837340470476530]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smithay-clipboard-4edb966decaa45ea/dep-lib-smithay-clipboard"}}],"rustflags":[],"metadata":3331842656219828140,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/dep-lib-unicode-ident b/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/dep-lib-unicode-ident deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/dep-lib-unicode-ident and /dev/null differ diff --git a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/invoked.timestamp b/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/lib-unicode-ident b/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/lib-unicode-ident deleted file mode 100644 index 05f2185..0000000 --- a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/lib-unicode-ident +++ /dev/null @@ -1 +0,0 @@ -dde0820d69459ab8 \ No newline at end of file diff --git a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/lib-unicode-ident.json b/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/lib-unicode-ident.json deleted file mode 100644 index d828ffb..0000000 --- a/target/debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/lib-unicode-ident.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":7243519288898877878,"profile":9347176690363218083,"path":6202606100060907640,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-4b9d497d4b60b3e8/dep-lib-unicode-ident"}}],"rustflags":[],"metadata":1159190378059262574,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-25c68c76169de60a/invoked.timestamp b/target/debug/.fingerprint/wayland-client-25c68c76169de60a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-client-25c68c76169de60a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-25c68c76169de60a/lib-wayland-client b/target/debug/.fingerprint/wayland-client-25c68c76169de60a/lib-wayland-client deleted file mode 100644 index f9b16db..0000000 --- a/target/debug/.fingerprint/wayland-client-25c68c76169de60a/lib-wayland-client +++ /dev/null @@ -1 +0,0 @@ -f2fedf8c623b4e65 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-25c68c76169de60a/lib-wayland-client.json b/target/debug/.fingerprint/wayland-client-25c68c76169de60a/lib-wayland-client.json deleted file mode 100644 index 855359c..0000000 --- a/target/debug/.fingerprint/wayland-client-25c68c76169de60a/lib-wayland-client.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\", \"scoped-tls\", \"use_system_lib\"]","target":8830642575506446204,"profile":7890341536494525235,"path":11920666446233189562,"deps":[[2798846484360888381,"libc",false,17280950622636566663],[2920709549851776663,"downcast_rs",false,17005717770411000443],[6826192140200703270,"scoped_tls",false,5540583739814669030],[8078440120124259786,"wayland_commons",false,13130610163574164739],[12329203111399117198,"wayland_sys",false,1565079048368550909],[14051957667571541382,"bitflags",false,79797214161837812],[16651451181094857152,"nix",false,16162759019059463327],[18047320069137138570,"build_script_build",false,9521734627848016015]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-client-25c68c76169de60a/dep-lib-wayland-client"}}],"rustflags":[],"metadata":12138571088257282696,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/dep-lib-wayland-client b/target/debug/.fingerprint/wayland-client-48c729b8cd738452/dep-lib-wayland-client deleted file mode 100644 index 1eca11d..0000000 Binary files a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/dep-lib-wayland-client and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/invoked.timestamp b/target/debug/.fingerprint/wayland-client-48c729b8cd738452/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/lib-wayland-client b/target/debug/.fingerprint/wayland-client-48c729b8cd738452/lib-wayland-client deleted file mode 100644 index 6092739..0000000 --- a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/lib-wayland-client +++ /dev/null @@ -1 +0,0 @@ -9c6d57941c95d8ad \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/lib-wayland-client.json b/target/debug/.fingerprint/wayland-client-48c729b8cd738452/lib-wayland-client.json deleted file mode 100644 index 8ca1e1c..0000000 --- a/target/debug/.fingerprint/wayland-client-48c729b8cd738452/lib-wayland-client.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\", \"scoped-tls\", \"use_system_lib\"]","target":8830642575506446204,"profile":7767436220172716501,"path":11920666446233189562,"deps":[[2798846484360888381,"libc",false,14372125050684023642],[2920709549851776663,"downcast_rs",false,16062056394912219371],[6826192140200703270,"scoped_tls",false,5978340802692912344],[8078440120124259786,"wayland_commons",false,14901139202683302874],[12329203111399117198,"wayland_sys",false,2271893690121031729],[14051957667571541382,"bitflags",false,11767758915277160585],[16651451181094857152,"nix",false,8901854587287769599],[18047320069137138570,"build_script_build",false,9521734627848016015]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-client-48c729b8cd738452/dep-lib-wayland-client"}}],"rustflags":[],"metadata":12138571088257282696,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/build-script-build-script-build b/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/build-script-build-script-build deleted file mode 100644 index 271b36d..0000000 --- a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -7fc31995d17a296c \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/build-script-build-script-build.json b/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/build-script-build-script-build.json deleted file mode 100644 index e964127..0000000 --- a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\", \"scoped-tls\", \"use_system_lib\"]","target":2297296889237502566,"profile":9347176690363218083,"path":13739413380317238868,"deps":[[7784637021643553129,"wayland_scanner",false,13273796450757521398]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-client-8dc4fa5fd318353d/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":12138571088257282696,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/dep-build-script-build-script-build b/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/invoked.timestamp b/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-client-8dc4fa5fd318353d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-b35bc2c9b68d81d5/run-build-script-build-script-build b/target/debug/.fingerprint/wayland-client-b35bc2c9b68d81d5/run-build-script-build-script-build deleted file mode 100644 index 5718b49..0000000 --- a/target/debug/.fingerprint/wayland-client-b35bc2c9b68d81d5/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -8fd06a1a32ff2384 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-client-b35bc2c9b68d81d5/run-build-script-build-script-build.json b/target/debug/.fingerprint/wayland-client-b35bc2c9b68d81d5/run-build-script-build-script-build.json deleted file mode 100644 index dfed03b..0000000 --- a/target/debug/.fingerprint/wayland-client-b35bc2c9b68d81d5/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[18047320069137138570,"build_script_build",false,7793895670709601151]],"local":[{"RerunIfChanged":{"output":"debug/build/wayland-client-b35bc2c9b68d81d5/output","paths":["./wayland.xml"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/dep-lib-wayland-commons b/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/dep-lib-wayland-commons deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/dep-lib-wayland-commons and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/invoked.timestamp b/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/lib-wayland-commons b/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/lib-wayland-commons deleted file mode 100644 index 3bf2615..0000000 --- a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/lib-wayland-commons +++ /dev/null @@ -1 +0,0 @@ -daf395bc277bcbce \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/lib-wayland-commons.json b/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/lib-wayland-commons.json deleted file mode 100644 index feeb494..0000000 --- a/target/debug/.fingerprint/wayland-commons-385e3e89bf7667db/lib-wayland-commons.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13533037008250744741,"profile":7767436220172716501,"path":16750276836418622592,"deps":[[4424799446218848649,"once_cell",false,13144173898832520325],[12329203111399117198,"wayland_sys",false,2271893690121031729],[13327724608739232567,"smallvec",false,4542418916434591780],[16651451181094857152,"nix",false,8901854587287769599]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-commons-385e3e89bf7667db/dep-lib-wayland-commons"}}],"rustflags":[],"metadata":15453107457803631891,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/invoked.timestamp b/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/lib-wayland-commons b/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/lib-wayland-commons deleted file mode 100644 index 2e54c8a..0000000 --- a/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/lib-wayland-commons +++ /dev/null @@ -1 +0,0 @@ -03cdf8f35f4c39b6 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/lib-wayland-commons.json b/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/lib-wayland-commons.json deleted file mode 100644 index 3cc1df2..0000000 --- a/target/debug/.fingerprint/wayland-commons-acc2ace4371743a7/lib-wayland-commons.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13533037008250744741,"profile":7890341536494525235,"path":16750276836418622592,"deps":[[4424799446218848649,"once_cell",false,10487310412988600165],[12329203111399117198,"wayland_sys",false,1565079048368550909],[13327724608739232567,"smallvec",false,17868943512289062219],[16651451181094857152,"nix",false,16162759019059463327]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-commons-acc2ace4371743a7/dep-lib-wayland-commons"}}],"rustflags":[],"metadata":15453107457803631891,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/dep-lib-wayland-cursor b/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/dep-lib-wayland-cursor deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/dep-lib-wayland-cursor and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/invoked.timestamp b/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/lib-wayland-cursor b/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/lib-wayland-cursor deleted file mode 100644 index 4eb3b20..0000000 --- a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/lib-wayland-cursor +++ /dev/null @@ -1 +0,0 @@ -ad25d9b5f3ac291e \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/lib-wayland-cursor.json b/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/lib-wayland-cursor.json deleted file mode 100644 index 055d592..0000000 --- a/target/debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/lib-wayland-cursor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13312342084314954272,"profile":7767436220172716501,"path":11561334683117757127,"deps":[[5217999806347776737,"xcursor",false,15971521591320675141],[16651451181094857152,"nix",false,8901854587287769599],[18047320069137138570,"wayland_client",false,12526926313511415196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-cursor-2012058a3b1c81b4/dep-lib-wayland-cursor"}}],"rustflags":[],"metadata":15036803528122731246,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/invoked.timestamp b/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/lib-wayland-cursor b/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/lib-wayland-cursor deleted file mode 100644 index 8996574..0000000 --- a/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/lib-wayland-cursor +++ /dev/null @@ -1 +0,0 @@ -805abab3a00d900c \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/lib-wayland-cursor.json b/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/lib-wayland-cursor.json deleted file mode 100644 index 5c63f98..0000000 --- a/target/debug/.fingerprint/wayland-cursor-630fe075c198e0f3/lib-wayland-cursor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13312342084314954272,"profile":7890341536494525235,"path":11561334683117757127,"deps":[[5217999806347776737,"xcursor",false,4161722791071524952],[16651451181094857152,"nix",false,16162759019059463327],[18047320069137138570,"wayland_client",false,7299837340470476530]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-cursor-630fe075c198e0f3/dep-lib-wayland-cursor"}}],"rustflags":[],"metadata":15036803528122731246,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/build-script-build-script-build b/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/build-script-build-script-build deleted file mode 100644 index 4888618..0000000 --- a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -8488b2016bafad90 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/build-script-build-script-build.json b/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/build-script-build-script-build.json deleted file mode 100644 index 52965cc..0000000 --- a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"unstable_protocols\", \"wayland-client\"]","target":2297296889237502566,"profile":9347176690363218083,"path":3223245370220743660,"deps":[[7784637021643553129,"wayland_scanner",false,13273796450757521398]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":5448603257851817465,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/dep-build-script-build-script-build b/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/invoked.timestamp b/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-protocols-15ed0ee06d6325d4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/invoked.timestamp b/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/lib-wayland-protocols b/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/lib-wayland-protocols deleted file mode 100644 index 3596552..0000000 --- a/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/lib-wayland-protocols +++ /dev/null @@ -1 +0,0 @@ -96ff0da4f53f3859 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/lib-wayland-protocols.json b/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/lib-wayland-protocols.json deleted file mode 100644 index 7c427c0..0000000 --- a/target/debug/.fingerprint/wayland-protocols-46800397ee72e9e9/lib-wayland-protocols.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"unstable_protocols\", \"wayland-client\"]","target":16039357341521637980,"profile":7890341536494525235,"path":6496046473489473682,"deps":[[8078440120124259786,"wayland_commons",false,13130610163574164739],[12492735776745679186,"build_script_build",false,8637062935870598367],[14051957667571541382,"bitflags",false,79797214161837812],[18047320069137138570,"wayland_client",false,7299837340470476530]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-protocols-46800397ee72e9e9/dep-lib-wayland-protocols"}}],"rustflags":[],"metadata":5448603257851817465,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/dep-lib-wayland-protocols b/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/dep-lib-wayland-protocols deleted file mode 100644 index 91f6446..0000000 Binary files a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/dep-lib-wayland-protocols and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/invoked.timestamp b/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/lib-wayland-protocols b/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/lib-wayland-protocols deleted file mode 100644 index f08d010..0000000 --- a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/lib-wayland-protocols +++ /dev/null @@ -1 +0,0 @@ -86d84049bb9850c7 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/lib-wayland-protocols.json b/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/lib-wayland-protocols.json deleted file mode 100644 index 46abdbf..0000000 --- a/target/debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/lib-wayland-protocols.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"unstable_protocols\", \"wayland-client\"]","target":16039357341521637980,"profile":7767436220172716501,"path":6496046473489473682,"deps":[[8078440120124259786,"wayland_commons",false,14901139202683302874],[12492735776745679186,"build_script_build",false,8637062935870598367],[14051957667571541382,"bitflags",false,11767758915277160585],[18047320069137138570,"wayland_client",false,12526926313511415196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-protocols-63b7cd3dbe7a95a9/dep-lib-wayland-protocols"}}],"rustflags":[],"metadata":5448603257851817465,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-8fc0dcc75e253179/run-build-script-build-script-build b/target/debug/.fingerprint/wayland-protocols-8fc0dcc75e253179/run-build-script-build-script-build deleted file mode 100644 index ae24216..0000000 --- a/target/debug/.fingerprint/wayland-protocols-8fc0dcc75e253179/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -df6c42a3fa02dd77 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-protocols-8fc0dcc75e253179/run-build-script-build-script-build.json b/target/debug/.fingerprint/wayland-protocols-8fc0dcc75e253179/run-build-script-build-script-build.json deleted file mode 100644 index ab961ff..0000000 --- a/target/debug/.fingerprint/wayland-protocols-8fc0dcc75e253179/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[12492735776745679186,"build_script_build",false,10425181586557405316]],"local":[{"RerunIfChanged":{"output":"debug/build/wayland-protocols-8fc0dcc75e253179/output","paths":["./protocols/stable/presentation-time/presentation-time.xml","./protocols/stable/viewporter/viewporter.xml","./protocols/stable/xdg-shell/xdg-shell.xml","./misc/gtk-primary-selection.xml","./misc/input-method-unstable-v2.xml","./misc/server-decoration.xml","./protocols/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml","./protocols/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml","./protocols/unstable/input-method/input-method-unstable-v1.xml","./protocols/unstable/input-timestamps/input-timestamps-unstable-v1.xml","./protocols/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml","./protocols/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml","./protocols/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml","./protocols/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml","./protocols/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml","./protocols/unstable/primary-selection/primary-selection-unstable-v1.xml","./protocols/unstable/relative-pointer/relative-pointer-unstable-v1.xml","./protocols/unstable/tablet/tablet-unstable-v1.xml","./protocols/unstable/tablet/tablet-unstable-v2.xml","./protocols/unstable/text-input/text-input-unstable-v1.xml","./protocols/unstable/text-input/text-input-unstable-v3.xml","./protocols/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml","./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml","./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml","./protocols/unstable/xdg-output/xdg-output-unstable-v1.xml","./protocols/unstable/xdg-shell/xdg-shell-unstable-v5.xml","./protocols/unstable/xdg-shell/xdg-shell-unstable-v6.xml","./protocols/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml","./wlr-protocols/unstable/wlr-data-control-unstable-v1.xml","./wlr-protocols/unstable/wlr-export-dmabuf-unstable-v1.xml","./wlr-protocols/unstable/wlr-foreign-toplevel-management-unstable-v1.xml","./wlr-protocols/unstable/wlr-gamma-control-unstable-v1.xml","./wlr-protocols/unstable/wlr-input-inhibitor-unstable-v1.xml","./wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml","./wlr-protocols/unstable/wlr-output-management-unstable-v1.xml","./wlr-protocols/unstable/wlr-output-power-management-unstable-v1.xml","./wlr-protocols/unstable/wlr-screencopy-unstable-v1.xml","./wlr-protocols/unstable/wlr-virtual-pointer-unstable-v1.xml"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/dep-lib-wayland-scanner b/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/dep-lib-wayland-scanner deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/dep-lib-wayland-scanner and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/invoked.timestamp b/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/lib-wayland-scanner b/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/lib-wayland-scanner deleted file mode 100644 index 8e8b0be..0000000 --- a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/lib-wayland-scanner +++ /dev/null @@ -1 +0,0 @@ -f62f3e5c8bff35b8 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/lib-wayland-scanner.json b/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/lib-wayland-scanner.json deleted file mode 100644 index 2d671f3..0000000 --- a/target/debug/.fingerprint/wayland-scanner-61d78019118a69e6/lib-wayland-scanner.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13693045885187626535,"profile":9347176690363218083,"path":279432381414401243,"deps":[[2275467556785573469,"proc_macro2",false,2555513712632856395],[3475017103742128739,"quote",false,3019220432268515313],[14312076917259852888,"xml",false,4505545465281738903]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-scanner-61d78019118a69e6/dep-lib-wayland-scanner"}}],"rustflags":[],"metadata":12721312787639587656,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/invoked.timestamp b/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/lib-wayland-sys b/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/lib-wayland-sys deleted file mode 100644 index 697bb42..0000000 --- a/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/lib-wayland-sys +++ /dev/null @@ -1 +0,0 @@ -fdf369331a47b815 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/lib-wayland-sys.json b/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/lib-wayland-sys.json deleted file mode 100644 index 7afa86b..0000000 --- a/target/debug/.fingerprint/wayland-sys-22d912477fa67eba/lib-wayland-sys.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"dlib\", \"dlopen\", \"lazy_static\"]","target":6996853422386109668,"profile":7890341536494525235,"path":10066269731329268278,"deps":[[3454912282745707850,"dlib",false,18294947795844331311],[6685014296130524576,"lazy_static",false,12361841130577575402],[12329203111399117198,"build_script_build",false,3095090991042925752]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-sys-22d912477fa67eba/dep-lib-wayland-sys"}}],"rustflags":[],"metadata":8369019086640056789,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/dep-lib-wayland-sys b/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/dep-lib-wayland-sys deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/dep-lib-wayland-sys and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/invoked.timestamp b/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/lib-wayland-sys b/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/lib-wayland-sys deleted file mode 100644 index 2e926fc..0000000 --- a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/lib-wayland-sys +++ /dev/null @@ -1 +0,0 @@ -31901d2f4663871f \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/lib-wayland-sys.json b/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/lib-wayland-sys.json deleted file mode 100644 index 5b1cf4b..0000000 --- a/target/debug/.fingerprint/wayland-sys-529ff8af399e8d39/lib-wayland-sys.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"dlib\", \"dlopen\", \"lazy_static\"]","target":6996853422386109668,"profile":7767436220172716501,"path":10066269731329268278,"deps":[[3454912282745707850,"dlib",false,14041548851230879835],[6685014296130524576,"lazy_static",false,10097209244382155113],[12329203111399117198,"build_script_build",false,3095090991042925752]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-sys-529ff8af399e8d39/dep-lib-wayland-sys"}}],"rustflags":[],"metadata":8369019086640056789,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-c96f9eaaeb507de6/run-build-script-build-script-build b/target/debug/.fingerprint/wayland-sys-c96f9eaaeb507de6/run-build-script-build-script-build deleted file mode 100644 index 56bb15f..0000000 --- a/target/debug/.fingerprint/wayland-sys-c96f9eaaeb507de6/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -b814a09cdbf8f32a \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-c96f9eaaeb507de6/run-build-script-build-script-build.json b/target/debug/.fingerprint/wayland-sys-c96f9eaaeb507de6/run-build-script-build-script-build.json deleted file mode 100644 index 41f24ae..0000000 --- a/target/debug/.fingerprint/wayland-sys-c96f9eaaeb507de6/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[12329203111399117198,"build_script_build",false,119313061359826351]],"local":[{"Precalculated":"0.29.5"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/build-script-build-script-build b/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/build-script-build-script-build deleted file mode 100644 index aff7cb2..0000000 --- a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -afb56adf98e2a701 \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/build-script-build-script-build.json b/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/build-script-build-script-build.json deleted file mode 100644 index ad2e5e0..0000000 --- a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"dlib\", \"dlopen\", \"lazy_static\"]","target":2297296889237502566,"profile":9347176690363218083,"path":12292591643432465670,"deps":[[7306026711749381407,"pkg_config",false,1822610351969796484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":8369019086640056789,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/dep-build-script-build-script-build b/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/dep-build-script-build-script-build and /dev/null differ diff --git a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/invoked.timestamp b/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/wayland-sys-ccaf7fb8a3f98f82/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/invoked.timestamp b/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/lib-x11-clipboard b/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/lib-x11-clipboard deleted file mode 100644 index dc6bcea..0000000 --- a/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/lib-x11-clipboard +++ /dev/null @@ -1 +0,0 @@ -d2c7e8f1c3625fc6 \ No newline at end of file diff --git a/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/lib-x11-clipboard.json b/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/lib-x11-clipboard.json deleted file mode 100644 index 12ee18d..0000000 --- a/target/debug/.fingerprint/x11-clipboard-41da22f4843989d1/lib-x11-clipboard.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3724932318939941341,"profile":7890341536494525235,"path":7630385497493509968,"deps":[[17880482883397757429,"x11rb",false,14227967839250043563]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/x11-clipboard-41da22f4843989d1/dep-lib-x11-clipboard"}}],"rustflags":[],"metadata":8750150688868579534,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/dep-lib-x11-clipboard b/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/dep-lib-x11-clipboard deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/dep-lib-x11-clipboard and /dev/null differ diff --git a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/invoked.timestamp b/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/lib-x11-clipboard b/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/lib-x11-clipboard deleted file mode 100644 index 50fddfa..0000000 --- a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/lib-x11-clipboard +++ /dev/null @@ -1 +0,0 @@ -216c066cd8d50a1f \ No newline at end of file diff --git a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/lib-x11-clipboard.json b/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/lib-x11-clipboard.json deleted file mode 100644 index 52a8bb4..0000000 --- a/target/debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/lib-x11-clipboard.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3724932318939941341,"profile":7767436220172716501,"path":7630385497493509968,"deps":[[17880482883397757429,"x11rb",false,7577276885453516163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/x11-clipboard-71c1e68ba049cd47/dep-lib-x11-clipboard"}}],"rustflags":[],"metadata":8750150688868579534,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/invoked.timestamp b/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/lib-x11rb b/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/lib-x11rb deleted file mode 100644 index cdf8246..0000000 --- a/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/lib-x11rb +++ /dev/null @@ -1 +0,0 @@ -ab522ee65de573c5 \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/lib-x11rb.json b/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/lib-x11rb.json deleted file mode 100644 index 08384c1..0000000 --- a/target/debug/.fingerprint/x11rb-a9ccc38f857b63cf/lib-x11rb.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"render\", \"shape\", \"xfixes\"]","target":16975432436819232461,"profile":7890341536494525235,"path":5627129961152325665,"deps":[[6025843456484356564,"x11rb_protocol",false,13066970865365858032],[13892780867721656537,"gethostname",false,17421881247801728932],[16651451181094857152,"nix",false,16162759019059463327]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/x11rb-a9ccc38f857b63cf/dep-lib-x11rb"}}],"rustflags":[],"metadata":13849931517493031234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-c2f18665ca686838/dep-lib-x11rb b/target/debug/.fingerprint/x11rb-c2f18665ca686838/dep-lib-x11rb deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/x11rb-c2f18665ca686838/dep-lib-x11rb and /dev/null differ diff --git a/target/debug/.fingerprint/x11rb-c2f18665ca686838/invoked.timestamp b/target/debug/.fingerprint/x11rb-c2f18665ca686838/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/x11rb-c2f18665ca686838/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-c2f18665ca686838/lib-x11rb b/target/debug/.fingerprint/x11rb-c2f18665ca686838/lib-x11rb deleted file mode 100644 index 80348d3..0000000 --- a/target/debug/.fingerprint/x11rb-c2f18665ca686838/lib-x11rb +++ /dev/null @@ -1 +0,0 @@ -832d3c622ee52769 \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-c2f18665ca686838/lib-x11rb.json b/target/debug/.fingerprint/x11rb-c2f18665ca686838/lib-x11rb.json deleted file mode 100644 index aa19c2d..0000000 --- a/target/debug/.fingerprint/x11rb-c2f18665ca686838/lib-x11rb.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"render\", \"shape\", \"xfixes\"]","target":16975432436819232461,"profile":7767436220172716501,"path":5627129961152325665,"deps":[[6025843456484356564,"x11rb_protocol",false,5424932361873964027],[13892780867721656537,"gethostname",false,3972927060834458220],[16651451181094857152,"nix",false,8901854587287769599]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/x11rb-c2f18665ca686838/dep-lib-x11rb"}}],"rustflags":[],"metadata":13849931517493031234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/dep-lib-x11rb-protocol b/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/dep-lib-x11rb-protocol deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/dep-lib-x11rb-protocol and /dev/null differ diff --git a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/invoked.timestamp b/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/lib-x11rb-protocol b/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/lib-x11rb-protocol deleted file mode 100644 index 7e10a8c..0000000 --- a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/lib-x11rb-protocol +++ /dev/null @@ -1 +0,0 @@ -fbbb04983d3b494b \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/lib-x11rb-protocol.json b/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/lib-x11rb-protocol.json deleted file mode 100644 index a3da062..0000000 --- a/target/debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/lib-x11rb-protocol.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"nix\", \"render\", \"shape\", \"std\", \"xfixes\"]","target":16841609643206287419,"profile":7767436220172716501,"path":18131878450974829851,"deps":[[16651451181094857152,"nix",false,8901854587287769599]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/x11rb-protocol-36b5dd37b21ef277/dep-lib-x11rb-protocol"}}],"rustflags":[],"metadata":13849931517493031234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/invoked.timestamp b/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/lib-x11rb-protocol b/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/lib-x11rb-protocol deleted file mode 100644 index 4943e33..0000000 --- a/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/lib-x11rb-protocol +++ /dev/null @@ -1 +0,0 @@ -f0b68230c53457b5 \ No newline at end of file diff --git a/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/lib-x11rb-protocol.json b/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/lib-x11rb-protocol.json deleted file mode 100644 index 93c2f51..0000000 --- a/target/debug/.fingerprint/x11rb-protocol-c42851996f7e079f/lib-x11rb-protocol.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"nix\", \"render\", \"shape\", \"std\", \"xfixes\"]","target":16841609643206287419,"profile":7890341536494525235,"path":18131878450974829851,"deps":[[16651451181094857152,"nix",false,16162759019059463327]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/x11rb-protocol-c42851996f7e079f/dep-lib-x11rb-protocol"}}],"rustflags":[],"metadata":13849931517493031234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/dep-lib-xcursor b/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/dep-lib-xcursor deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/dep-lib-xcursor and /dev/null differ diff --git a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/invoked.timestamp b/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/lib-xcursor b/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/lib-xcursor deleted file mode 100644 index 74a7c33..0000000 --- a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/lib-xcursor +++ /dev/null @@ -1 +0,0 @@ -4583263d443ea6dd \ No newline at end of file diff --git a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/lib-xcursor.json b/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/lib-xcursor.json deleted file mode 100644 index ea57904..0000000 --- a/target/debug/.fingerprint/xcursor-35dfd8d490d7615d/lib-xcursor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":10727463418502062191,"profile":7767436220172716501,"path":6586148654262831305,"deps":[[6954241390595330609,"nom",false,2221747758244758458]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/xcursor-35dfd8d490d7615d/dep-lib-xcursor"}}],"rustflags":[],"metadata":4529178492820213734,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/xcursor-d20f7892877d455d/invoked.timestamp b/target/debug/.fingerprint/xcursor-d20f7892877d455d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/xcursor-d20f7892877d455d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/xcursor-d20f7892877d455d/lib-xcursor b/target/debug/.fingerprint/xcursor-d20f7892877d455d/lib-xcursor deleted file mode 100644 index b4ae8be..0000000 --- a/target/debug/.fingerprint/xcursor-d20f7892877d455d/lib-xcursor +++ /dev/null @@ -1 +0,0 @@ -58287727d468c139 \ No newline at end of file diff --git a/target/debug/.fingerprint/xcursor-d20f7892877d455d/lib-xcursor.json b/target/debug/.fingerprint/xcursor-d20f7892877d455d/lib-xcursor.json deleted file mode 100644 index 6ace5b2..0000000 --- a/target/debug/.fingerprint/xcursor-d20f7892877d455d/lib-xcursor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":10727463418502062191,"profile":7890341536494525235,"path":6586148654262831305,"deps":[[6954241390595330609,"nom",false,13011412573009021319]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/xcursor-d20f7892877d455d/dep-lib-xcursor"}}],"rustflags":[],"metadata":4529178492820213734,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/dep-lib-xml b/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/dep-lib-xml deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/dep-lib-xml and /dev/null differ diff --git a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/invoked.timestamp b/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/lib-xml b/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/lib-xml deleted file mode 100644 index 22d7f25..0000000 --- a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/lib-xml +++ /dev/null @@ -1 +0,0 @@ -97787db1bae9863e \ No newline at end of file diff --git a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/lib-xml.json b/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/lib-xml.json deleted file mode 100644 index 2d12184..0000000 --- a/target/debug/.fingerprint/xml-rs-cf142ede2d6db221/lib-xml.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14507557404748729204,"profile":9347176690363218083,"path":6908005168413633856,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/xml-rs-cf142ede2d6db221/dep-lib-xml"}}],"rustflags":[],"metadata":5156272954509598117,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/Fast_Password_Generator b/target/debug/Fast_Password_Generator deleted file mode 100755 index 70fe055..0000000 Binary files a/target/debug/Fast_Password_Generator and /dev/null differ diff --git a/target/debug/Fast_Password_Generator.d b/target/debug/Fast_Password_Generator.d deleted file mode 100644 index 43cc16d..0000000 --- a/target/debug/Fast_Password_Generator.d +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/Fast_Password_Generator: /home/mohuva/Documents/Fast_Password_Generator/src/generator.rs /home/mohuva/Documents/Fast_Password_Generator/src/main.rs diff --git a/target/debug/build/libc-b9b650ea1aa7aec8/build-script-build b/target/debug/build/libc-b9b650ea1aa7aec8/build-script-build deleted file mode 100755 index 6f0a745..0000000 Binary files a/target/debug/build/libc-b9b650ea1aa7aec8/build-script-build and /dev/null differ diff --git a/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8 b/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8 deleted file mode 100755 index 6f0a745..0000000 Binary files a/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8 and /dev/null differ diff --git a/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8.d b/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8.d deleted file mode 100644 index 9acdedf..0000000 --- a/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/libc-b9b650ea1aa7aec8/build_script_build-b9b650ea1aa7aec8.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/build.rs: diff --git a/target/debug/build/libc-e7e760dafd8cd667/invoked.timestamp b/target/debug/build/libc-e7e760dafd8cd667/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/libc-e7e760dafd8cd667/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/libc-e7e760dafd8cd667/output b/target/debug/build/libc-e7e760dafd8cd667/output deleted file mode 100644 index 5e1874c..0000000 --- a/target/debug/build/libc-e7e760dafd8cd667/output +++ /dev/null @@ -1,15 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rustc-cfg=freebsd11 -cargo:rustc-cfg=libc_priv_mod_use -cargo:rustc-cfg=libc_union -cargo:rustc-cfg=libc_const_size_of -cargo:rustc-cfg=libc_align -cargo:rustc-cfg=libc_int128 -cargo:rustc-cfg=libc_core_cvoid -cargo:rustc-cfg=libc_packedN -cargo:rustc-cfg=libc_cfg_target_vendor -cargo:rustc-cfg=libc_non_exhaustive -cargo:rustc-cfg=libc_long_array -cargo:rustc-cfg=libc_ptr_addr_of -cargo:rustc-cfg=libc_underscore_const_names -cargo:rustc-cfg=libc_const_extern_fn diff --git a/target/debug/build/libc-e7e760dafd8cd667/root-output b/target/debug/build/libc-e7e760dafd8cd667/root-output deleted file mode 100644 index 071472c..0000000 --- a/target/debug/build/libc-e7e760dafd8cd667/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/libc-e7e760dafd8cd667/out \ No newline at end of file diff --git a/target/debug/build/libc-e7e760dafd8cd667/stderr b/target/debug/build/libc-e7e760dafd8cd667/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/memchr-9cdc05fe9278eb8f/invoked.timestamp b/target/debug/build/memchr-9cdc05fe9278eb8f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/memchr-9cdc05fe9278eb8f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/memchr-9cdc05fe9278eb8f/output b/target/debug/build/memchr-9cdc05fe9278eb8f/output deleted file mode 100644 index 520482b..0000000 --- a/target/debug/build/memchr-9cdc05fe9278eb8f/output +++ /dev/null @@ -1,4 +0,0 @@ -cargo:rustc-cfg=memchr_runtime_simd -cargo:rustc-cfg=memchr_runtime_sse2 -cargo:rustc-cfg=memchr_runtime_sse42 -cargo:rustc-cfg=memchr_runtime_avx diff --git a/target/debug/build/memchr-9cdc05fe9278eb8f/root-output b/target/debug/build/memchr-9cdc05fe9278eb8f/root-output deleted file mode 100644 index 19514a8..0000000 --- a/target/debug/build/memchr-9cdc05fe9278eb8f/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/memchr-9cdc05fe9278eb8f/out \ No newline at end of file diff --git a/target/debug/build/memchr-9cdc05fe9278eb8f/stderr b/target/debug/build/memchr-9cdc05fe9278eb8f/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/memchr-c64898c1d4f72845/build-script-build b/target/debug/build/memchr-c64898c1d4f72845/build-script-build deleted file mode 100755 index 4120d09..0000000 Binary files a/target/debug/build/memchr-c64898c1d4f72845/build-script-build and /dev/null differ diff --git a/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845 b/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845 deleted file mode 100755 index 4120d09..0000000 Binary files a/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845 and /dev/null differ diff --git a/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845.d b/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845.d deleted file mode 100644 index 65dae4f..0000000 --- a/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/memchr-c64898c1d4f72845/build_script_build-c64898c1d4f72845.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/build.rs: diff --git a/target/debug/build/memoffset-87d9af1a62d80f3c/build-script-build b/target/debug/build/memoffset-87d9af1a62d80f3c/build-script-build deleted file mode 100755 index d7c6ab6..0000000 Binary files a/target/debug/build/memoffset-87d9af1a62d80f3c/build-script-build and /dev/null differ diff --git a/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c b/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c deleted file mode 100755 index d7c6ab6..0000000 Binary files a/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c and /dev/null differ diff --git a/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c.d b/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c.d deleted file mode 100644 index 74a44a5..0000000 --- a/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/memoffset-87d9af1a62d80f3c/build_script_build-87d9af1a62d80f3c.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/build.rs: diff --git a/target/debug/build/memoffset-bd75bec0a9499dc4/invoked.timestamp b/target/debug/build/memoffset-bd75bec0a9499dc4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/memoffset-bd75bec0a9499dc4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/memoffset-bd75bec0a9499dc4/out/probe0.ll b/target/debug/build/memoffset-bd75bec0a9499dc4/out/probe0.ll deleted file mode 100644 index fe2485e..0000000 --- a/target/debug/build/memoffset-bd75bec0a9499dc4/out/probe0.ll +++ /dev/null @@ -1,9 +0,0 @@ -; ModuleID = 'probe0.352f8c44edfbeb71-cgu.0' -source_filename = "probe0.352f8c44edfbeb71-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 8, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/debug/build/memoffset-bd75bec0a9499dc4/output b/target/debug/build/memoffset-bd75bec0a9499dc4/output deleted file mode 100644 index 45e8868..0000000 --- a/target/debug/build/memoffset-bd75bec0a9499dc4/output +++ /dev/null @@ -1,5 +0,0 @@ -cargo:rustc-cfg=tuple_ty -cargo:rustc-cfg=allow_clippy -cargo:rustc-cfg=maybe_uninit -cargo:rustc-cfg=doctests -cargo:rustc-cfg=raw_ref_macros diff --git a/target/debug/build/memoffset-bd75bec0a9499dc4/root-output b/target/debug/build/memoffset-bd75bec0a9499dc4/root-output deleted file mode 100644 index 4ea5cff..0000000 --- a/target/debug/build/memoffset-bd75bec0a9499dc4/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/memoffset-bd75bec0a9499dc4/out \ No newline at end of file diff --git a/target/debug/build/memoffset-bd75bec0a9499dc4/stderr b/target/debug/build/memoffset-bd75bec0a9499dc4/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/invoked.timestamp b/target/debug/build/proc-macro2-bf0cdeb6ef73382f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/output b/target/debug/build/proc-macro2-bf0cdeb6ef73382f/output deleted file mode 100644 index 18f1bc8..0000000 --- a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/output +++ /dev/null @@ -1,2 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rustc-cfg=wrap_proc_macro diff --git a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/root-output b/target/debug/build/proc-macro2-bf0cdeb6ef73382f/root-output deleted file mode 100644 index 1eeb491..0000000 --- a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/proc-macro2-bf0cdeb6ef73382f/out \ No newline at end of file diff --git a/target/debug/build/proc-macro2-bf0cdeb6ef73382f/stderr b/target/debug/build/proc-macro2-bf0cdeb6ef73382f/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/proc-macro2-f499e9a6036036ac/build-script-build b/target/debug/build/proc-macro2-f499e9a6036036ac/build-script-build deleted file mode 100755 index a2b4ff9..0000000 Binary files a/target/debug/build/proc-macro2-f499e9a6036036ac/build-script-build and /dev/null differ diff --git a/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac b/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac deleted file mode 100755 index a2b4ff9..0000000 Binary files a/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac and /dev/null differ diff --git a/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac.d b/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac.d deleted file mode 100644 index fbcd7fc..0000000 --- a/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/proc-macro2-f499e9a6036036ac/build_script_build-f499e9a6036036ac.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/build.rs: diff --git a/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/invoked.timestamp b/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/output b/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/output deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/root-output b/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/root-output deleted file mode 100644 index 6b23bea..0000000 --- a/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/out \ No newline at end of file diff --git a/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/stderr b/target/debug/build/smithay-client-toolkit-5c68958f46e1c5a0/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build-script-build b/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build-script-build deleted file mode 100755 index 6200f10..0000000 Binary files a/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build-script-build and /dev/null differ diff --git a/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546 b/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546 deleted file mode 100755 index 6200f10..0000000 Binary files a/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546 and /dev/null differ diff --git a/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546.d b/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546.d deleted file mode 100644 index 94ac5d5..0000000 --- a/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/smithay-client-toolkit-dbf0c88239f45546/build_script_build-dbf0c88239f45546.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/build.rs: diff --git a/target/debug/build/wayland-client-8dc4fa5fd318353d/build-script-build b/target/debug/build/wayland-client-8dc4fa5fd318353d/build-script-build deleted file mode 100755 index dc64639..0000000 Binary files a/target/debug/build/wayland-client-8dc4fa5fd318353d/build-script-build and /dev/null differ diff --git a/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d b/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d deleted file mode 100755 index dc64639..0000000 Binary files a/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d and /dev/null differ diff --git a/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d.d b/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d.d deleted file mode 100644 index 3479195..0000000 --- a/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-8dc4fa5fd318353d/build_script_build-8dc4fa5fd318353d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/build.rs: diff --git a/target/debug/build/wayland-client-b35bc2c9b68d81d5/invoked.timestamp b/target/debug/build/wayland-client-b35bc2c9b68d81d5/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/wayland-client-b35bc2c9b68d81d5/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs b/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs deleted file mode 100644 index 10f12ee..0000000 --- a/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs +++ /dev/null @@ -1,9923 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 8] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "core global object\n\nThe core global object. This is a special singleton object. It\nis used for internal Wayland protocol features."] -pub mod wl_display { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "global error values\n\nThese errors are global and can be emitted in response to any\nserver request."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "server couldn't find object"] - InvalidObject = 0, - #[doc = "method doesn't exist on the specified interface or malformed request"] - InvalidMethod = 1, - #[doc = "server is out of memory"] - NoMemory = 2, - #[doc = "implementation error in compositor"] - Implementation = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidObject), - 1 => Some(Error::InvalidMethod), - 2 => Some(Error::NoMemory), - 3 => Some(Error::Implementation), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "asynchronous roundtrip\n\nThe sync request asks the server to emit the 'done' event\non the returned wl_callback object. Since requests are\nhandled in-order and events are delivered in-order, this can\nbe used as a barrier to ensure all previous requests and the\nresulting events have been handled.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the event serial."] - Sync {}, - #[doc = "get global registry object\n\nThis request creates a registry object that allows the client\nto list and bind the global objects available from the\ncompositor.\n\nIt should be noted that the server side resources consumed in\nresponse to a get_registry request can only be released when the\nclient disconnects, not when the client side proxy is destroyed.\nTherefore, clients should invoke get_registry as infrequently as\npossible to avoid wasting memory."] - GetRegistry {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "sync", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_registry", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Sync { .. } => 0, - Request::GetRegistry { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Sync { .. } => 1, - Request::GetRegistry { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Sync {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetRegistry {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Sync {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetRegistry {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "fatal error event\n\nThe error event is sent out when a fatal (non-recoverable)\nerror has occurred. The object_id argument is the object\nwhere the error occurred, most often in response to a request\nto that object. The code identifies the error and is defined\nby the object interface. As such, each interface defines its\nown set of error codes. The message is a brief description\nof the error, for (debugging) convenience."] - Error { - object_id: AnonymousObject, - code: u32, - message: String, - }, - #[doc = "acknowledge object ID deletion\n\nThis event is used internally by the object ID management\nlogic. When a client deletes an object that it had created,\nthe server will send this event to acknowledge that it has\nseen the delete request. When the client receives this event,\nit will know that it can safely reuse the object ID."] - DeleteId { id: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "error", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "delete_id", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Error { .. } => 0, - Event::DeleteId { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Error { .. } => 1, - Event::DeleteId { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Error { - object_id: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - code: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - message: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::DeleteId { - id: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Error { - object_id: Proxy::::from_c_ptr(_args[0].o as *mut _) - .into(), - code: _args[1].u, - message: ::std::ffi::CStr::from_ptr(_args[2].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DeleteId { id: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDisplay(Proxy); - impl AsRef> for WlDisplay { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDisplay { - #[inline] - fn from(value: Proxy) -> Self { - WlDisplay(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDisplay) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDisplay { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDisplay { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_display"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_display_interface } - } - } - impl WlDisplay { - #[doc = "asynchronous roundtrip\n\nThe sync request asks the server to emit the 'done' event\non the returned wl_callback object. Since requests are\nhandled in-order and events are delivered in-order, this can\nbe used as a barrier to ensure all previous requests and the\nresulting events have been handled.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the event serial."] - pub fn sync(&self) -> Main { - let msg = Request::Sync {}; - self.0.send(msg, None).unwrap() - } - #[doc = "get global registry object\n\nThis request creates a registry object that allows the client\nto list and bind the global objects available from the\ncompositor.\n\nIt should be noted that the server side resources consumed in\nresponse to a get_registry request can only be released when the\nclient disconnects, not when the client side proxy is destroyed.\nTherefore, clients should invoke get_registry as infrequently as\npossible to avoid wasting memory."] - pub fn get_registry(&self) -> Main { - let msg = Request::GetRegistry {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SYNC_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_REGISTRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ERROR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DELETE_ID_SINCE: u32 = 1u32; - static mut wl_display_requests_sync_types: [*const wl_interface; 1] = - [unsafe { &super::wl_callback::wl_callback_interface as *const wl_interface }]; - static mut wl_display_requests_get_registry_types: [*const wl_interface; 1] = - [unsafe { &super::wl_registry::wl_registry_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_display_requests: [wl_message; 2] = [ - wl_message { - name: b"sync\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_display_requests_sync_types as *const _ }, - }, - wl_message { - name: b"get_registry\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_display_requests_get_registry_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_display_events: [wl_message; 2] = [ - wl_message { - name: b"error\0" as *const u8 as *const c_char, - signature: b"ous\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_id\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_display_interface: wl_interface = wl_interface { - name: b"wl_display\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wl_display_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_display_events as *const _ }, - }; -} -#[doc = "global registry object\n\nThe singleton global registry object. The server has a number of\nglobal objects that are available to all clients. These objects\ntypically represent an actual object in the server (for example,\nan input device) or they are singleton objects that provide\nextension functionality.\n\nWhen a client creates a registry object, the registry object\nwill emit a global event for each global currently in the\nregistry. Globals come and go as a result of device or\nmonitor hotplugs, reconfiguration or other events, and the\nregistry will send out global and global_remove events to\nkeep the client up to date with the changes. To mark the end\nof the initial burst of events, the client can use the\nwl_display.sync request immediately after calling\nwl_display.get_registry.\n\nA client can bind to a global object by using the bind\nrequest. This creates a client-side handle that lets the object\nemit events to the client and lets the client invoke requests on\nthe object."] -pub mod wl_registry { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "bind an object to the display\n\nBinds a new, client-created object to the server using the\nspecified name as the identifier."] - Bind { name: u32, id: (String, u32) }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "bind", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::NewId], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Bind { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Bind { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Bind { name, id } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(name), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(id.0.into()) - })), - Argument::Uint(id.1), - Argument::NewId(0), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Bind { name, id } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = name; - let _arg_1_s = ::std::ffi::CString::new(id.0).unwrap(); - _args_array[1].s = _arg_1_s.as_ptr(); - _args_array[2].u = id.1; - _args_array[3].o = ::std::ptr::null_mut(); - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "announce global object\n\nNotify the client of global objects.\n\nThe event notifies the client that a global object with\nthe given name is now available, and it implements the\ngiven version of the given interface."] - Global { - name: u32, - interface: String, - version: u32, - }, - #[doc = "announce removal of global object\n\nNotify the client of removed global objects.\n\nThis event notifies the client that the global identified\nby name is no longer available. If the client bound to\nthe global using the bind request, the client should now\ndestroy that object.\n\nThe object remains valid and requests to the object will be\nignored until the client destroys it, to avoid races between\nthe global going away and a client sending a request to it."] - GlobalRemove { name: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "global", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "global_remove", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Global { .. } => 0, - Event::GlobalRemove { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Global { .. } => 1, - Event::GlobalRemove { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Global { - name: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - interface: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - version: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::GlobalRemove { - name: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Global { - name: _args[0].u, - interface: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - version: _args[2].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::GlobalRemove { name: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlRegistry(Proxy); - impl AsRef> for WlRegistry { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlRegistry { - #[inline] - fn from(value: Proxy) -> Self { - WlRegistry(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlRegistry) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlRegistry { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlRegistry { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_registry"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_registry_interface } - } - } - impl WlRegistry { - #[doc = "bind an object to the display\n\nBinds a new, client-created object to the server using the\nspecified name as the identifier."] - pub fn bind> + AsRef>>( - &self, - version: u32, - name: u32, - ) -> Main { - let msg = Request::Bind { - name: name, - id: (T::NAME.into(), version), - }; - self.0.send(msg, Some(version)).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_BIND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GLOBAL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GLOBAL_REMOVE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_registry_requests: [wl_message; 1] = [wl_message { - name: b"bind\0" as *const u8 as *const c_char, - signature: b"usun\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_registry_events: [wl_message; 2] = [ - wl_message { - name: b"global\0" as *const u8 as *const c_char, - signature: b"usu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"global_remove\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_registry_interface: wl_interface = wl_interface { - name: b"wl_registry\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_registry_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_registry_events as *const _ }, - }; -} -#[doc = "callback object\n\nClients can handle the 'done' event to get notified when\nthe related request is done."] -pub mod wl_callback { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "done event\n\nNotify the client when the related request is done.\n\nThis is a destructor, once received this object cannot be used any longer."] - Done { callback_data: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "done", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Event::Done { .. } => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Done { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Done { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Done { - callback_data: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Done { - callback_data: _args[0].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlCallback(Proxy); - impl AsRef> for WlCallback { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlCallback { - #[inline] - fn from(value: Proxy) -> Self { - WlCallback(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlCallback) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlCallback { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlCallback { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_callback"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_callback_interface } - } - } - impl WlCallback {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_callback_events: [wl_message; 1] = [wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_callback_interface: wl_interface = wl_interface { - name: b"wl_callback\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 1, - events: unsafe { &wl_callback_events as *const _ }, - }; -} -#[doc = "the compositor singleton\n\nA compositor. This object is a singleton global. The\ncompositor is in charge of combining the contents of multiple\nsurfaces into one displayable output."] -pub mod wl_compositor { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create new surface\n\nAsk the compositor to create a new surface."] - CreateSurface {}, - #[doc = "create new region\n\nAsk the compositor to create a new region."] - CreateRegion {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_surface", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "create_region", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateSurface { .. } => 0, - Request::CreateRegion { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateSurface { .. } => 1, - Request::CreateRegion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateSurface {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::CreateRegion {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateSurface {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::CreateRegion {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlCompositor(Proxy); - impl AsRef> for WlCompositor { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlCompositor { - #[inline] - fn from(value: Proxy) -> Self { - WlCompositor(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlCompositor) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlCompositor { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlCompositor { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_compositor"; - const VERSION: u32 = 5; - fn c_interface() -> *const wl_interface { - unsafe { &wl_compositor_interface } - } - } - impl WlCompositor { - #[doc = "create new surface\n\nAsk the compositor to create a new surface."] - pub fn create_surface(&self) -> Main { - let msg = Request::CreateSurface {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create new region\n\nAsk the compositor to create a new region."] - pub fn create_region(&self) -> Main { - let msg = Request::CreateRegion {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_REGION_SINCE: u32 = 1u32; - static mut wl_compositor_requests_create_surface_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - static mut wl_compositor_requests_create_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_compositor_requests: [wl_message; 2] = [ - wl_message { - name: b"create_surface\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_compositor_requests_create_surface_types as *const _ }, - }, - wl_message { - name: b"create_region\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_compositor_requests_create_region_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_compositor_interface: wl_interface = wl_interface { - name: b"wl_compositor\0" as *const u8 as *const c_char, - version: 5, - request_count: 2, - requests: unsafe { &wl_compositor_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a shared memory pool\n\nThe wl_shm_pool object encapsulates a piece of memory shared\nbetween the compositor and client. Through the wl_shm_pool\nobject, the client can allocate shared memory wl_buffer objects.\nAll objects created through the same pool share the same\nunderlying mapped memory. Reusing the mapped memory avoids the\nsetup/teardown overhead and is useful when interactively resizing\na surface or for many small buffers."] -pub mod wl_shm_pool { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a buffer from the pool\n\nCreate a wl_buffer object from the pool.\n\nThe buffer is created offset bytes into the pool and has\nwidth and height as specified. The stride argument specifies\nthe number of bytes from the beginning of one row to the beginning\nof the next. The format is the pixel format of the buffer and\nmust be one of those advertised through the wl_shm.format event.\n\nA buffer will keep a reference to the pool it was created from\nso it is valid to destroy the pool immediately after creating\na buffer from it."] - CreateBuffer { - offset: i32, - width: i32, - height: i32, - stride: i32, - format: super::wl_shm::Format, - }, - #[doc = "destroy the pool\n\nDestroy the shared memory pool.\n\nThe mmapped memory will be released when all\nbuffers that have been created from this pool\nare gone.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "change the size of the pool mapping\n\nThis request will cause the server to remap the backing memory\nfor the pool from the file descriptor passed when the pool was\ncreated, but using the new size. This request can only be\nused to make the pool bigger."] - Resize { size: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_buffer", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateBuffer { .. } => 0, - Request::Destroy => 1, - Request::Resize { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateBuffer { .. } => 1, - Request::Destroy => 1, - Request::Resize { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateBuffer { - offset, - width, - height, - stride, - format, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Int(offset), - Argument::Int(width), - Argument::Int(height), - Argument::Int(stride), - Argument::Uint(format.to_raw()), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::Resize { size } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(size),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateBuffer { - offset, - width, - height, - stride, - format, - } => { - let mut _args_array: [wl_argument; 6] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = offset; - _args_array[2].i = width; - _args_array[3].i = height; - _args_array[4].i = stride; - _args_array[5].u = format.to_raw(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::Resize { size } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = size; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShmPool(Proxy); - impl AsRef> for WlShmPool { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShmPool { - #[inline] - fn from(value: Proxy) -> Self { - WlShmPool(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShmPool) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShmPool { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShmPool { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shm_pool"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shm_pool_interface } - } - } - impl WlShmPool { - #[doc = "create a buffer from the pool\n\nCreate a wl_buffer object from the pool.\n\nThe buffer is created offset bytes into the pool and has\nwidth and height as specified. The stride argument specifies\nthe number of bytes from the beginning of one row to the beginning\nof the next. The format is the pixel format of the buffer and\nmust be one of those advertised through the wl_shm.format event.\n\nA buffer will keep a reference to the pool it was created from\nso it is valid to destroy the pool immediately after creating\na buffer from it."] - pub fn create_buffer( - &self, - offset: i32, - width: i32, - height: i32, - stride: i32, - format: super::wl_shm::Format, - ) -> Main { - let msg = Request::CreateBuffer { - offset: offset, - width: width, - height: height, - stride: stride, - format: format, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the pool\n\nDestroy the shared memory pool.\n\nThe mmapped memory will be released when all\nbuffers that have been created from this pool\nare gone.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "change the size of the pool mapping\n\nThis request will cause the server to remap the backing memory\nfor the pool from the file descriptor passed when the pool was\ncreated, but using the new size. This request can only be\nused to make the pool bigger."] - pub fn resize(&self, size: i32) -> () { - let msg = Request::Resize { size: size }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_BUFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - static mut wl_shm_pool_requests_create_buffer_types: [*const wl_interface; 6] = [ - unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shm_pool_requests: [wl_message; 3] = [ - wl_message { - name: b"create_buffer\0" as *const u8 as *const c_char, - signature: b"niiiiu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shm_pool_requests_create_buffer_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shm_pool_interface: wl_interface = wl_interface { - name: b"wl_shm_pool\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &wl_shm_pool_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "shared memory support\n\nA singleton global object that provides support for shared\nmemory.\n\nClients can create wl_shm_pool objects using the create_pool\nrequest.\n\nAt connection setup time, the wl_shm object emits one or more\nformat events to inform clients about the valid pixel formats\nthat can be used for buffers."] -pub mod wl_shm { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "wl_shm error values\n\nThese errors can be emitted in response to wl_shm requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "buffer format is not known"] - InvalidFormat = 0, - #[doc = "invalid size or stride during pool or buffer creation"] - InvalidStride = 1, - #[doc = "mmapping the file descriptor failed"] - InvalidFd = 2, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidFormat), - 1 => Some(Error::InvalidStride), - 2 => Some(Error::InvalidFd), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "pixel formats\n\nThis describes the memory layout of an individual pixel.\n\nAll renderers should support argb8888 and xrgb8888 but any other\nformats are optional and may not be supported by the particular\nrenderer in use.\n\nThe drm format codes match the macros defined in drm_fourcc.h, except\nargb8888 and xrgb8888. The formats actually supported by the compositor\nwill be reported by the format event.\n\nFor all wl_shm formats and unless specified in another protocol\nextension, pre-multiplied alpha is used for pixel values."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Format { - #[doc = "32-bit ARGB format, [31:0] A:R:G:B 8:8:8:8 little endian"] - Argb8888 = 0, - #[doc = "32-bit RGB format, [31:0] x:R:G:B 8:8:8:8 little endian"] - Xrgb8888 = 1, - #[doc = "8-bit color index format, [7:0] C"] - C8 = 538982467, - #[doc = "8-bit RGB format, [7:0] R:G:B 3:3:2"] - Rgb332 = 943867730, - #[doc = "8-bit BGR format, [7:0] B:G:R 2:3:3"] - Bgr233 = 944916290, - #[doc = "16-bit xRGB format, [15:0] x:R:G:B 4:4:4:4 little endian"] - Xrgb4444 = 842093144, - #[doc = "16-bit xBGR format, [15:0] x:B:G:R 4:4:4:4 little endian"] - Xbgr4444 = 842089048, - #[doc = "16-bit RGBx format, [15:0] R:G:B:x 4:4:4:4 little endian"] - Rgbx4444 = 842094674, - #[doc = "16-bit BGRx format, [15:0] B:G:R:x 4:4:4:4 little endian"] - Bgrx4444 = 842094658, - #[doc = "16-bit ARGB format, [15:0] A:R:G:B 4:4:4:4 little endian"] - Argb4444 = 842093121, - #[doc = "16-bit ABGR format, [15:0] A:B:G:R 4:4:4:4 little endian"] - Abgr4444 = 842089025, - #[doc = "16-bit RBGA format, [15:0] R:G:B:A 4:4:4:4 little endian"] - Rgba4444 = 842088786, - #[doc = "16-bit BGRA format, [15:0] B:G:R:A 4:4:4:4 little endian"] - Bgra4444 = 842088770, - #[doc = "16-bit xRGB format, [15:0] x:R:G:B 1:5:5:5 little endian"] - Xrgb1555 = 892424792, - #[doc = "16-bit xBGR 1555 format, [15:0] x:B:G:R 1:5:5:5 little endian"] - Xbgr1555 = 892420696, - #[doc = "16-bit RGBx 5551 format, [15:0] R:G:B:x 5:5:5:1 little endian"] - Rgbx5551 = 892426322, - #[doc = "16-bit BGRx 5551 format, [15:0] B:G:R:x 5:5:5:1 little endian"] - Bgrx5551 = 892426306, - #[doc = "16-bit ARGB 1555 format, [15:0] A:R:G:B 1:5:5:5 little endian"] - Argb1555 = 892424769, - #[doc = "16-bit ABGR 1555 format, [15:0] A:B:G:R 1:5:5:5 little endian"] - Abgr1555 = 892420673, - #[doc = "16-bit RGBA 5551 format, [15:0] R:G:B:A 5:5:5:1 little endian"] - Rgba5551 = 892420434, - #[doc = "16-bit BGRA 5551 format, [15:0] B:G:R:A 5:5:5:1 little endian"] - Bgra5551 = 892420418, - #[doc = "16-bit RGB 565 format, [15:0] R:G:B 5:6:5 little endian"] - Rgb565 = 909199186, - #[doc = "16-bit BGR 565 format, [15:0] B:G:R 5:6:5 little endian"] - Bgr565 = 909199170, - #[doc = "24-bit RGB format, [23:0] R:G:B little endian"] - Rgb888 = 875710290, - #[doc = "24-bit BGR format, [23:0] B:G:R little endian"] - Bgr888 = 875710274, - #[doc = "32-bit xBGR format, [31:0] x:B:G:R 8:8:8:8 little endian"] - Xbgr8888 = 875709016, - #[doc = "32-bit RGBx format, [31:0] R:G:B:x 8:8:8:8 little endian"] - Rgbx8888 = 875714642, - #[doc = "32-bit BGRx format, [31:0] B:G:R:x 8:8:8:8 little endian"] - Bgrx8888 = 875714626, - #[doc = "32-bit ABGR format, [31:0] A:B:G:R 8:8:8:8 little endian"] - Abgr8888 = 875708993, - #[doc = "32-bit RGBA format, [31:0] R:G:B:A 8:8:8:8 little endian"] - Rgba8888 = 875708754, - #[doc = "32-bit BGRA format, [31:0] B:G:R:A 8:8:8:8 little endian"] - Bgra8888 = 875708738, - #[doc = "32-bit xRGB format, [31:0] x:R:G:B 2:10:10:10 little endian"] - Xrgb2101010 = 808669784, - #[doc = "32-bit xBGR format, [31:0] x:B:G:R 2:10:10:10 little endian"] - Xbgr2101010 = 808665688, - #[doc = "32-bit RGBx format, [31:0] R:G:B:x 10:10:10:2 little endian"] - Rgbx1010102 = 808671314, - #[doc = "32-bit BGRx format, [31:0] B:G:R:x 10:10:10:2 little endian"] - Bgrx1010102 = 808671298, - #[doc = "32-bit ARGB format, [31:0] A:R:G:B 2:10:10:10 little endian"] - Argb2101010 = 808669761, - #[doc = "32-bit ABGR format, [31:0] A:B:G:R 2:10:10:10 little endian"] - Abgr2101010 = 808665665, - #[doc = "32-bit RGBA format, [31:0] R:G:B:A 10:10:10:2 little endian"] - Rgba1010102 = 808665426, - #[doc = "32-bit BGRA format, [31:0] B:G:R:A 10:10:10:2 little endian"] - Bgra1010102 = 808665410, - #[doc = "packed YCbCr format, [31:0] Cr0:Y1:Cb0:Y0 8:8:8:8 little endian"] - Yuyv = 1448695129, - #[doc = "packed YCbCr format, [31:0] Cb0:Y1:Cr0:Y0 8:8:8:8 little endian"] - Yvyu = 1431918169, - #[doc = "packed YCbCr format, [31:0] Y1:Cr0:Y0:Cb0 8:8:8:8 little endian"] - Uyvy = 1498831189, - #[doc = "packed YCbCr format, [31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian"] - Vyuy = 1498765654, - #[doc = "packed AYCbCr format, [31:0] A:Y:Cb:Cr 8:8:8:8 little endian"] - Ayuv = 1448433985, - #[doc = "2 plane YCbCr Cr:Cb format, 2x2 subsampled Cr:Cb plane"] - Nv12 = 842094158, - #[doc = "2 plane YCbCr Cb:Cr format, 2x2 subsampled Cb:Cr plane"] - Nv21 = 825382478, - #[doc = "2 plane YCbCr Cr:Cb format, 2x1 subsampled Cr:Cb plane"] - Nv16 = 909203022, - #[doc = "2 plane YCbCr Cb:Cr format, 2x1 subsampled Cb:Cr plane"] - Nv61 = 825644622, - #[doc = "3 plane YCbCr format, 4x4 subsampled Cb (1) and Cr (2) planes"] - Yuv410 = 961959257, - #[doc = "3 plane YCbCr format, 4x4 subsampled Cr (1) and Cb (2) planes"] - Yvu410 = 961893977, - #[doc = "3 plane YCbCr format, 4x1 subsampled Cb (1) and Cr (2) planes"] - Yuv411 = 825316697, - #[doc = "3 plane YCbCr format, 4x1 subsampled Cr (1) and Cb (2) planes"] - Yvu411 = 825316953, - #[doc = "3 plane YCbCr format, 2x2 subsampled Cb (1) and Cr (2) planes"] - Yuv420 = 842093913, - #[doc = "3 plane YCbCr format, 2x2 subsampled Cr (1) and Cb (2) planes"] - Yvu420 = 842094169, - #[doc = "3 plane YCbCr format, 2x1 subsampled Cb (1) and Cr (2) planes"] - Yuv422 = 909202777, - #[doc = "3 plane YCbCr format, 2x1 subsampled Cr (1) and Cb (2) planes"] - Yvu422 = 909203033, - #[doc = "3 plane YCbCr format, non-subsampled Cb (1) and Cr (2) planes"] - Yuv444 = 875713881, - #[doc = "3 plane YCbCr format, non-subsampled Cr (1) and Cb (2) planes"] - Yvu444 = 875714137, - #[doc = "[7:0] R"] - R8 = 538982482, - #[doc = "[15:0] R little endian"] - R16 = 540422482, - #[doc = "[15:0] R:G 8:8 little endian"] - Rg88 = 943212370, - #[doc = "[15:0] G:R 8:8 little endian"] - Gr88 = 943215175, - #[doc = "[31:0] R:G 16:16 little endian"] - Rg1616 = 842221394, - #[doc = "[31:0] G:R 16:16 little endian"] - Gr1616 = 842224199, - #[doc = "[63:0] x:R:G:B 16:16:16:16 little endian"] - Xrgb16161616f = 1211388504, - #[doc = "[63:0] x:B:G:R 16:16:16:16 little endian"] - Xbgr16161616f = 1211384408, - #[doc = "[63:0] A:R:G:B 16:16:16:16 little endian"] - Argb16161616f = 1211388481, - #[doc = "[63:0] A:B:G:R 16:16:16:16 little endian"] - Abgr16161616f = 1211384385, - #[doc = "[31:0] X:Y:Cb:Cr 8:8:8:8 little endian"] - Xyuv8888 = 1448434008, - #[doc = "[23:0] Cr:Cb:Y 8:8:8 little endian"] - Vuy888 = 875713878, - #[doc = "Y followed by U then V, 10:10:10. Non-linear modifier only"] - Vuy101010 = 808670550, - #[doc = "[63:0] Cr0:0:Y1:0:Cb0:0:Y0:0 10:6:10:6:10:6:10:6 little endian per 2 Y pixels"] - Y210 = 808530521, - #[doc = "[63:0] Cr0:0:Y1:0:Cb0:0:Y0:0 12:4:12:4:12:4:12:4 little endian per 2 Y pixels"] - Y212 = 842084953, - #[doc = "[63:0] Cr0:Y1:Cb0:Y0 16:16:16:16 little endian per 2 Y pixels"] - Y216 = 909193817, - #[doc = "[31:0] A:Cr:Y:Cb 2:10:10:10 little endian"] - Y410 = 808531033, - #[doc = "[63:0] A:0:Cr:0:Y:0:Cb:0 12:4:12:4:12:4:12:4 little endian"] - Y412 = 842085465, - #[doc = "[63:0] A:Cr:Y:Cb 16:16:16:16 little endian"] - Y416 = 909194329, - #[doc = "[31:0] X:Cr:Y:Cb 2:10:10:10 little endian"] - Xvyu2101010 = 808670808, - #[doc = "[63:0] X:0:Cr:0:Y:0:Cb:0 12:4:12:4:12:4:12:4 little endian"] - Xvyu1216161616 = 909334104, - #[doc = "[63:0] X:Cr:Y:Cb 16:16:16:16 little endian"] - Xvyu16161616 = 942954072, - #[doc = "[63:0] A3:A2:Y3:0:Cr0:0:Y2:0:A1:A0:Y1:0:Cb0:0:Y0:0 1:1:8:2:8:2:8:2:1:1:8:2:8:2:8:2 little endian"] - Y0l0 = 810299481, - #[doc = "[63:0] X3:X2:Y3:0:Cr0:0:Y2:0:X1:X0:Y1:0:Cb0:0:Y0:0 1:1:8:2:8:2:8:2:1:1:8:2:8:2:8:2 little endian"] - X0l0 = 810299480, - #[doc = "[63:0] A3:A2:Y3:Cr0:Y2:A1:A0:Y1:Cb0:Y0 1:1:10:10:10:1:1:10:10:10 little endian"] - Y0l2 = 843853913, - #[doc = "[63:0] X3:X2:Y3:Cr0:Y2:X1:X0:Y1:Cb0:Y0 1:1:10:10:10:1:1:10:10:10 little endian"] - X0l2 = 843853912, - Yuv4208bit = 942691673, - Yuv42010bit = 808539481, - Xrgb8888A8 = 943805016, - Xbgr8888A8 = 943800920, - Rgbx8888A8 = 943806546, - Bgrx8888A8 = 943806530, - Rgb888A8 = 943798354, - Bgr888A8 = 943798338, - Rgb565A8 = 943797586, - Bgr565A8 = 943797570, - #[doc = "non-subsampled Cr:Cb plane"] - Nv24 = 875714126, - #[doc = "non-subsampled Cb:Cr plane"] - Nv42 = 842290766, - #[doc = "2x1 subsampled Cr:Cb plane, 10 bit per channel"] - P210 = 808530512, - #[doc = "2x2 subsampled Cr:Cb plane 10 bits per channel"] - P010 = 808530000, - #[doc = "2x2 subsampled Cr:Cb plane 12 bits per channel"] - P012 = 842084432, - #[doc = "2x2 subsampled Cr:Cb plane 16 bits per channel"] - P016 = 909193296, - #[doc = "[63:0] A:x:B:x:G:x:R:x 10:6:10:6:10:6:10:6 little endian"] - Axbxgxrx106106106106 = 808534593, - #[doc = "2x2 subsampled Cr:Cb plane"] - Nv15 = 892425806, - Q410 = 808531025, - Q401 = 825242705, - #[doc = "[63:0] x:R:G:B 16:16:16:16 little endian"] - Xrgb16161616 = 942953048, - #[doc = "[63:0] x:B:G:R 16:16:16:16 little endian"] - Xbgr16161616 = 942948952, - #[doc = "[63:0] A:R:G:B 16:16:16:16 little endian"] - Argb16161616 = 942953025, - #[doc = "[63:0] A:B:G:R 16:16:16:16 little endian"] - Abgr16161616 = 942948929, - } - impl Format { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Format::Argb8888), - 1 => Some(Format::Xrgb8888), - 538982467 => Some(Format::C8), - 943867730 => Some(Format::Rgb332), - 944916290 => Some(Format::Bgr233), - 842093144 => Some(Format::Xrgb4444), - 842089048 => Some(Format::Xbgr4444), - 842094674 => Some(Format::Rgbx4444), - 842094658 => Some(Format::Bgrx4444), - 842093121 => Some(Format::Argb4444), - 842089025 => Some(Format::Abgr4444), - 842088786 => Some(Format::Rgba4444), - 842088770 => Some(Format::Bgra4444), - 892424792 => Some(Format::Xrgb1555), - 892420696 => Some(Format::Xbgr1555), - 892426322 => Some(Format::Rgbx5551), - 892426306 => Some(Format::Bgrx5551), - 892424769 => Some(Format::Argb1555), - 892420673 => Some(Format::Abgr1555), - 892420434 => Some(Format::Rgba5551), - 892420418 => Some(Format::Bgra5551), - 909199186 => Some(Format::Rgb565), - 909199170 => Some(Format::Bgr565), - 875710290 => Some(Format::Rgb888), - 875710274 => Some(Format::Bgr888), - 875709016 => Some(Format::Xbgr8888), - 875714642 => Some(Format::Rgbx8888), - 875714626 => Some(Format::Bgrx8888), - 875708993 => Some(Format::Abgr8888), - 875708754 => Some(Format::Rgba8888), - 875708738 => Some(Format::Bgra8888), - 808669784 => Some(Format::Xrgb2101010), - 808665688 => Some(Format::Xbgr2101010), - 808671314 => Some(Format::Rgbx1010102), - 808671298 => Some(Format::Bgrx1010102), - 808669761 => Some(Format::Argb2101010), - 808665665 => Some(Format::Abgr2101010), - 808665426 => Some(Format::Rgba1010102), - 808665410 => Some(Format::Bgra1010102), - 1448695129 => Some(Format::Yuyv), - 1431918169 => Some(Format::Yvyu), - 1498831189 => Some(Format::Uyvy), - 1498765654 => Some(Format::Vyuy), - 1448433985 => Some(Format::Ayuv), - 842094158 => Some(Format::Nv12), - 825382478 => Some(Format::Nv21), - 909203022 => Some(Format::Nv16), - 825644622 => Some(Format::Nv61), - 961959257 => Some(Format::Yuv410), - 961893977 => Some(Format::Yvu410), - 825316697 => Some(Format::Yuv411), - 825316953 => Some(Format::Yvu411), - 842093913 => Some(Format::Yuv420), - 842094169 => Some(Format::Yvu420), - 909202777 => Some(Format::Yuv422), - 909203033 => Some(Format::Yvu422), - 875713881 => Some(Format::Yuv444), - 875714137 => Some(Format::Yvu444), - 538982482 => Some(Format::R8), - 540422482 => Some(Format::R16), - 943212370 => Some(Format::Rg88), - 943215175 => Some(Format::Gr88), - 842221394 => Some(Format::Rg1616), - 842224199 => Some(Format::Gr1616), - 1211388504 => Some(Format::Xrgb16161616f), - 1211384408 => Some(Format::Xbgr16161616f), - 1211388481 => Some(Format::Argb16161616f), - 1211384385 => Some(Format::Abgr16161616f), - 1448434008 => Some(Format::Xyuv8888), - 875713878 => Some(Format::Vuy888), - 808670550 => Some(Format::Vuy101010), - 808530521 => Some(Format::Y210), - 842084953 => Some(Format::Y212), - 909193817 => Some(Format::Y216), - 808531033 => Some(Format::Y410), - 842085465 => Some(Format::Y412), - 909194329 => Some(Format::Y416), - 808670808 => Some(Format::Xvyu2101010), - 909334104 => Some(Format::Xvyu1216161616), - 942954072 => Some(Format::Xvyu16161616), - 810299481 => Some(Format::Y0l0), - 810299480 => Some(Format::X0l0), - 843853913 => Some(Format::Y0l2), - 843853912 => Some(Format::X0l2), - 942691673 => Some(Format::Yuv4208bit), - 808539481 => Some(Format::Yuv42010bit), - 943805016 => Some(Format::Xrgb8888A8), - 943800920 => Some(Format::Xbgr8888A8), - 943806546 => Some(Format::Rgbx8888A8), - 943806530 => Some(Format::Bgrx8888A8), - 943798354 => Some(Format::Rgb888A8), - 943798338 => Some(Format::Bgr888A8), - 943797586 => Some(Format::Rgb565A8), - 943797570 => Some(Format::Bgr565A8), - 875714126 => Some(Format::Nv24), - 842290766 => Some(Format::Nv42), - 808530512 => Some(Format::P210), - 808530000 => Some(Format::P010), - 842084432 => Some(Format::P012), - 909193296 => Some(Format::P016), - 808534593 => Some(Format::Axbxgxrx106106106106), - 892425806 => Some(Format::Nv15), - 808531025 => Some(Format::Q410), - 825242705 => Some(Format::Q401), - 942953048 => Some(Format::Xrgb16161616), - 942948952 => Some(Format::Xbgr16161616), - 942953025 => Some(Format::Argb16161616), - 942948929 => Some(Format::Abgr16161616), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a shm pool\n\nCreate a new wl_shm_pool object.\n\nThe pool can be used to create shared memory based buffer\nobjects. The server will mmap size bytes of the passed file\ndescriptor, to use as backing memory for the pool."] - CreatePool { - fd: ::std::os::unix::io::RawFd, - size: i32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "create_pool", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Fd, - super::ArgumentType::Int, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreatePool { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreatePool { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreatePool { fd, size } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Fd(fd), Argument::Int(size),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreatePool { fd, size } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].h = fd; - _args_array[2].i = size; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "pixel format description\n\nInforms the client about a valid pixel format that\ncan be used for buffers. Known formats include\nargb8888 and xrgb8888."] - Format { format: Format }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "format", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Format { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Format { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Format { - format: { - if let Some(Argument::Uint(val)) = args.next() { - Format::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Format { - format: Format::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShm(Proxy); - impl AsRef> for WlShm { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShm { - #[inline] - fn from(value: Proxy) -> Self { - WlShm(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShm) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShm { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShm { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shm"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shm_interface } - } - } - impl WlShm { - #[doc = "create a shm pool\n\nCreate a new wl_shm_pool object.\n\nThe pool can be used to create shared memory based buffer\nobjects. The server will mmap size bytes of the passed file\ndescriptor, to use as backing memory for the pool."] - pub fn create_pool( - &self, - fd: ::std::os::unix::io::RawFd, - size: i32, - ) -> Main { - let msg = Request::CreatePool { fd: fd, size: size }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_POOL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FORMAT_SINCE: u32 = 1u32; - static mut wl_shm_requests_create_pool_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_shm_pool::wl_shm_pool_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shm_requests: [wl_message; 1] = [wl_message { - name: b"create_pool\0" as *const u8 as *const c_char, - signature: b"nhi\0" as *const u8 as *const c_char, - types: unsafe { &wl_shm_requests_create_pool_types as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shm_events: [wl_message; 1] = [wl_message { - name: b"format\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shm_interface: wl_interface = wl_interface { - name: b"wl_shm\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_shm_requests as *const _ }, - event_count: 1, - events: unsafe { &wl_shm_events as *const _ }, - }; -} -#[doc = "content for a wl_surface\n\nA buffer provides the content for a wl_surface. Buffers are\ncreated through factory interfaces such as wl_shm, wp_linux_buffer_params\n(from the linux-dmabuf protocol extension) or similar. It has a width and\na height and can be attached to a wl_surface, but the mechanism by which a\nclient provides and updates the contents is defined by the buffer factory\ninterface.\n\nIf the buffer uses a format that has an alpha channel, the alpha channel\nis assumed to be premultiplied in the color channels unless otherwise\nspecified."] -pub mod wl_buffer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy a buffer\n\nDestroy a buffer. If and how you need to release the backing\nstorage is defined by the buffer factory interface.\n\nFor possible side-effects to a surface, see wl_surface.attach.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "compositor releases buffer\n\nSent when this wl_buffer is no longer used by the compositor.\nThe client is now free to reuse or destroy this buffer and its\nbacking storage.\n\nIf a client receives a release event before the frame callback\nrequested in the same wl_surface.commit that attaches this\nwl_buffer to a surface, then the client is immediately free to\nreuse the buffer and its backing storage, and does not need a\nsecond buffer for the next surface content update. Typically\nthis is possible, when the compositor maintains a copy of the\nwl_surface contents, e.g. as a GL texture. This is an important\noptimization for GL(ES) compositors with wl_shm clients."] - Release, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Release => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Release), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Release), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlBuffer(Proxy); - impl AsRef> for WlBuffer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlBuffer { - #[inline] - fn from(value: Proxy) -> Self { - WlBuffer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlBuffer) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlBuffer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlBuffer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_buffer"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_buffer_interface } - } - } - impl WlBuffer { - #[doc = "destroy a buffer\n\nDestroy a buffer. If and how you need to release the backing\nstorage is defined by the buffer factory interface.\n\nFor possible side-effects to a surface, see wl_surface.attach.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RELEASE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_buffer_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_buffer_events: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_buffer_interface: wl_interface = wl_interface { - name: b"wl_buffer\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_buffer_requests as *const _ }, - event_count: 1, - events: unsafe { &wl_buffer_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nA wl_data_offer represents a piece of data offered for transfer\nby another client (the source client). It is used by the\ncopy-and-paste and drag-and-drop mechanisms. The offer\ndescribes the different mime types that the data can be\nconverted to and provides the mechanism for transferring the\ndata directly from the source client."] -pub mod wl_data_offer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "finish request was called untimely"] - InvalidFinish = 0, - #[doc = "action mask contains invalid values"] - InvalidActionMask = 1, - #[doc = "action argument has an invalid value"] - InvalidAction = 2, - #[doc = "offer doesn't accept this request"] - InvalidOffer = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidFinish), - 1 => Some(Error::InvalidActionMask), - 2 => Some(Error::InvalidAction), - 3 => Some(Error::InvalidOffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "accept one of the offered mime types\n\nIndicate that the client can accept the given mime type, or\nNULL for not accepted.\n\nFor objects of version 2 or older, this request is used by the\nclient to give feedback whether the client can receive the given\nmime type, or NULL if none is accepted; the feedback does not\ndetermine whether the drag-and-drop operation succeeds or not.\n\nFor objects of version 3 or newer, this request determines the\nfinal result of the drag-and-drop operation. If the end result\nis that no mime types were accepted, the drag-and-drop operation\nwill be cancelled and the corresponding drag source will receive\nwl_data_source.cancelled. Clients may still use this event in\nconjunction with wl_data_source.action for feedback."] - Accept { - serial: u32, - mime_type: Option, - }, - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request\nand indicates the mime type it wants to receive. The transfer\nhappens through the passed file descriptor (typically created\nwith the pipe system call). The source client writes the data\nin the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until\nEOF and then closes its end, at which point the transfer is\ncomplete.\n\nThis request may happen multiple times for different mime types,\nboth before and after wl_data_device.drop. Drag-and-drop destination\nclients may preemptively fetch data or examine it more closely to\ndetermine acceptance."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy data offer\n\nDestroy the data offer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "the offer will no longer be used\n\nNotifies the compositor that the drag destination successfully\nfinished the drag-and-drop operation.\n\nUpon receiving this request, the compositor will emit\nwl_data_source.dnd_finished on the drag source client.\n\nIt is a client error to perform other requests than\nwl_data_offer.destroy after this one. It is also an error to perform\nthis request after a NULL mime type has been set in\nwl_data_offer.accept or no action was received through\nwl_data_offer.action.\n\nIf wl_data_offer.finish request is received for a non drag and drop\noperation, the invalid_finish protocol error is raised.\n\nOnly available since version 3 of the interface"] - Finish, - #[doc = "set the available/preferred drag-and-drop actions\n\nSets the actions that the destination side client supports for\nthis operation. This request may trigger the emission of\nwl_data_source.action and wl_data_offer.action events if the compositor\nneeds to change the selected action.\n\nThis request can be called multiple times throughout the\ndrag-and-drop operation, typically in response to wl_data_device.enter\nor wl_data_device.motion events.\n\nThis request determines the final result of the drag-and-drop\noperation. If the end result is that no action is accepted,\nthe drag source will receive wl_data_source.cancelled.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, and the preferred_action\nargument must only contain one of those values set, otherwise it\nwill result in a protocol error.\n\nWhile managing an \"ask\" action, the destination drag-and-drop client\nmay perform further wl_data_offer.receive requests, and is expected\nto perform one last wl_data_offer.set_actions request with a preferred\naction other than \"ask\" (and optionally wl_data_offer.accept) before\nrequesting wl_data_offer.finish, in order to convey the action selected\nby the user. If the preferred action is not in the\nwl_data_offer.source_actions mask, an error will be raised.\n\nIf the \"ask\" action is dismissed (e.g. user cancellation), the client\nis expected to perform wl_data_offer.destroy right away.\n\nThis request can only be made on drag-and-drop offers, a protocol error\nwill be raised otherwise.\n\nOnly available since version 3 of the interface"] - SetActions { - dnd_actions: super::wl_data_device_manager::DndAction, - preferred_action: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "accept", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "finish", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_actions", - since: 3, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Accept { .. } => 0, - Request::Receive { .. } => 1, - Request::Destroy => 2, - Request::Finish => 3, - Request::SetActions { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Accept { .. } => 1, - Request::Receive { .. } => 1, - Request::Destroy => 1, - Request::Finish => 3, - Request::SetActions { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Accept { serial, mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked( - mime_type.map(Into::into).unwrap_or_else(Vec::new), - ) - })), - ], - }, - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::Finish => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::SetActions { - dnd_actions, - preferred_action, - } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Uint(dnd_actions.to_raw()), - Argument::Uint(preferred_action.to_raw()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Accept { serial, mime_type } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = mime_type.map(|s| ::std::ffi::CString::new(s).unwrap()); - _args_array[1].s = (&_arg_1) - .as_ref() - .map(|s| s.as_ptr()) - .unwrap_or(::std::ptr::null()); - f(0, &mut _args_array) - } - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::Finish => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::SetActions { - dnd_actions, - preferred_action, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = dnd_actions.to_raw(); - _args_array[1].u = preferred_action.to_raw(); - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered mime type\n\nSent immediately after creating the wl_data_offer object. One\nevent per offered mime type."] - Offer { mime_type: String }, - #[doc = "notify the source-side available actions\n\nThis event indicates the actions offered by the data source. It\nwill be sent right after wl_data_device.enter, or anytime the source\nside changes its offered actions through wl_data_source.set_actions.\n\nOnly available since version 3 of the interface"] - SourceActions { - source_actions: super::wl_data_device_manager::DndAction, - }, - #[doc = "notify the selected action\n\nThis event indicates the action selected by the compositor after\nmatching the source/destination side actions. Only one action (or\nnone) will be offered here.\n\nThis event can be emitted multiple times during the drag-and-drop\noperation in response to destination side action changes through\nwl_data_offer.set_actions.\n\nThis event will no longer be emitted after wl_data_device.drop\nhappened on the drag-and-drop destination, the client must\nhonor the last action received, or the last preferred one set\nthrough wl_data_offer.set_actions when handling an \"ask\" action.\n\nCompositors may also change the selected action on the fly, mainly\nin response to keyboard modifier changes during the drag-and-drop\noperation.\n\nThe most recent action received is always the valid one. Prior to\nreceiving wl_data_device.drop, the chosen action may change (e.g.\ndue to keyboard modifiers being pressed). At the time of receiving\nwl_data_device.drop the drag-and-drop destination must honor the\nlast action received.\n\nAction changes may still happen after wl_data_device.drop,\nespecially on \"ask\" actions, where the drag-and-drop destination\nmay choose another action afterwards. Action changes happening\nat this stage are always the result of inter-client negotiation, the\ncompositor shall no longer be able to induce a different action.\n\nUpon \"ask\" actions, it is expected that the drag-and-drop destination\nmay potentially choose a different action and/or mime type,\nbased on wl_data_offer.source_actions and finally chosen by the\nuser (e.g. popping up a menu with the available options). The\nfinal wl_data_offer.set_actions and wl_data_offer.accept requests\nmust happen before the call to wl_data_offer.finish.\n\nOnly available since version 3 of the interface"] - Action { - dnd_action: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "source_actions", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "action", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - Event::SourceActions { .. } => 1, - Event::Action { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - Event::SourceActions { .. } => 3, - Event::Action { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::SourceActions { - source_actions: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_data_device_manager::DndAction::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Action { - dnd_action: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_data_device_manager::DndAction::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::SourceActions { - source_actions: super::wl_data_device_manager::DndAction::from_raw( - _args[0].u, - ) - .ok_or(())?, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Action { - dnd_action: super::wl_data_device_manager::DndAction::from_raw(_args[0].u) - .ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataOffer(Proxy); - impl AsRef> for WlDataOffer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataOffer { - #[inline] - fn from(value: Proxy) -> Self { - WlDataOffer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataOffer) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataOffer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataOffer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_offer"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_offer_interface } - } - } - impl WlDataOffer { - #[doc = "accept one of the offered mime types\n\nIndicate that the client can accept the given mime type, or\nNULL for not accepted.\n\nFor objects of version 2 or older, this request is used by the\nclient to give feedback whether the client can receive the given\nmime type, or NULL if none is accepted; the feedback does not\ndetermine whether the drag-and-drop operation succeeds or not.\n\nFor objects of version 3 or newer, this request determines the\nfinal result of the drag-and-drop operation. If the end result\nis that no mime types were accepted, the drag-and-drop operation\nwill be cancelled and the corresponding drag source will receive\nwl_data_source.cancelled. Clients may still use this event in\nconjunction with wl_data_source.action for feedback."] - pub fn accept(&self, serial: u32, mime_type: Option) -> () { - let msg = Request::Accept { - serial: serial, - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request\nand indicates the mime type it wants to receive. The transfer\nhappens through the passed file descriptor (typically created\nwith the pipe system call). The source client writes the data\nin the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until\nEOF and then closes its end, at which point the transfer is\ncomplete.\n\nThis request may happen multiple times for different mime types,\nboth before and after wl_data_device.drop. Drag-and-drop destination\nclients may preemptively fetch data or examine it more closely to\ndetermine acceptance."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy data offer\n\nDestroy the data offer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "the offer will no longer be used\n\nNotifies the compositor that the drag destination successfully\nfinished the drag-and-drop operation.\n\nUpon receiving this request, the compositor will emit\nwl_data_source.dnd_finished on the drag source client.\n\nIt is a client error to perform other requests than\nwl_data_offer.destroy after this one. It is also an error to perform\nthis request after a NULL mime type has been set in\nwl_data_offer.accept or no action was received through\nwl_data_offer.action.\n\nIf wl_data_offer.finish request is received for a non drag and drop\noperation, the invalid_finish protocol error is raised.\n\nOnly available since version 3 of the interface."] - pub fn finish(&self) -> () { - let msg = Request::Finish; - self.0.send::(msg, None); - } - #[doc = "set the available/preferred drag-and-drop actions\n\nSets the actions that the destination side client supports for\nthis operation. This request may trigger the emission of\nwl_data_source.action and wl_data_offer.action events if the compositor\nneeds to change the selected action.\n\nThis request can be called multiple times throughout the\ndrag-and-drop operation, typically in response to wl_data_device.enter\nor wl_data_device.motion events.\n\nThis request determines the final result of the drag-and-drop\noperation. If the end result is that no action is accepted,\nthe drag source will receive wl_data_source.cancelled.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, and the preferred_action\nargument must only contain one of those values set, otherwise it\nwill result in a protocol error.\n\nWhile managing an \"ask\" action, the destination drag-and-drop client\nmay perform further wl_data_offer.receive requests, and is expected\nto perform one last wl_data_offer.set_actions request with a preferred\naction other than \"ask\" (and optionally wl_data_offer.accept) before\nrequesting wl_data_offer.finish, in order to convey the action selected\nby the user. If the preferred action is not in the\nwl_data_offer.source_actions mask, an error will be raised.\n\nIf the \"ask\" action is dismissed (e.g. user cancellation), the client\nis expected to perform wl_data_offer.destroy right away.\n\nThis request can only be made on drag-and-drop offers, a protocol error\nwill be raised otherwise.\n\nOnly available since version 3 of the interface."] - pub fn set_actions( - &self, - dnd_actions: super::wl_data_device_manager::DndAction, - preferred_action: super::wl_data_device_manager::DndAction, - ) -> () { - let msg = Request::SetActions { - dnd_actions: dnd_actions, - preferred_action: preferred_action, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACCEPT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FINISH_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ACTIONS_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SOURCE_ACTIONS_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTION_SINCE: u32 = 3u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_offer_requests: [wl_message; 5] = [ - wl_message { - name: b"accept\0" as *const u8 as *const c_char, - signature: b"u?s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finish\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_actions\0" as *const u8 as *const c_char, - signature: b"3uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_offer_events: [wl_message; 3] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"source_actions\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"action\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_offer_interface: wl_interface = wl_interface { - name: b"wl_data_offer\0" as *const u8 as *const c_char, - version: 3, - request_count: 5, - requests: unsafe { &wl_data_offer_requests as *const _ }, - event_count: 3, - events: unsafe { &wl_data_offer_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nThe wl_data_source object is the source side of a wl_data_offer.\nIt is created by the source client in a data transfer and\nprovides a way to describe the offered data and a way to respond\nto requests to transfer the data."] -pub mod wl_data_source { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "action mask contains invalid values"] - InvalidActionMask = 0, - #[doc = "source doesn't accept this request"] - InvalidSource = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidActionMask), - 1 => Some(Error::InvalidSource), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types\nadvertised to targets. Can be called several times to offer\nmultiple types."] - Offer { mime_type: String }, - #[doc = "destroy the data source\n\nDestroy the data source.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the available drag-and-drop actions\n\nSets the actions that the source side client supports for this\noperation. This request may trigger wl_data_source.action and\nwl_data_offer.action events if the compositor needs to change the\nselected action.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, otherwise it will result\nin a protocol error.\n\nThis request must be made once only, and can only be made on sources\nused in drag-and-drop, so it must be performed before\nwl_data_device.start_drag. Attempting to use the source other than\nfor drag-and-drop will raise a protocol error.\n\nOnly available since version 3 of the interface"] - SetActions { - dnd_actions: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_actions", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - Request::SetActions { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - Request::SetActions { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::SetActions { dnd_actions } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Uint(dnd_actions.to_raw()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::SetActions { dnd_actions } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = dnd_actions.to_raw(); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "a target accepts an offered mime type\n\nSent when a target accepts pointer_focus or motion events. If\na target does not accept any of the offered types, type is NULL.\n\nUsed for feedback during drag-and-drop."] - Target { mime_type: Option }, - #[doc = "send the data\n\nRequest for data from the client. Send the data as the\nspecified mime type over the passed file descriptor, then\nclose it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "selection was cancelled\n\nThis data source is no longer valid. There are several reasons why\nthis could happen:\n\n- The data source has been replaced by another data source.\n- The drag-and-drop operation was performed, but the drop destination\ndid not accept any of the mime types offered through\nwl_data_source.target.\n- The drag-and-drop operation was performed, but the drop destination\ndid not select any of the actions present in the mask offered through\nwl_data_source.action.\n- The drag-and-drop operation was performed but didn't happen over a\nsurface.\n- The compositor cancelled the drag-and-drop operation (e.g. compositor\ndependent timeouts to avoid stale drag-and-drop transfers).\n\nThe client should clean up and destroy this data source.\n\nFor objects of version 2 or older, wl_data_source.cancelled will\nonly be emitted if the data source was replaced by another data\nsource."] - Cancelled, - #[doc = "the drag-and-drop operation physically finished\n\nThe user performed the drop action. This event does not indicate\nacceptance, wl_data_source.cancelled may still be emitted afterwards\nif the drop destination does not accept any mime type.\n\nHowever, this event might however not be received if the compositor\ncancelled the drag-and-drop operation before this event could happen.\n\nNote that the data_source may still be used in the future and should\nnot be destroyed here.\n\nOnly available since version 3 of the interface"] - DndDropPerformed, - #[doc = "the drag-and-drop operation concluded\n\nThe drop destination finished interoperating with this data\nsource, so the client is now free to destroy this data source and\nfree all associated data.\n\nIf the action used to perform the operation was \"move\", the\nsource can now delete the transferred data.\n\nOnly available since version 3 of the interface"] - DndFinished, - #[doc = "notify the selected action\n\nThis event indicates the action selected by the compositor after\nmatching the source/destination side actions. Only one action (or\nnone) will be offered here.\n\nThis event can be emitted multiple times during the drag-and-drop\noperation, mainly in response to destination side changes through\nwl_data_offer.set_actions, and as the data device enters/leaves\nsurfaces.\n\nIt is only possible to receive this event after\nwl_data_source.dnd_drop_performed if the drag-and-drop operation\nended in an \"ask\" action, in which case the final wl_data_source.action\nevent will happen immediately before wl_data_source.dnd_finished.\n\nCompositors may also change the selected action on the fly, mainly\nin response to keyboard modifier changes during the drag-and-drop\noperation.\n\nThe most recent action received is always the valid one. The chosen\naction may change alongside negotiation (e.g. an \"ask\" action can turn\ninto a \"move\" operation), so the effects of the final action must\nalways be applied in wl_data_offer.dnd_finished.\n\nClients can trigger cursor surface changes from this point, so\nthey reflect the current action.\n\nOnly available since version 3 of the interface"] - Action { - dnd_action: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "target", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "dnd_drop_performed", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "dnd_finished", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "action", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Target { .. } => 0, - Event::Send { .. } => 1, - Event::Cancelled => 2, - Event::DndDropPerformed => 3, - Event::DndFinished => 4, - Event::Action { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Target { .. } => 1, - Event::Send { .. } => 1, - Event::Cancelled => 1, - Event::DndDropPerformed => 3, - Event::DndFinished => 3, - Event::Action { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Target { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - if s.len() == 0 { - None - } else { - Some(s) - } - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Cancelled), - 3 => Ok(Event::DndDropPerformed), - 4 => Ok(Event::DndFinished), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Action { - dnd_action: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_data_device_manager::DndAction::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Target { - mime_type: if _args[0].s.is_null() { - None - } else { - Some( - ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - ) - }, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 2 => Ok(Event::Cancelled), - 3 => Ok(Event::DndDropPerformed), - 4 => Ok(Event::DndFinished), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Action { - dnd_action: super::wl_data_device_manager::DndAction::from_raw(_args[0].u) - .ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataSource(Proxy); - impl AsRef> for WlDataSource { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataSource { - #[inline] - fn from(value: Proxy) -> Self { - WlDataSource(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataSource) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataSource { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataSource { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_source"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_source_interface } - } - } - impl WlDataSource { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types\nadvertised to targets. Can be called several times to offer\nmultiple types."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the data source\n\nDestroy the data source.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the available drag-and-drop actions\n\nSets the actions that the source side client supports for this\noperation. This request may trigger wl_data_source.action and\nwl_data_offer.action events if the compositor needs to change the\nselected action.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, otherwise it will result\nin a protocol error.\n\nThis request must be made once only, and can only be made on sources\nused in drag-and-drop, so it must be performed before\nwl_data_device.start_drag. Attempting to use the source other than\nfor drag-and-drop will raise a protocol error.\n\nOnly available since version 3 of the interface."] - pub fn set_actions(&self, dnd_actions: super::wl_data_device_manager::DndAction) -> () { - let msg = Request::SetActions { - dnd_actions: dnd_actions, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ACTIONS_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TARGET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DND_DROP_PERFORMED_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DND_FINISHED_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTION_SINCE: u32 = 3u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_source_requests: [wl_message; 3] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_actions\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_source_events: [wl_message; 6] = [ - wl_message { - name: b"target\0" as *const u8 as *const c_char, - signature: b"?s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"dnd_drop_performed\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"dnd_finished\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"action\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_source_interface: wl_interface = wl_interface { - name: b"wl_data_source\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &wl_data_source_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_data_source_events as *const _ }, - }; -} -#[doc = "data transfer device\n\nThere is one wl_data_device per seat which can be obtained\nfrom the global wl_data_device_manager singleton.\n\nA wl_data_device provides access to inter-client data transfer\nmechanisms such as copy-and-paste and drag-and-drop."] -pub mod wl_data_device { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "start drag-and-drop operation\n\nThis request asks the compositor to start a drag-and-drop\noperation on behalf of the client.\n\nThe source argument is the data source that provides the data\nfor the eventual data transfer. If source is NULL, enter, leave\nand motion events are sent only to the client that initiated the\ndrag and the client is expected to handle the data passing\ninternally. If source is destroyed, the drag-and-drop session will be\ncancelled.\n\nThe origin surface is the surface where the drag originates and\nthe client must have an active implicit grab that matches the\nserial.\n\nThe icon surface is an optional (can be NULL) surface that\nprovides an icon to be moved around with the cursor. Initially,\nthe top-left corner of the icon surface is placed at the cursor\nhotspot, but subsequent wl_surface.attach request can move the\nrelative position. Attach requests must be confirmed with\nwl_surface.commit as usual. The icon surface is given the role of\na drag-and-drop icon. If the icon surface already has another role,\nit raises a protocol error.\n\nThe current and pending input regions of the icon wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the icon surface. When the use\nas an icon ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped."] - StartDrag { - source: Option, - origin: super::wl_surface::WlSurface, - icon: Option, - serial: u32, - }, - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection\nto the data from the source on behalf of the client.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - serial: u32, - }, - #[doc = "destroy data device\n\nThis request destroys the data device.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 2 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "start_drag", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 2, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::StartDrag { .. } => 0, - Request::SetSelection { .. } => 1, - Request::Release => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::StartDrag { .. } => 1, - Request::SetSelection { .. } => 1, - Request::Release => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::StartDrag { - source, - origin, - icon, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Object(origin.as_ref().id()), - Argument::Object(icon.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::SetSelection { source, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::StartDrag { - source, - origin, - icon, - serial, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].o = origin.as_ref().c_ptr() as *mut _; - _args_array[2].o = icon - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[3].u = serial; - f(0, &mut _args_array) - } - Request::SetSelection { source, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = serial; - f(1, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wl_data_offer\n\nThe data_offer event introduces a new wl_data_offer object,\nwhich will subsequently be used in either the\ndata_device.enter event (for drag-and-drop) or the\ndata_device.selection event (for selections). Immediately\nfollowing the data_device_data_offer event, the new data_offer\nobject will send out data_offer.offer events to describe the\nmime types it offers."] - DataOffer { - id: Main, - }, - #[doc = "initiate drag-and-drop session\n\nThis event is sent when an active drag-and-drop pointer enters\na surface owned by the client. The position of the pointer at\nenter time is provided by the x and y arguments, in surface-local\ncoordinates."] - Enter { - serial: u32, - surface: super::wl_surface::WlSurface, - x: f64, - y: f64, - id: Option, - }, - #[doc = "end drag-and-drop session\n\nThis event is sent when the drag-and-drop pointer leaves the\nsurface and the session ends. The client must destroy the\nwl_data_offer introduced at enter time at this point."] - Leave, - #[doc = "drag-and-drop session motion\n\nThis event is sent when the drag-and-drop pointer moves within\nthe currently focused surface. The new position of the pointer\nis provided by the x and y arguments, in surface-local\ncoordinates."] - Motion { time: u32, x: f64, y: f64 }, - #[doc = "end drag-and-drop session successfully\n\nThe event is sent when a drag-and-drop operation is ended\nbecause the implicit grab is removed.\n\nThe drag-and-drop destination is expected to honor the last action\nreceived through wl_data_offer.action, if the resulting action is\n\"copy\" or \"move\", the destination can still perform\nwl_data_offer.receive requests, and is expected to end all\ntransfers with a wl_data_offer.finish request.\n\nIf the resulting action is \"ask\", the action will not be considered\nfinal. The drag-and-drop destination is expected to perform one last\nwl_data_offer.set_actions request, or wl_data_offer.destroy in order\nto cancel the operation."] - Drop, - #[doc = "advertise new selection\n\nThe selection event is sent out to notify the client of a new\nwl_data_offer for the selection for this device. The\ndata_device.data_offer and the data_offer.offer events are\nsent out immediately before this event to introduce the data\noffer object. The selection event is sent to a client\nimmediately before receiving keyboard focus and when a new\nselection is set while the client has keyboard focus. The\ndata_offer is valid until a new data_offer or NULL is received\nor until the client loses keyboard focus. Switching surface with\nkeyboard focus within the same client doesn't mean a new selection\nwill be sent. The client must destroy the previous selection\ndata_offer, if any, upon receiving this event."] - Selection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "drop", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Enter { .. } => 1, - Event::Leave => 2, - Event::Motion { .. } => 3, - Event::Drop => 4, - Event::Selection { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Enter { .. } => 1, - Event::Leave => 1, - Event::Motion { .. } => 1, - Event::Drop => 1, - Event::Selection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Leave), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Drop), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DataOffer { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Enter { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - x: (_args[2].f as f64) / 256., - y: (_args[3].f as f64) / 256., - id: if _args[4].o.is_null() { - None - } else { - Some( - Proxy::::from_c_ptr( - _args[4].o as *mut _, - ) - .into(), - ) - }, - }) - } - 2 => Ok(Event::Leave), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Motion { - time: _args[0].u, - x: (_args[1].f as f64) / 256., - y: (_args[2].f as f64) / 256., - }) - } - 4 => Ok(Event::Drop), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some( - Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - ) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataDevice(Proxy); - impl AsRef> for WlDataDevice { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataDevice { - #[inline] - fn from(value: Proxy) -> Self { - WlDataDevice(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataDevice) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataDevice { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataDevice { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_device"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_device_interface } - } - } - impl WlDataDevice { - #[doc = "start drag-and-drop operation\n\nThis request asks the compositor to start a drag-and-drop\noperation on behalf of the client.\n\nThe source argument is the data source that provides the data\nfor the eventual data transfer. If source is NULL, enter, leave\nand motion events are sent only to the client that initiated the\ndrag and the client is expected to handle the data passing\ninternally. If source is destroyed, the drag-and-drop session will be\ncancelled.\n\nThe origin surface is the surface where the drag originates and\nthe client must have an active implicit grab that matches the\nserial.\n\nThe icon surface is an optional (can be NULL) surface that\nprovides an icon to be moved around with the cursor. Initially,\nthe top-left corner of the icon surface is placed at the cursor\nhotspot, but subsequent wl_surface.attach request can move the\nrelative position. Attach requests must be confirmed with\nwl_surface.commit as usual. The icon surface is given the role of\na drag-and-drop icon. If the icon surface already has another role,\nit raises a protocol error.\n\nThe current and pending input regions of the icon wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the icon surface. When the use\nas an icon ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped."] - pub fn start_drag( - &self, - source: Option<&super::wl_data_source::WlDataSource>, - origin: &super::wl_surface::WlSurface, - icon: Option<&super::wl_surface::WlSurface>, - serial: u32, - ) -> () { - let msg = Request::StartDrag { - source: source.map(|o| o.clone()), - origin: origin.clone(), - icon: icon.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection\nto the data from the source on behalf of the client.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::wl_data_source::WlDataSource>, - serial: u32, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy data device\n\nThis request destroys the data device.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 2 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_START_DRAG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DROP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - static mut wl_data_device_requests_start_drag_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_data_source::wl_data_source_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut wl_data_device_requests_set_selection_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_data_source::wl_data_source_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_device_requests: [wl_message; 3] = [ - wl_message { - name: b"start_drag\0" as *const u8 as *const c_char, - signature: b"?oo?ou\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_requests_start_drag_types as *const _ }, - }, - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?ou\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_requests_set_selection_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut wl_data_device_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { &super::wl_data_offer::wl_data_offer_interface as *const wl_interface }]; - static mut wl_data_device_events_enter_types: [*const wl_interface; 5] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_data_offer::wl_data_offer_interface as *const wl_interface }, - ]; - static mut wl_data_device_events_selection_types: [*const wl_interface; 1] = - [unsafe { &super::wl_data_offer::wl_data_offer_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_device_events: [wl_message; 6] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoff?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"drop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_events_selection_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_device_interface: wl_interface = wl_interface { - name: b"wl_data_device\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &wl_data_device_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_data_device_events as *const _ }, - }; -} -#[doc = "data transfer interface\n\nThe wl_data_device_manager is a singleton global object that\nprovides access to inter-client data transfer mechanisms such as\ncopy-and-paste and drag-and-drop. These mechanisms are tied to\na wl_seat and this interface lets a client get a wl_data_device\ncorresponding to a wl_seat.\n\nDepending on the version bound, the objects created from the bound\nwl_data_device_manager object will have different requirements for\nfunctioning properly. See wl_data_source.set_actions,\nwl_data_offer.accept and wl_data_offer.finish for details."] -pub mod wl_data_device_manager { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "drag and drop actions\n\nThis is a bitmask of the available/preferred actions in a\ndrag-and-drop operation.\n\nIn the compositor, the selected action is a result of matching the\nactions offered by the source and destination sides. \"action\" events\nwith a \"none\" action will be sent to both source and destination if\nthere is no match. All further checks will effectively happen on\n(source actions ∩ destination actions).\n\nIn addition, compositors may also pick different actions in\nreaction to key modifiers being pressed. One common design that\nis used in major toolkits (and the behavior recommended for\ncompositors) is:\n\n- If no modifiers are pressed, the first match (in bit order)\nwill be used.\n- Pressing Shift selects \"move\", if enabled in the mask.\n- Pressing Control selects \"copy\", if enabled in the mask.\n\nBehavior beyond that is considered implementation-dependent.\nCompositors may for example bind other modifiers (like Alt/Meta)\nor drags initiated with other buttons than BTN_LEFT to specific\nactions (e.g. \"ask\")."] pub struct DndAction : u32 { # [doc = "no action"] const None = 0 ; # [doc = "copy action"] const Copy = 1 ; # [doc = "move action"] const Move = 2 ; # [doc = "ask action"] const Ask = 4 ; } } - impl DndAction { - pub fn from_raw(n: u32) -> Option { - Some(DndAction::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new data source\n\nCreate a new data source."] - CreateDataSource {}, - #[doc = "create a new data device\n\nCreate a new data device for a given seat."] - GetDataDevice { seat: super::wl_seat::WlSeat }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_data_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_data_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateDataSource { .. } => 0, - Request::GetDataDevice { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateDataSource { .. } => 1, - Request::GetDataDevice { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateDataSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDataDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateDataSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDataDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataDeviceManager(Proxy); - impl AsRef> for WlDataDeviceManager { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataDeviceManager { - #[inline] - fn from(value: Proxy) -> Self { - WlDataDeviceManager(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataDeviceManager) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataDeviceManager { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataDeviceManager { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_device_manager"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_device_manager_interface } - } - } - impl WlDataDeviceManager { - #[doc = "create a new data source\n\nCreate a new data source."] - pub fn create_data_source(&self) -> Main { - let msg = Request::CreateDataSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a new data device\n\nCreate a new data device for a given seat."] - pub fn get_data_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDataDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_DATA_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DATA_DEVICE_SINCE: u32 = 1u32; - static mut wl_data_device_manager_requests_create_data_source_types: [*const wl_interface; 1] = - [unsafe { &super::wl_data_source::wl_data_source_interface as *const wl_interface }]; - static mut wl_data_device_manager_requests_get_data_device_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_data_device::wl_data_device_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_device_manager_requests: [wl_message; 2] = [ - wl_message { - name: b"create_data_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_manager_requests_create_data_source_types as *const _ }, - }, - wl_message { - name: b"get_data_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_manager_requests_get_data_device_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_device_manager_interface: wl_interface = wl_interface { - name: b"wl_data_device_manager\0" as *const u8 as *const c_char, - version: 3, - request_count: 2, - requests: unsafe { &wl_data_device_manager_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "create desktop-style surfaces\n\nThis interface is implemented by servers that provide\ndesktop-style user interfaces.\n\nIt allows clients to associate a wl_shell_surface with\na basic surface.\n\nNote! This protocol is deprecated and not intended for production use.\nFor desktop-style user interfaces, use xdg_shell."] -pub mod wl_shell { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a shell surface from a surface\n\nCreate a shell surface for an existing surface. This gives\nthe wl_surface the role of a shell surface. If the wl_surface\nalready has another role, it raises a protocol error.\n\nOnly one shell surface can be associated with a given surface."] - GetShellSurface { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "get_shell_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetShellSurface { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetShellSurface { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::wl_shell_surface::WlShellSurface, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetShellSurface { surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetShellSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShell(Proxy); - impl AsRef> for WlShell { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShell { - #[inline] - fn from(value: Proxy) -> Self { - WlShell(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShell) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShell { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShell { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shell"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shell_interface } - } - } - impl WlShell { - #[doc = "create a shell surface from a surface\n\nCreate a shell surface for an existing surface. This gives\nthe wl_surface the role of a shell surface. If the wl_surface\nalready has another role, it raises a protocol error.\n\nOnly one shell surface can be associated with a given surface."] - pub fn get_shell_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetShellSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SHELL_SURFACE_SINCE: u32 = 1u32; - static mut wl_shell_requests_get_shell_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_shell_surface::wl_shell_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shell_requests: [wl_message; 1] = [wl_message { - name: b"get_shell_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_requests_get_shell_surface_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shell_interface: wl_interface = wl_interface { - name: b"wl_shell\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_shell_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "desktop-style metadata interface\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides requests to treat surfaces like toplevel, fullscreen\nor popup windows, move, resize or maximize them, associate\nmetadata like title and class, etc.\n\nOn the server side the object is automatically destroyed when\nthe related wl_surface is destroyed. On the client side,\nwl_shell_surface_destroy() must be called before destroying\nthe wl_surface object."] -pub mod wl_shell_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation. The server may\nuse this information to adapt its behavior, e.g. choose\nan appropriate cursor image."] pub struct Resize : u32 { # [doc = "no edge"] const None = 0 ; # [doc = "top edge"] const Top = 1 ; # [doc = "bottom edge"] const Bottom = 2 ; # [doc = "left edge"] const Left = 4 ; # [doc = "top and left edges"] const TopLeft = 5 ; # [doc = "bottom and left edges"] const BottomLeft = 6 ; # [doc = "right edge"] const Right = 8 ; # [doc = "top and right edges"] const TopRight = 9 ; # [doc = "bottom and right edges"] const BottomRight = 10 ; } } - impl Resize { - pub fn from_raw(n: u32) -> Option { - Some(Resize::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - bitflags! { # [doc = "details of transient behaviour\n\nThese flags specify details of the expected behaviour\nof transient surfaces. Used in the set_transient request."] pub struct Transient : u32 { # [doc = "do not set keyboard focus"] const Inactive = 1 ; } } - impl Transient { - pub fn from_raw(n: u32) -> Option { - Some(Transient::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "different method to set the surface fullscreen\n\nHints to indicate to the compositor how to deal with a conflict\nbetween the dimensions of the surface and the dimensions of the\noutput. The compositor is free to ignore this parameter."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum FullscreenMethod { - #[doc = "no preference, apply default policy"] - Default = 0, - #[doc = "scale, preserve the surface's aspect ratio and center on output"] - Scale = 1, - #[doc = "switch output mode to the smallest mode that can fit the surface, add black borders to compensate size mismatch"] - Driver = 2, - #[doc = "no upscaling, center on output and add black borders to compensate size mismatch"] - Fill = 3, - } - impl FullscreenMethod { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(FullscreenMethod::Default), - 1 => Some(FullscreenMethod::Scale), - 2 => Some(FullscreenMethod::Driver), - 3 => Some(FullscreenMethod::Fill), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - Pong { serial: u32 }, - #[doc = "start an interactive move\n\nStart a pointer-driven move of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a pointer-driven resizing of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: Resize, - }, - #[doc = "make the surface a toplevel surface\n\nMap the surface as a toplevel surface.\n\nA toplevel surface is not fullscreen, maximized or transient."] - SetToplevel, - #[doc = "make the surface a transient surface\n\nMap the surface relative to an existing surface.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates.\n\nThe flags argument controls details of the transient behaviour."] - SetTransient { - parent: super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - }, - #[doc = "make the surface a fullscreen surface\n\nMap the surface as a fullscreen surface.\n\nIf an output parameter is given then the surface will be made\nfullscreen on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe client may specify a method to resolve a size conflict\nbetween the output size and the surface size - this is provided\nthrough the method parameter.\n\nThe framerate parameter is used only when the method is set\nto \"driver\", to indicate the preferred framerate. A value of 0\nindicates that the client does not care about framerate. The\nframerate is specified in mHz, that is framerate of 60000 is 60Hz.\n\nA method of \"scale\" or \"driver\" implies a scaling operation of\nthe surface, either via a direct scaling operation or a change of\nthe output mode. This will override any kind of output scaling, so\nthat mapping a surface with a buffer size equal to the mode can\nfill the screen independent of buffer_scale.\n\nA method of \"fill\" means we don't scale up the buffer, however\nany output scale is applied. This means that you may run into\nan edge case where the application maps a buffer with the same\nsize of the output mode but buffer_scale 1 (thus making a\nsurface larger than the output). In this case it is allowed to\ndownscale the results to fit the screen.\n\nThe compositor must reply to this request with a configure event\nwith the dimensions for the output on which the surface will\nbe made fullscreen."] - SetFullscreen { - method: FullscreenMethod, - framerate: u32, - output: Option, - }, - #[doc = "make the surface a popup surface\n\nMap the surface as a popup.\n\nA popup surface is a transient surface with an added pointer\ngrab.\n\nAn existing implicit grab will be changed to owner-events mode,\nand the popup grab will continue after the implicit grab ends\n(i.e. releasing the mouse button does not cause the popup to\nbe unmapped).\n\nThe popup grab continues until the window is destroyed or a\nmouse button is pressed in any other client's window. A click\nin any of the client's surfaces is reported as normal, however,\nclicks in other clients' surfaces will be discarded and trigger\nthe callback.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates."] - SetPopup { - seat: super::wl_seat::WlSeat, - serial: u32, - parent: super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - }, - #[doc = "make the surface a maximized surface\n\nMap the surface as a maximized surface.\n\nIf an output parameter is given then the surface will be\nmaximized on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe compositor will reply with a configure event telling\nthe expected new surface size. The operation is completed\non the next buffer attach to this surface.\n\nA maximized surface typically fills the entire output it is\nbound to, except for desktop elements such as panels. This is\nthe main difference between a maximized shell surface and a\nfullscreen shell surface.\n\nThe details depend on the compositor implementation."] - SetMaximized { - output: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set surface class\n\nSet a class for the surface.\n\nThe surface class identifies the general class of applications\nto which the surface belongs. A common convention is to use the\nfile name (or the full path if it is a non-standard location) of\nthe application's .desktop file as the class."] - SetClass { class_: String }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_toplevel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_transient", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_popup", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_class", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Pong { .. } => 0, - Request::Move { .. } => 1, - Request::Resize { .. } => 2, - Request::SetToplevel => 3, - Request::SetTransient { .. } => 4, - Request::SetFullscreen { .. } => 5, - Request::SetPopup { .. } => 6, - Request::SetMaximized { .. } => 7, - Request::SetTitle { .. } => 8, - Request::SetClass { .. } => 9, - } - } - fn since(&self) -> u32 { - match *self { - Request::Pong { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::SetToplevel => 1, - Request::SetTransient { .. } => 1, - Request::SetFullscreen { .. } => 1, - Request::SetPopup { .. } => 1, - Request::SetMaximized { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetClass { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Uint(serial),], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges.to_raw()), - ], - }, - Request::SetToplevel => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::SetTransient { - parent, - x, - y, - flags, - } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(parent.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Uint(flags.to_raw()), - ], - }, - Request::SetFullscreen { - method, - framerate, - output, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![ - Argument::Uint(method.to_raw()), - Argument::Uint(framerate), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - ], - }, - Request::SetPopup { - seat, - serial, - parent, - x, - y, - flags, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Object(parent.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Uint(flags.to_raw()), - ], - }, - Request::SetMaximized { output } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetClass { class_ } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(class_.into()) - })),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(0, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(1, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges.to_raw(); - f(2, &mut _args_array) - } - Request::SetToplevel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::SetTransient { - parent, - x, - y, - flags, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent.as_ref().c_ptr() as *mut _; - _args_array[1].i = x; - _args_array[2].i = y; - _args_array[3].u = flags.to_raw(); - f(4, &mut _args_array) - } - Request::SetFullscreen { - method, - framerate, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = method.to_raw(); - _args_array[1].u = framerate; - _args_array[2].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(5, &mut _args_array) - } - Request::SetPopup { - seat, - serial, - parent, - x, - y, - flags, - } => { - let mut _args_array: [wl_argument; 6] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].o = parent.as_ref().c_ptr() as *mut _; - _args_array[3].i = x; - _args_array[4].i = y; - _args_array[5].u = flags.to_raw(); - f(6, &mut _args_array) - } - Request::SetMaximized { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(7, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(8, &mut _args_array) - } - Request::SetClass { class_ } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(class_).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(9, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "ping client\n\nPing a client to check if it is receiving events and sending\nrequests. A client is expected to reply with a pong request."] - Ping { serial: u32 }, - #[doc = "suggest resize\n\nThe configure event asks the client to resize its surface.\n\nThe size is a hint, in the sense that the client is free to\nignore it if it doesn't resize, pick a smaller size (to\nsatisfy aspect ratio or resize in steps of NxM pixels).\n\nThe edges parameter provides a hint about how the surface\nwas resized. The client may use this information to decide\nhow to adjust its content to the new size (e.g. a scrolling\narea might adjust its content position to leave the viewable\ncontent unmoved).\n\nThe client is free to dismiss all but the last configure\nevent it received.\n\nThe width and height arguments specify the size of the window\nin surface-local coordinates."] - Configure { - edges: Resize, - width: i32, - height: i32, - }, - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup grab is broken,\nthat is, when the user clicks a surface that doesn't belong\nto the client owning the popup surface."] - PopupDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - Event::Configure { .. } => 1, - Event::PopupDone => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - Event::Configure { .. } => 1, - Event::PopupDone => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - edges: { - if let Some(Argument::Uint(val)) = args.next() { - Resize::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::PopupDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - edges: Resize::from_raw(_args[0].u).ok_or(())?, - width: _args[1].i, - height: _args[2].i, - }) - } - 2 => Ok(Event::PopupDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShellSurface(Proxy); - impl AsRef> for WlShellSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShellSurface { - #[inline] - fn from(value: Proxy) -> Self { - WlShellSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShellSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShellSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShellSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shell_surface"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shell_surface_interface } - } - } - impl WlShellSurface { - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart a pointer-driven move of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a pointer-driven resizing of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: Resize) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a toplevel surface\n\nMap the surface as a toplevel surface.\n\nA toplevel surface is not fullscreen, maximized or transient."] - pub fn set_toplevel(&self) -> () { - let msg = Request::SetToplevel; - self.0.send::(msg, None); - } - #[doc = "make the surface a transient surface\n\nMap the surface relative to an existing surface.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates.\n\nThe flags argument controls details of the transient behaviour."] - pub fn set_transient( - &self, - parent: &super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - ) -> () { - let msg = Request::SetTransient { - parent: parent.clone(), - x: x, - y: y, - flags: flags, - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a fullscreen surface\n\nMap the surface as a fullscreen surface.\n\nIf an output parameter is given then the surface will be made\nfullscreen on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe client may specify a method to resolve a size conflict\nbetween the output size and the surface size - this is provided\nthrough the method parameter.\n\nThe framerate parameter is used only when the method is set\nto \"driver\", to indicate the preferred framerate. A value of 0\nindicates that the client does not care about framerate. The\nframerate is specified in mHz, that is framerate of 60000 is 60Hz.\n\nA method of \"scale\" or \"driver\" implies a scaling operation of\nthe surface, either via a direct scaling operation or a change of\nthe output mode. This will override any kind of output scaling, so\nthat mapping a surface with a buffer size equal to the mode can\nfill the screen independent of buffer_scale.\n\nA method of \"fill\" means we don't scale up the buffer, however\nany output scale is applied. This means that you may run into\nan edge case where the application maps a buffer with the same\nsize of the output mode but buffer_scale 1 (thus making a\nsurface larger than the output). In this case it is allowed to\ndownscale the results to fit the screen.\n\nThe compositor must reply to this request with a configure event\nwith the dimensions for the output on which the surface will\nbe made fullscreen."] - pub fn set_fullscreen( - &self, - method: FullscreenMethod, - framerate: u32, - output: Option<&super::wl_output::WlOutput>, - ) -> () { - let msg = Request::SetFullscreen { - method: method, - framerate: framerate, - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a popup surface\n\nMap the surface as a popup.\n\nA popup surface is a transient surface with an added pointer\ngrab.\n\nAn existing implicit grab will be changed to owner-events mode,\nand the popup grab will continue after the implicit grab ends\n(i.e. releasing the mouse button does not cause the popup to\nbe unmapped).\n\nThe popup grab continues until the window is destroyed or a\nmouse button is pressed in any other client's window. A click\nin any of the client's surfaces is reported as normal, however,\nclicks in other clients' surfaces will be discarded and trigger\nthe callback.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates."] - pub fn set_popup( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - parent: &super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - ) -> () { - let msg = Request::SetPopup { - seat: seat.clone(), - serial: serial, - parent: parent.clone(), - x: x, - y: y, - flags: flags, - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a maximized surface\n\nMap the surface as a maximized surface.\n\nIf an output parameter is given then the surface will be\nmaximized on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe compositor will reply with a configure event telling\nthe expected new surface size. The operation is completed\non the next buffer attach to this surface.\n\nA maximized surface typically fills the entire output it is\nbound to, except for desktop elements such as panels. This is\nthe main difference between a maximized shell surface and a\nfullscreen shell surface.\n\nThe details depend on the compositor implementation."] - pub fn set_maximized(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetMaximized { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set surface class\n\nSet a class for the surface.\n\nThe surface class identifies the general class of applications\nto which the surface belongs. A common convention is to use the\nfile name (or the full path if it is a non-standard location) of\nthe application's .desktop file as the class."] - pub fn set_class(&self, class_: String) -> () { - let msg = Request::SetClass { class_: class_ }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TRANSIENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CLASS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - static mut wl_shell_surface_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_set_transient_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_set_fullscreen_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - static mut wl_shell_surface_requests_set_popup_types: [*const wl_interface; 6] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_set_maximized_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shell_surface_requests: [wl_message; 10] = [ - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_resize_types as *const _ }, - }, - wl_message { - name: b"set_toplevel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_transient\0" as *const u8 as *const c_char, - signature: b"oiiu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_transient_types as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"uu?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"set_popup\0" as *const u8 as *const c_char, - signature: b"ouoiiu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_popup_types as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_maximized_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_class\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shell_surface_events: [wl_message; 3] = [ - wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"uii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shell_surface_interface: wl_interface = wl_interface { - name: b"wl_shell_surface\0" as *const u8 as *const c_char, - version: 1, - request_count: 10, - requests: unsafe { &wl_shell_surface_requests as *const _ }, - event_count: 3, - events: unsafe { &wl_shell_surface_events as *const _ }, - }; -} -#[doc = "an onscreen surface\n\nA surface is a rectangular area that may be displayed on zero\nor more outputs, and shown any number of times at the compositor's\ndiscretion. They can present wl_buffers, receive user input, and\ndefine a local coordinate system.\n\nThe size of a surface (and relative positions on it) is described\nin surface-local coordinates, which may differ from the buffer\ncoordinates of the pixel content, in case a buffer_transform\nor a buffer_scale is used.\n\nA surface without a \"role\" is fairly useless: a compositor does\nnot know where, when or how to present it. The role is the\npurpose of a wl_surface. Examples of roles are a cursor for a\npointer (as set by wl_pointer.set_cursor), a drag icon\n(wl_data_device.start_drag), a sub-surface\n(wl_subcompositor.get_subsurface), and a window as defined by a\nshell protocol (e.g. wl_shell.get_shell_surface).\n\nA surface can have only one role at a time. Initially a\nwl_surface does not have a role. Once a wl_surface is given a\nrole, it is set permanently for the whole lifetime of the\nwl_surface object. Giving the current role again is allowed,\nunless explicitly forbidden by the relevant interface\nspecification.\n\nSurface roles are given by requests in other interfaces such as\nwl_pointer.set_cursor. The request should explicitly mention\nthat this request gives a role to a wl_surface. Often, this\nrequest also creates a new protocol object that represents the\nrole and adds additional functionality to wl_surface. When a\nclient wants to destroy a wl_surface, they must destroy this 'role\nobject' before the wl_surface.\n\nDestroying the role object does not remove the role from the\nwl_surface, but it may stop the wl_surface from \"playing the role\".\nFor instance, if a wl_subsurface object is destroyed, the wl_surface\nit was created for will be unmapped and forget its position and\nz-order. It is allowed to create a wl_subsurface for the same\nwl_surface again, but it is not allowed to use the wl_surface as\na cursor (cursor is a different role than sub-surface, and role\nswitching is not allowed)."] -pub mod wl_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "wl_surface error values\n\nThese errors can be emitted in response to wl_surface requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "buffer scale value is invalid"] - InvalidScale = 0, - #[doc = "buffer transform value is invalid"] - InvalidTransform = 1, - #[doc = "buffer size is invalid"] - InvalidSize = 2, - #[doc = "buffer offset is invalid"] - InvalidOffset = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidScale), - 1 => Some(Error::InvalidTransform), - 2 => Some(Error::InvalidSize), - 3 => Some(Error::InvalidOffset), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "delete surface\n\nDeletes the surface and invalidates its object ID.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the surface contents\n\nSet a buffer as the content of this surface.\n\nThe new size of the surface is calculated based on the buffer\nsize transformed by the inverse buffer_transform and the\ninverse buffer_scale. This means that at commit time the supplied\nbuffer size must be an integer multiple of the buffer_scale. If\nthat's not the case, an invalid_size error is sent.\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes. Setting anything other than 0\nas x and y arguments is discouraged, and should instead be replaced\nwith using the separate wl_surface.offset request.\n\nWhen the bound wl_surface version is 5 or higher, passing any\nnon-zero x or y is a protocol violation, and will result in an\n'invalid_offset' error being raised. To achieve equivalent semantics,\nuse wl_surface.offset.\n\nSurface contents are double-buffered state, see wl_surface.commit.\n\nThe initial surface contents are void; there is no content.\nwl_surface.attach assigns the given wl_buffer as the pending\nwl_buffer. wl_surface.commit makes the pending wl_buffer the new\nsurface contents, and the size of the surface becomes the size\ncalculated from the wl_buffer, as described above. After commit,\nthere is no pending buffer until the next attach.\n\nCommitting a pending wl_buffer allows the compositor to read the\npixels in the wl_buffer. The compositor may access the pixels at\nany time after the wl_surface.commit request. When the compositor\nwill not access the pixels anymore, it will send the\nwl_buffer.release event. Only after receiving wl_buffer.release,\nthe client may reuse the wl_buffer. A wl_buffer that has been\nattached and then replaced by another attach instead of committed\nwill not receive a release event, and is not used by the\ncompositor.\n\nIf a pending wl_buffer has been committed to more than one wl_surface,\nthe delivery of wl_buffer.release events becomes undefined. A well\nbehaved client should not rely on wl_buffer.release events in this\ncase. Alternatively, a client could create multiple wl_buffer objects\nfrom the same backing storage or use wp_linux_buffer_release.\n\nDestroying the wl_buffer after wl_buffer.release does not change\nthe surface contents. Destroying the wl_buffer before wl_buffer.release\nis allowed as long as the underlying buffer storage isn't re-used (this\ncan happen e.g. on client process termination). However, if the client\ndestroys the wl_buffer before receiving the wl_buffer.release event and\nmutates the underlying buffer storage, the surface contents become\nundefined immediately.\n\nIf wl_surface.attach is sent with a NULL wl_buffer, the\nfollowing wl_surface.commit will remove the surface content."] - Attach { - buffer: Option, - x: i32, - y: i32, - }, - #[doc = "mark part of the surface damaged\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in surface-local coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage adds pending damage: the new pending damage\nis the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nNote! New clients should not use this request. Instead damage can be\nposted with wl_surface.damage_buffer which uses buffer coordinates\ninstead of surface coordinates."] - Damage { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "request a frame throttling hint\n\nRequest a notification when it is a good time to start drawing a new\nframe, by creating a frame callback. This is useful for throttling\nredrawing operations, and driving animations.\n\nWhen a client is animating on a wl_surface, it can use the 'frame'\nrequest to get notified when it is a good time to draw and commit the\nnext frame of animation. If the client commits an update earlier than\nthat, it is likely that some updates will not make it to the display,\nand the client is wasting resources by drawing too often.\n\nThe frame request will take effect on the next wl_surface.commit.\nThe notification will only be posted for one frame unless\nrequested again. For a wl_surface, the notifications are posted in\nthe order the frame requests were committed.\n\nThe server must send the notifications so that a client\nwill not send excessive updates, while still allowing\nthe highest possible update rate for clients that wait for the reply\nbefore drawing again. The server should give some time for the client\nto draw and commit after sending the frame callback events to let it\nhit the next output refresh.\n\nA server should avoid signaling the frame callbacks if the\nsurface is not visible in any way, e.g. the surface is off-screen,\nor completely obscured by other opaque surfaces.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the current time, in\nmilliseconds, with an undefined base."] - Frame {}, - #[doc = "set opaque region\n\nThis request sets the region of the surface that contains\nopaque content.\n\nThe opaque region is an optimization hint for the compositor\nthat lets it optimize the redrawing of content behind opaque\nregions. Setting an opaque region is not required for correct\nbehaviour, but marking transparent content as opaque will result\nin repaint artifacts.\n\nThe opaque region is specified in surface-local coordinates.\n\nThe compositor ignores the parts of the opaque region that fall\noutside of the surface.\n\nOpaque region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_opaque_region changes the pending opaque region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise, the pending and current regions are never changed.\n\nThe initial value for an opaque region is empty. Setting the pending\nopaque region has copy semantics, and the wl_region object can be\ndestroyed immediately. A NULL wl_region causes the pending opaque\nregion to be set to empty."] - SetOpaqueRegion { - region: Option, - }, - #[doc = "set input region\n\nThis request sets the region of the surface that can receive\npointer and touch events.\n\nInput events happening outside of this region will try the next\nsurface in the server surface stack. The compositor ignores the\nparts of the input region that fall outside of the surface.\n\nThe input region is specified in surface-local coordinates.\n\nInput region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_input_region changes the pending input region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise the pending and current regions are never changed,\nexcept cursor and icon surfaces are special cases, see\nwl_pointer.set_cursor and wl_data_device.start_drag.\n\nThe initial value for an input region is infinite. That means the\nwhole surface will accept input. Setting the pending input region\nhas copy semantics, and the wl_region object can be destroyed\nimmediately. A NULL wl_region causes the input region to be set\nto infinite."] - SetInputRegion { - region: Option, - }, - #[doc = "commit pending surface state\n\nSurface state (input, opaque, and damage regions, attached buffers,\netc.) is double-buffered. Protocol requests modify the pending state,\nas opposed to the current state in use by the compositor. A commit\nrequest atomically applies all pending state, replacing the current\nstate. After commit, the new pending state is as documented for each\nrelated request.\n\nOn commit, a pending wl_buffer is applied first, and all other state\nsecond. This means that all coordinates in double-buffered state are\nrelative to the new wl_buffer coming into use, except for\nwl_surface.attach itself. If there is no pending wl_buffer, the\ncoordinates are relative to the current surface contents.\n\nAll requests that need a commit to become effective are documented\nto affect double-buffered state.\n\nOther interfaces may add further double-buffered surface state."] - Commit, - #[doc = "sets the buffer transformation\n\nThis request sets an optional transformation on how the compositor\ninterprets the contents of the buffer attached to the surface. The\naccepted values for the transform parameter are the values for\nwl_output.transform.\n\nBuffer transform is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer transformation set to normal.\n\nwl_surface.set_buffer_transform changes the pending buffer\ntransformation. wl_surface.commit copies the pending buffer\ntransformation to the current one. Otherwise, the pending and current\nvalues are never changed.\n\nThe purpose of this request is to allow clients to render content\naccording to the output transform, thus permitting the compositor to\nuse certain optimizations even if the display is rotated. Using\nhardware overlays and scanning out a client buffer for fullscreen\nsurfaces are examples of such optimizations. Those optimizations are\nhighly dependent on the compositor implementation, so the use of this\nrequest should be considered on a case-by-case basis.\n\nNote that if the transform value includes 90 or 270 degree rotation,\nthe width of the buffer will become the surface height and the height\nof the buffer will become the surface width.\n\nIf transform is not one of the values from the\nwl_output.transform enum the invalid_transform protocol error\nis raised.\n\nOnly available since version 2 of the interface"] - SetBufferTransform { - transform: super::wl_output::Transform, - }, - #[doc = "sets the buffer scaling factor\n\nThis request sets an optional scaling factor on how the compositor\ninterprets the contents of the buffer attached to the window.\n\nBuffer scale is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer scale set to 1.\n\nwl_surface.set_buffer_scale changes the pending buffer scale.\nwl_surface.commit copies the pending buffer scale to the current one.\nOtherwise, the pending and current values are never changed.\n\nThe purpose of this request is to allow clients to supply higher\nresolution buffer data for use on high resolution outputs. It is\nintended that you pick the same buffer scale as the scale of the\noutput that the surface is displayed on. This means the compositor\ncan avoid scaling when rendering the surface on that output.\n\nNote that if the scale is larger than 1, then you have to attach\na buffer that is larger (by a factor of scale in each dimension)\nthan the desired surface size.\n\nIf scale is not positive the invalid_scale protocol error is\nraised.\n\nOnly available since version 3 of the interface"] - SetBufferScale { scale: i32 }, - #[doc = "mark part of the surface damaged using buffer coordinates\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in buffer coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage_buffer adds pending damage: the new pending\ndamage is the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nThis request differs from wl_surface.damage in only one way - it\ntakes damage in buffer coordinates instead of surface-local\ncoordinates. While this generally is more intuitive than surface\ncoordinates, it is especially desirable when using wp_viewport\nor when a drawing library (like EGL) is unaware of buffer scale\nand buffer transform.\n\nNote: Because buffer transformation changes and damage requests may\nbe interleaved in the protocol stream, it is impossible to determine\nthe actual mapping between surface and buffer damage until\nwl_surface.commit time. Therefore, compositors wishing to take both\nkinds of damage into account will have to accumulate damage from the\ntwo requests separately and only transform from one to the other\nafter receiving the wl_surface.commit.\n\nOnly available since version 4 of the interface"] - DamageBuffer { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "set the surface contents offset\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes.\n\nSurface location offset is double-buffered state, see\nwl_surface.commit.\n\nThis request is semantically equivalent to and the replaces the x and y\narguments in the wl_surface.attach request in wl_surface versions prior\nto 5. See wl_surface.attach for details.\n\nOnly available since version 5 of the interface"] - Offset { x: i32, y: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "attach", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "damage", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "set_opaque_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_input_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "commit", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_buffer_transform", - since: 2, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_buffer_scale", - since: 3, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "damage_buffer", - since: 4, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "offset", - since: 5, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Attach { .. } => 1, - Request::Damage { .. } => 2, - Request::Frame { .. } => 3, - Request::SetOpaqueRegion { .. } => 4, - Request::SetInputRegion { .. } => 5, - Request::Commit => 6, - Request::SetBufferTransform { .. } => 7, - Request::SetBufferScale { .. } => 8, - Request::DamageBuffer { .. } => 9, - Request::Offset { .. } => 10, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Attach { .. } => 1, - Request::Damage { .. } => 1, - Request::Frame { .. } => 1, - Request::SetOpaqueRegion { .. } => 1, - Request::SetInputRegion { .. } => 1, - Request::Commit => 1, - Request::SetBufferTransform { .. } => 2, - Request::SetBufferScale { .. } => 3, - Request::DamageBuffer { .. } => 4, - Request::Offset { .. } => 5, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 3 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Attach { buffer, x, y } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Object(buffer.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Damage { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Frame {} => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::NewId(0),], - }, - Request::SetOpaqueRegion { region } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetInputRegion { region } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::Commit => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![], - }, - Request::SetBufferTransform { transform } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Int(transform.to_raw() as i32),], - }, - Request::SetBufferScale { scale } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(scale),], - }, - Request::DamageBuffer { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Offset { x, y } => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Attach { buffer, x, y } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = buffer - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].i = x; - _args_array[2].i = y; - f(1, &mut _args_array) - } - Request::Damage { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - Request::Frame {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(3, &mut _args_array) - } - Request::SetOpaqueRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(4, &mut _args_array) - } - Request::SetInputRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(5, &mut _args_array) - } - Request::Commit => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(6, &mut _args_array) - } - Request::SetBufferTransform { transform } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = transform.to_raw() as i32; - f(7, &mut _args_array) - } - Request::SetBufferScale { scale } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = scale; - f(8, &mut _args_array) - } - Request::DamageBuffer { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(9, &mut _args_array) - } - Request::Offset { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(10, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "surface enters an output\n\nThis is emitted whenever a surface's creation, movement, or resizing\nresults in some part of it being within the scanout region of an\noutput.\n\nNote that a surface may be overlapping with zero or more outputs."] - Enter { output: super::wl_output::WlOutput }, - #[doc = "surface leaves an output\n\nThis is emitted whenever a surface's creation, movement, or resizing\nresults in it no longer having any part of it within the scanout region\nof an output.\n\nClients should not use the number of outputs the surface is on for frame\nthrottling purposes. The surface might be hidden even if no leave event\nhas been sent, and the compositor might expect new surface content\nupdates even if no enter event has been sent. The frame event should be\nused instead."] - Leave { output: super::wl_output::WlOutput }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enter { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Leave { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSurface(Proxy); - impl AsRef> for WlSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSurface { - #[inline] - fn from(value: Proxy) -> Self { - WlSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_surface"; - const VERSION: u32 = 5; - fn c_interface() -> *const wl_interface { - unsafe { &wl_surface_interface } - } - } - impl WlSurface { - #[doc = "delete surface\n\nDeletes the surface and invalidates its object ID.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the surface contents\n\nSet a buffer as the content of this surface.\n\nThe new size of the surface is calculated based on the buffer\nsize transformed by the inverse buffer_transform and the\ninverse buffer_scale. This means that at commit time the supplied\nbuffer size must be an integer multiple of the buffer_scale. If\nthat's not the case, an invalid_size error is sent.\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes. Setting anything other than 0\nas x and y arguments is discouraged, and should instead be replaced\nwith using the separate wl_surface.offset request.\n\nWhen the bound wl_surface version is 5 or higher, passing any\nnon-zero x or y is a protocol violation, and will result in an\n'invalid_offset' error being raised. To achieve equivalent semantics,\nuse wl_surface.offset.\n\nSurface contents are double-buffered state, see wl_surface.commit.\n\nThe initial surface contents are void; there is no content.\nwl_surface.attach assigns the given wl_buffer as the pending\nwl_buffer. wl_surface.commit makes the pending wl_buffer the new\nsurface contents, and the size of the surface becomes the size\ncalculated from the wl_buffer, as described above. After commit,\nthere is no pending buffer until the next attach.\n\nCommitting a pending wl_buffer allows the compositor to read the\npixels in the wl_buffer. The compositor may access the pixels at\nany time after the wl_surface.commit request. When the compositor\nwill not access the pixels anymore, it will send the\nwl_buffer.release event. Only after receiving wl_buffer.release,\nthe client may reuse the wl_buffer. A wl_buffer that has been\nattached and then replaced by another attach instead of committed\nwill not receive a release event, and is not used by the\ncompositor.\n\nIf a pending wl_buffer has been committed to more than one wl_surface,\nthe delivery of wl_buffer.release events becomes undefined. A well\nbehaved client should not rely on wl_buffer.release events in this\ncase. Alternatively, a client could create multiple wl_buffer objects\nfrom the same backing storage or use wp_linux_buffer_release.\n\nDestroying the wl_buffer after wl_buffer.release does not change\nthe surface contents. Destroying the wl_buffer before wl_buffer.release\nis allowed as long as the underlying buffer storage isn't re-used (this\ncan happen e.g. on client process termination). However, if the client\ndestroys the wl_buffer before receiving the wl_buffer.release event and\nmutates the underlying buffer storage, the surface contents become\nundefined immediately.\n\nIf wl_surface.attach is sent with a NULL wl_buffer, the\nfollowing wl_surface.commit will remove the surface content."] - pub fn attach(&self, buffer: Option<&super::wl_buffer::WlBuffer>, x: i32, y: i32) -> () { - let msg = Request::Attach { - buffer: buffer.map(|o| o.clone()), - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "mark part of the surface damaged\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in surface-local coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage adds pending damage: the new pending damage\nis the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nNote! New clients should not use this request. Instead damage can be\nposted with wl_surface.damage_buffer which uses buffer coordinates\ninstead of surface coordinates."] - pub fn damage(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::Damage { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "request a frame throttling hint\n\nRequest a notification when it is a good time to start drawing a new\nframe, by creating a frame callback. This is useful for throttling\nredrawing operations, and driving animations.\n\nWhen a client is animating on a wl_surface, it can use the 'frame'\nrequest to get notified when it is a good time to draw and commit the\nnext frame of animation. If the client commits an update earlier than\nthat, it is likely that some updates will not make it to the display,\nand the client is wasting resources by drawing too often.\n\nThe frame request will take effect on the next wl_surface.commit.\nThe notification will only be posted for one frame unless\nrequested again. For a wl_surface, the notifications are posted in\nthe order the frame requests were committed.\n\nThe server must send the notifications so that a client\nwill not send excessive updates, while still allowing\nthe highest possible update rate for clients that wait for the reply\nbefore drawing again. The server should give some time for the client\nto draw and commit after sending the frame callback events to let it\nhit the next output refresh.\n\nA server should avoid signaling the frame callbacks if the\nsurface is not visible in any way, e.g. the surface is off-screen,\nor completely obscured by other opaque surfaces.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the current time, in\nmilliseconds, with an undefined base."] - pub fn frame(&self) -> Main { - let msg = Request::Frame {}; - self.0.send(msg, None).unwrap() - } - #[doc = "set opaque region\n\nThis request sets the region of the surface that contains\nopaque content.\n\nThe opaque region is an optimization hint for the compositor\nthat lets it optimize the redrawing of content behind opaque\nregions. Setting an opaque region is not required for correct\nbehaviour, but marking transparent content as opaque will result\nin repaint artifacts.\n\nThe opaque region is specified in surface-local coordinates.\n\nThe compositor ignores the parts of the opaque region that fall\noutside of the surface.\n\nOpaque region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_opaque_region changes the pending opaque region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise, the pending and current regions are never changed.\n\nThe initial value for an opaque region is empty. Setting the pending\nopaque region has copy semantics, and the wl_region object can be\ndestroyed immediately. A NULL wl_region causes the pending opaque\nregion to be set to empty."] - pub fn set_opaque_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetOpaqueRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set input region\n\nThis request sets the region of the surface that can receive\npointer and touch events.\n\nInput events happening outside of this region will try the next\nsurface in the server surface stack. The compositor ignores the\nparts of the input region that fall outside of the surface.\n\nThe input region is specified in surface-local coordinates.\n\nInput region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_input_region changes the pending input region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise the pending and current regions are never changed,\nexcept cursor and icon surfaces are special cases, see\nwl_pointer.set_cursor and wl_data_device.start_drag.\n\nThe initial value for an input region is infinite. That means the\nwhole surface will accept input. Setting the pending input region\nhas copy semantics, and the wl_region object can be destroyed\nimmediately. A NULL wl_region causes the input region to be set\nto infinite."] - pub fn set_input_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetInputRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "commit pending surface state\n\nSurface state (input, opaque, and damage regions, attached buffers,\netc.) is double-buffered. Protocol requests modify the pending state,\nas opposed to the current state in use by the compositor. A commit\nrequest atomically applies all pending state, replacing the current\nstate. After commit, the new pending state is as documented for each\nrelated request.\n\nOn commit, a pending wl_buffer is applied first, and all other state\nsecond. This means that all coordinates in double-buffered state are\nrelative to the new wl_buffer coming into use, except for\nwl_surface.attach itself. If there is no pending wl_buffer, the\ncoordinates are relative to the current surface contents.\n\nAll requests that need a commit to become effective are documented\nto affect double-buffered state.\n\nOther interfaces may add further double-buffered surface state."] - pub fn commit(&self) -> () { - let msg = Request::Commit; - self.0.send::(msg, None); - } - #[doc = "sets the buffer transformation\n\nThis request sets an optional transformation on how the compositor\ninterprets the contents of the buffer attached to the surface. The\naccepted values for the transform parameter are the values for\nwl_output.transform.\n\nBuffer transform is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer transformation set to normal.\n\nwl_surface.set_buffer_transform changes the pending buffer\ntransformation. wl_surface.commit copies the pending buffer\ntransformation to the current one. Otherwise, the pending and current\nvalues are never changed.\n\nThe purpose of this request is to allow clients to render content\naccording to the output transform, thus permitting the compositor to\nuse certain optimizations even if the display is rotated. Using\nhardware overlays and scanning out a client buffer for fullscreen\nsurfaces are examples of such optimizations. Those optimizations are\nhighly dependent on the compositor implementation, so the use of this\nrequest should be considered on a case-by-case basis.\n\nNote that if the transform value includes 90 or 270 degree rotation,\nthe width of the buffer will become the surface height and the height\nof the buffer will become the surface width.\n\nIf transform is not one of the values from the\nwl_output.transform enum the invalid_transform protocol error\nis raised.\n\nOnly available since version 2 of the interface."] - pub fn set_buffer_transform(&self, transform: super::wl_output::Transform) -> () { - let msg = Request::SetBufferTransform { - transform: transform, - }; - self.0.send::(msg, None); - } - #[doc = "sets the buffer scaling factor\n\nThis request sets an optional scaling factor on how the compositor\ninterprets the contents of the buffer attached to the window.\n\nBuffer scale is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer scale set to 1.\n\nwl_surface.set_buffer_scale changes the pending buffer scale.\nwl_surface.commit copies the pending buffer scale to the current one.\nOtherwise, the pending and current values are never changed.\n\nThe purpose of this request is to allow clients to supply higher\nresolution buffer data for use on high resolution outputs. It is\nintended that you pick the same buffer scale as the scale of the\noutput that the surface is displayed on. This means the compositor\ncan avoid scaling when rendering the surface on that output.\n\nNote that if the scale is larger than 1, then you have to attach\na buffer that is larger (by a factor of scale in each dimension)\nthan the desired surface size.\n\nIf scale is not positive the invalid_scale protocol error is\nraised.\n\nOnly available since version 3 of the interface."] - pub fn set_buffer_scale(&self, scale: i32) -> () { - let msg = Request::SetBufferScale { scale: scale }; - self.0.send::(msg, None); - } - #[doc = "mark part of the surface damaged using buffer coordinates\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in buffer coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage_buffer adds pending damage: the new pending\ndamage is the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nThis request differs from wl_surface.damage in only one way - it\ntakes damage in buffer coordinates instead of surface-local\ncoordinates. While this generally is more intuitive than surface\ncoordinates, it is especially desirable when using wp_viewport\nor when a drawing library (like EGL) is unaware of buffer scale\nand buffer transform.\n\nNote: Because buffer transformation changes and damage requests may\nbe interleaved in the protocol stream, it is impossible to determine\nthe actual mapping between surface and buffer damage until\nwl_surface.commit time. Therefore, compositors wishing to take both\nkinds of damage into account will have to accumulate damage from the\ntwo requests separately and only transform from one to the other\nafter receiving the wl_surface.commit.\n\nOnly available since version 4 of the interface."] - pub fn damage_buffer(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::DamageBuffer { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the surface contents offset\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes.\n\nSurface location offset is double-buffered state, see\nwl_surface.commit.\n\nThis request is semantically equivalent to and the replaces the x and y\narguments in the wl_surface.attach request in wl_surface versions prior\nto 5. See wl_surface.attach for details.\n\nOnly available since version 5 of the interface."] - pub fn offset(&self, x: i32, y: i32) -> () { - let msg = Request::Offset { x: x, y: y }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ATTACH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DAMAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OPAQUE_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_INPUT_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_BUFFER_TRANSFORM_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_BUFFER_SCALE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DAMAGE_BUFFER_SINCE: u32 = 4u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFSET_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - static mut wl_surface_requests_attach_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_surface_requests_frame_types: [*const wl_interface; 1] = - [unsafe { &super::wl_callback::wl_callback_interface as *const wl_interface }]; - static mut wl_surface_requests_set_opaque_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - static mut wl_surface_requests_set_input_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_surface_requests: [wl_message; 11] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"attach\0" as *const u8 as *const c_char, - signature: b"?oii\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_attach_types as *const _ }, - }, - wl_message { - name: b"damage\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_frame_types as *const _ }, - }, - wl_message { - name: b"set_opaque_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_set_opaque_region_types as *const _ }, - }, - wl_message { - name: b"set_input_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_set_input_region_types as *const _ }, - }, - wl_message { - name: b"commit\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_buffer_transform\0" as *const u8 as *const c_char, - signature: b"2i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_buffer_scale\0" as *const u8 as *const c_char, - signature: b"3i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"damage_buffer\0" as *const u8 as *const c_char, - signature: b"4iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"offset\0" as *const u8 as *const c_char, - signature: b"5ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut wl_surface_events_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - static mut wl_surface_events_leave_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_surface_events: [wl_message; 2] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_events_leave_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_surface_interface: wl_interface = wl_interface { - name: b"wl_surface\0" as *const u8 as *const c_char, - version: 5, - request_count: 11, - requests: unsafe { &wl_surface_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_surface_events as *const _ }, - }; -} -#[doc = "group of input devices\n\nA seat is a group of keyboards, pointer and touch devices. This\nobject is published as a global during start up, or when such a\ndevice is hot plugged. A seat typically has a pointer and\nmaintains a keyboard focus and a pointer focus."] -pub mod wl_seat { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "seat capability bitmask\n\nThis is a bitmask of capabilities this seat has; if a member is\nset, then it is present on the seat."] pub struct Capability : u32 { # [doc = "the seat has pointer devices"] const Pointer = 1 ; # [doc = "the seat has one or more keyboards"] const Keyboard = 2 ; # [doc = "the seat has touch devices"] const Touch = 4 ; } } - impl Capability { - pub fn from_raw(n: u32) -> Option { - Some(Capability::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "wl_seat error values\n\nThese errors can be emitted in response to wl_seat requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "get_pointer, get_keyboard or get_touch called on seat without the matching capability"] - MissingCapability = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::MissingCapability), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "return pointer object\n\nThe ID provided will be initialized to the wl_pointer interface\nfor this seat.\n\nThis request only takes effect if the seat has the pointer\ncapability, or has had the pointer capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the pointer capability. The missing_capability error will\nbe sent in this case."] - GetPointer {}, - #[doc = "return keyboard object\n\nThe ID provided will be initialized to the wl_keyboard interface\nfor this seat.\n\nThis request only takes effect if the seat has the keyboard\ncapability, or has had the keyboard capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the keyboard capability. The missing_capability error will\nbe sent in this case."] - GetKeyboard {}, - #[doc = "return touch object\n\nThe ID provided will be initialized to the wl_touch interface\nfor this seat.\n\nThis request only takes effect if the seat has the touch\ncapability, or has had the touch capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the touch capability. The missing_capability error will\nbe sent in this case."] - GetTouch {}, - #[doc = "release the seat object\n\nUsing this request a client can tell the server that it is not going to\nuse the seat object anymore.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 5 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_pointer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_keyboard", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_touch", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 5, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetPointer { .. } => 0, - Request::GetKeyboard { .. } => 1, - Request::GetTouch { .. } => 2, - Request::Release => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetPointer { .. } => 1, - Request::GetKeyboard { .. } => 1, - Request::GetTouch { .. } => 1, - Request::Release => 5, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetPointer {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetKeyboard {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetTouch {} => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0),], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetPointer {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetKeyboard {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetTouch {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "seat capabilities changed\n\nThis is emitted whenever a seat gains or loses the pointer,\nkeyboard or touch capabilities. The argument is a capability\nenum containing the complete set of capabilities this seat has.\n\nWhen the pointer capability is added, a client may create a\nwl_pointer object using the wl_seat.get_pointer request. This object\nwill receive pointer events until the capability is removed in the\nfuture.\n\nWhen the pointer capability is removed, a client should destroy the\nwl_pointer objects associated with the seat where the capability was\nremoved, using the wl_pointer.release request. No further pointer\nevents will be received on these objects.\n\nIn some compositors, if a seat regains the pointer capability and a\nclient has a previously obtained wl_pointer object of version 4 or\nless, that object may start sending pointer events again. This\nbehavior is considered a misinterpretation of the intended behavior\nand must not be relied upon by the client. wl_pointer objects of\nversion 5 or later must not send events if created before the most\nrecent event notifying the client of an added pointer capability.\n\nThe above behavior also applies to wl_keyboard and wl_touch with the\nkeyboard and touch capabilities, respectively."] - Capabilities { capabilities: Capability }, - #[doc = "unique identifier for this seat\n\nIn a multi-seat configuration the seat name can be used by clients to\nhelp identify which physical devices the seat represents.\n\nThe seat name is a UTF-8 string with no convention defined for its\ncontents. Each name is unique among all wl_seat globals. The name is\nonly guaranteed to be unique for the current compositor instance.\n\nThe same seat names are used for all clients. Thus, the name can be\nshared across processes to refer to a specific wl_seat global.\n\nThe name event is sent after binding to the seat global. This event is\nonly sent once per seat object, and the name does not change over the\nlifetime of the wl_seat global.\n\nCompositors may re-use the same seat name if the wl_seat global is\ndestroyed and re-created later.\n\nOnly available since version 2 of the interface"] - Name { name: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "capabilities", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "name", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Capabilities { .. } => 0, - Event::Name { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Capabilities { .. } => 1, - Event::Name { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capabilities { - capabilities: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capabilities { - capabilities: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSeat(Proxy); - impl AsRef> for WlSeat { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSeat { - #[inline] - fn from(value: Proxy) -> Self { - WlSeat(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSeat) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSeat { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSeat { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_seat"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_seat_interface } - } - } - impl WlSeat { - #[doc = "return pointer object\n\nThe ID provided will be initialized to the wl_pointer interface\nfor this seat.\n\nThis request only takes effect if the seat has the pointer\ncapability, or has had the pointer capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the pointer capability. The missing_capability error will\nbe sent in this case."] - pub fn get_pointer(&self) -> Main { - let msg = Request::GetPointer {}; - self.0.send(msg, None).unwrap() - } - #[doc = "return keyboard object\n\nThe ID provided will be initialized to the wl_keyboard interface\nfor this seat.\n\nThis request only takes effect if the seat has the keyboard\ncapability, or has had the keyboard capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the keyboard capability. The missing_capability error will\nbe sent in this case."] - pub fn get_keyboard(&self) -> Main { - let msg = Request::GetKeyboard {}; - self.0.send(msg, None).unwrap() - } - #[doc = "return touch object\n\nThe ID provided will be initialized to the wl_touch interface\nfor this seat.\n\nThis request only takes effect if the seat has the touch\ncapability, or has had the touch capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the touch capability. The missing_capability error will\nbe sent in this case."] - pub fn get_touch(&self) -> Main { - let msg = Request::GetTouch {}; - self.0.send(msg, None).unwrap() - } - #[doc = "release the seat object\n\nUsing this request a client can tell the server that it is not going to\nuse the seat object anymore.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 5 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POINTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_KEYBOARD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOUCH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITIES_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 2u32; - static mut wl_seat_requests_get_pointer_types: [*const wl_interface; 1] = - [unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }]; - static mut wl_seat_requests_get_keyboard_types: [*const wl_interface; 1] = - [unsafe { &super::wl_keyboard::wl_keyboard_interface as *const wl_interface }]; - static mut wl_seat_requests_get_touch_types: [*const wl_interface; 1] = - [unsafe { &super::wl_touch::wl_touch_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_seat_requests: [wl_message; 4] = [ - wl_message { - name: b"get_pointer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_seat_requests_get_pointer_types as *const _ }, - }, - wl_message { - name: b"get_keyboard\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_seat_requests_get_keyboard_types as *const _ }, - }, - wl_message { - name: b"get_touch\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_seat_requests_get_touch_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"5\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_seat_events: [wl_message; 2] = [ - wl_message { - name: b"capabilities\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_seat_interface: wl_interface = wl_interface { - name: b"wl_seat\0" as *const u8 as *const c_char, - version: 7, - request_count: 4, - requests: unsafe { &wl_seat_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_seat_events as *const _ }, - }; -} -#[doc = "pointer input device\n\nThe wl_pointer interface represents one or more input devices,\nsuch as mice, which control the pointer location and pointer_focus\nof a seat.\n\nThe wl_pointer interface generates motion, enter and leave\nevents for the surfaces that the pointer is located over,\nand button and axis events for button presses, button releases\nand scrolling."] -pub mod wl_pointer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical button state\n\nDescribes the physical state of a button that produced the button\nevent."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "the button is not pressed"] - Released = 0, - #[doc = "the button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "axis types\n\nDescribes the axis types of scroll events."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Axis { - #[doc = "vertical axis"] - VerticalScroll = 0, - #[doc = "horizontal axis"] - HorizontalScroll = 1, - } - impl Axis { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Axis::VerticalScroll), - 1 => Some(Axis::HorizontalScroll), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "axis source types\n\nDescribes the source types for axis events. This indicates to the\nclient how an axis event was physically generated; a client may\nadjust the user interface accordingly. For example, scroll events\nfrom a \"finger\" source may be in a smooth coordinate space with\nkinetic scrolling whereas a \"wheel\" source may be in discrete steps\nof a number of lines.\n\nThe \"continuous\" axis source is a device generating events in a\ncontinuous coordinate space, but using something other than a\nfinger. One example for this source is button-based scrolling where\nthe vertical motion of a device is converted to scroll events while\na button is held down.\n\nThe \"wheel tilt\" axis source indicates that the actual device is a\nwheel but the scroll event is not caused by a rotation but a\n(usually sideways) tilt of the wheel."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum AxisSource { - #[doc = "a physical wheel rotation"] - Wheel = 0, - #[doc = "finger on a touch surface"] - Finger = 1, - #[doc = "continuous coordinate space"] - Continuous = 2, - #[doc = "a physical wheel tilt"] - WheelTilt = 3, - } - impl AxisSource { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(AxisSource::Wheel), - 1 => Some(AxisSource::Finger), - 2 => Some(AxisSource::Continuous), - 3 => Some(AxisSource::WheelTilt), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the pointer surface\n\nSet the pointer surface, i.e., the surface that contains the\npointer image (cursor). This request gives the surface the role\nof a cursor. If the surface already has another role, it raises\na protocol error.\n\nThe cursor actually changes only if the pointer\nfocus for this device is one of the requesting client's surfaces\nor the surface parameter is the current pointer surface. If\nthere was a previous surface set with this request it is\nreplaced. If surface is NULL, the pointer image is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of\nthe pointer surface relative to the pointer location. Its\ntop-left corner is always at (x, y) - (hotspot_x, hotspot_y),\nwhere (x, y) are the coordinates of the pointer location, in\nsurface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x\nand hotspot_y are decremented by the x and y parameters\npassed to the request. Attach must be confirmed by\nwl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set\npointer surface to this request with new values for hotspot_x\nand hotspot_y.\n\nThe current and pending input regions of the wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the cursor. When the use as a\ncursor ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped.\n\nThe serial parameter must match the latest wl_pointer.enter\nserial number sent to the client. Otherwise the request will be\nignored."] - SetCursor { - serial: u32, - surface: Option, - hotspot_x: i32, - hotspot_y: i32, - }, - #[doc = "release the pointer object\n\nUsing this request a client can tell the server that it is not going to\nuse the pointer object anymore.\n\nThis request destroys the pointer proxy object, so clients must not call\nwl_pointer_destroy() after using this request.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_cursor", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetCursor { .. } => 0, - Request::Release => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetCursor { .. } => 1, - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(hotspot_x), - Argument::Int(hotspot_y), - ], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].i = hotspot_x; - _args_array[3].i = hotspot_y; - f(0, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "enter event\n\nNotification that this seat's pointer is focused on a certain\nsurface.\n\nWhen a seat's focus enters a surface, the pointer image\nis undefined and a client should respond to this event by setting\nan appropriate pointer image with the set_cursor request."] - Enter { - serial: u32, - surface: super::wl_surface::WlSurface, - surface_x: f64, - surface_y: f64, - }, - #[doc = "leave event\n\nNotification that this seat's pointer is no longer focused on\na certain surface.\n\nThe leave notification is sent before the enter notification\nfor the new focus."] - Leave { - serial: u32, - surface: super::wl_surface::WlSurface, - }, - #[doc = "pointer motion event\n\nNotification of pointer location change. The arguments\nsurface_x and surface_y are the location relative to the\nfocused surface."] - Motion { - time: u32, - surface_x: f64, - surface_y: f64, - }, - #[doc = "pointer button event\n\nMouse button click and release notifications.\n\nThe location of the click is given by the last motion or\nenter event.\nThe time argument is a timestamp with millisecond\ngranularity, with an undefined base.\n\nThe button is a button code as defined in the Linux kernel's\nlinux/input-event-codes.h header file, e.g. BTN_LEFT.\n\nAny 16-bit button code value is reserved for future additions to the\nkernel's event code list. All other button codes above 0xFFFF are\ncurrently undefined but may be used in future versions of this\nprotocol."] - Button { - serial: u32, - time: u32, - button: u32, - state: ButtonState, - }, - #[doc = "axis event\n\nScroll and other axis notifications.\n\nFor scroll events (vertical and horizontal scroll axes), the\nvalue parameter is the length of a vector along the specified\naxis in a coordinate space identical to those of motion events,\nrepresenting a relative movement along the specified axis.\n\nFor devices that support movements non-parallel to axes multiple\naxis events will be emitted.\n\nWhen applicable, for example for touch pads, the server can\nchoose to emit scroll events where the motion vector is\nequivalent to a motion event vector.\n\nWhen applicable, a client can transform its content relative to the\nscroll distance."] - Axis { time: u32, axis: Axis, value: f64 }, - #[doc = "end of a pointer event sequence\n\nIndicates the end of a set of events that logically belong together.\nA client is expected to accumulate the data in all events within the\nframe before proceeding.\n\nAll wl_pointer events before a wl_pointer.frame event belong\nlogically together. For example, in a diagonal scroll motion the\ncompositor will send an optional wl_pointer.axis_source event, two\nwl_pointer.axis events (horizontal and vertical) and finally a\nwl_pointer.frame event. The client may use this information to\ncalculate a diagonal vector for scrolling.\n\nWhen multiple wl_pointer.axis events occur within the same frame,\nthe motion vector is the combined motion of all events.\nWhen a wl_pointer.axis and a wl_pointer.axis_stop event occur within\nthe same frame, this indicates that axis movement in one axis has\nstopped but continues in the other axis.\nWhen multiple wl_pointer.axis_stop events occur within the same\nframe, this indicates that these axes stopped in the same instance.\n\nA wl_pointer.frame event is sent for every logical event group,\neven if the group only contains a single wl_pointer event.\nSpecifically, a client may get a sequence: motion, frame, button,\nframe, axis, frame, axis_stop, frame.\n\nThe wl_pointer.enter and wl_pointer.leave events are logical events\ngenerated by the compositor and not the hardware. These events are\nalso grouped by a wl_pointer.frame. When a pointer moves from one\nsurface to another, a compositor should group the\nwl_pointer.leave event within the same wl_pointer.frame.\nHowever, a client must not rely on wl_pointer.leave and\nwl_pointer.enter being in the same wl_pointer.frame.\nCompositor-specific policies may require the wl_pointer.leave and\nwl_pointer.enter event being split across multiple wl_pointer.frame\ngroups.\n\nOnly available since version 5 of the interface"] - Frame, - #[doc = "axis source event\n\nSource information for scroll and other axes.\n\nThis event does not occur on its own. It is sent before a\nwl_pointer.frame event and carries the source information for\nall events within that frame.\n\nThe source specifies how this event was generated. If the source is\nwl_pointer.axis_source.finger, a wl_pointer.axis_stop event will be\nsent when the user lifts the finger off the device.\n\nIf the source is wl_pointer.axis_source.wheel,\nwl_pointer.axis_source.wheel_tilt or\nwl_pointer.axis_source.continuous, a wl_pointer.axis_stop event may\nor may not be sent. Whether a compositor sends an axis_stop event\nfor these sources is hardware-specific and implementation-dependent;\nclients must not rely on receiving an axis_stop event for these\nscroll sources and should treat scroll sequences from these scroll\nsources as unterminated by default.\n\nThis event is optional. If the source is unknown for a particular\naxis event sequence, no event is sent.\nOnly one wl_pointer.axis_source event is permitted per frame.\n\nThe order of wl_pointer.axis_discrete and wl_pointer.axis_source is\nnot guaranteed.\n\nOnly available since version 5 of the interface"] - AxisSource { axis_source: AxisSource }, - #[doc = "axis stop event\n\nStop notification for scroll and other axes.\n\nFor some wl_pointer.axis_source types, a wl_pointer.axis_stop event\nis sent to notify a client that the axis sequence has terminated.\nThis enables the client to implement kinetic scrolling.\nSee the wl_pointer.axis_source documentation for information on when\nthis event may be generated.\n\nAny wl_pointer.axis events with the same axis_source after this\nevent should be considered as the start of a new axis motion.\n\nThe timestamp is to be interpreted identical to the timestamp in the\nwl_pointer.axis event. The timestamp value may be the same as a\npreceding wl_pointer.axis event.\n\nOnly available since version 5 of the interface"] - AxisStop { time: u32, axis: Axis }, - #[doc = "axis click event\n\nDiscrete step information for scroll and other axes.\n\nThis event carries the axis value of the wl_pointer.axis event in\ndiscrete steps (e.g. mouse wheel clicks).\n\nThis event does not occur on its own, it is coupled with a\nwl_pointer.axis event that represents this axis value on a\ncontinuous scale. The protocol guarantees that each axis_discrete\nevent is always followed by exactly one axis event with the same\naxis number within the same wl_pointer.frame. Note that the protocol\nallows for other events to occur between the axis_discrete and\nits coupled axis event, including other axis_discrete or axis\nevents.\n\nThis event is optional; continuous scrolling devices\nlike two-finger scrolling on touchpads do not have discrete\nsteps and do not generate this event.\n\nThe discrete value carries the directional information. e.g. a value\nof -2 is two steps towards the negative direction of this axis.\n\nThe axis number is identical to the axis number in the associated\naxis event.\n\nThe order of wl_pointer.axis_discrete and wl_pointer.axis_source is\nnot guaranteed.\n\nOnly available since version 5 of the interface"] - AxisDiscrete { axis: Axis, discrete: i32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "axis", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 5, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "axis_source", - since: 5, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_stop", - since: 5, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_discrete", - since: 5, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave { .. } => 1, - Event::Motion { .. } => 2, - Event::Button { .. } => 3, - Event::Axis { .. } => 4, - Event::Frame => 5, - Event::AxisSource { .. } => 6, - Event::AxisStop { .. } => 7, - Event::AxisDiscrete { .. } => 8, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::Motion { .. } => 1, - Event::Button { .. } => 1, - Event::Axis { .. } => 1, - Event::Frame => 5, - Event::AxisSource { .. } => 5, - Event::AxisStop { .. } => 5, - Event::AxisDiscrete { .. } => 5, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface_x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - surface_y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface_x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - surface_y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Axis { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - axis: { - if let Some(Argument::Uint(val)) = args.next() { - Axis::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - value: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 5 => Ok(Event::Frame), - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::AxisSource { - axis_source: { - if let Some(Argument::Uint(val)) = args.next() { - AxisSource::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::AxisStop { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - axis: { - if let Some(Argument::Uint(val)) = args.next() { - Axis::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::AxisDiscrete { - axis: { - if let Some(Argument::Uint(val)) = args.next() { - Axis::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - discrete: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Enter { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface_x: (_args[2].f as f64) / 256., - surface_y: (_args[3].f as f64) / 256., - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Leave { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Motion { - time: _args[0].u, - surface_x: (_args[1].f as f64) / 256., - surface_y: (_args[2].f as f64) / 256., - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Button { - serial: _args[0].u, - time: _args[1].u, - button: _args[2].u, - state: ButtonState::from_raw(_args[3].u).ok_or(())?, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Axis { - time: _args[0].u, - axis: Axis::from_raw(_args[1].u).ok_or(())?, - value: (_args[2].f as f64) / 256., - }) - } - 5 => Ok(Event::Frame), - 6 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::AxisSource { - axis_source: AxisSource::from_raw(_args[0].u).ok_or(())?, - }) - } - 7 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::AxisStop { - time: _args[0].u, - axis: Axis::from_raw(_args[1].u).ok_or(())?, - }) - } - 8 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::AxisDiscrete { - axis: Axis::from_raw(_args[0].u).ok_or(())?, - discrete: _args[1].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlPointer(Proxy); - impl AsRef> for WlPointer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlPointer { - #[inline] - fn from(value: Proxy) -> Self { - WlPointer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlPointer) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlPointer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlPointer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_pointer"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_pointer_interface } - } - } - impl WlPointer { - #[doc = "set the pointer surface\n\nSet the pointer surface, i.e., the surface that contains the\npointer image (cursor). This request gives the surface the role\nof a cursor. If the surface already has another role, it raises\na protocol error.\n\nThe cursor actually changes only if the pointer\nfocus for this device is one of the requesting client's surfaces\nor the surface parameter is the current pointer surface. If\nthere was a previous surface set with this request it is\nreplaced. If surface is NULL, the pointer image is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of\nthe pointer surface relative to the pointer location. Its\ntop-left corner is always at (x, y) - (hotspot_x, hotspot_y),\nwhere (x, y) are the coordinates of the pointer location, in\nsurface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x\nand hotspot_y are decremented by the x and y parameters\npassed to the request. Attach must be confirmed by\nwl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set\npointer surface to this request with new values for hotspot_x\nand hotspot_y.\n\nThe current and pending input regions of the wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the cursor. When the use as a\ncursor ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped.\n\nThe serial parameter must match the latest wl_pointer.enter\nserial number sent to the client. Otherwise the request will be\nignored."] - pub fn set_cursor( - &self, - serial: u32, - surface: Option<&super::wl_surface::WlSurface>, - hotspot_x: i32, - hotspot_y: i32, - ) -> () { - let msg = Request::SetCursor { - serial: serial, - surface: surface.map(|o| o.clone()), - hotspot_x: hotspot_x, - hotspot_y: hotspot_y, - }; - self.0.send::(msg, None); - } - #[doc = "release the pointer object\n\nUsing this request a client can tell the server that it is not going to\nuse the pointer object anymore.\n\nThis request destroys the pointer proxy object, so clients must not call\nwl_pointer_destroy() after using this request.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_SOURCE_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_STOP_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_DISCRETE_SINCE: u32 = 5u32; - static mut wl_pointer_requests_set_cursor_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_pointer_requests: [wl_message; 2] = [ - wl_message { - name: b"set_cursor\0" as *const u8 as *const c_char, - signature: b"u?oii\0" as *const u8 as *const c_char, - types: unsafe { &wl_pointer_requests_set_cursor_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut wl_pointer_events_enter_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_pointer_events_leave_types: [*const wl_interface; 2] = - [NULLPTR as *const wl_interface, unsafe { - &super::wl_surface::wl_surface_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_pointer_events: [wl_message; 9] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoff\0" as *const u8 as *const c_char, - types: unsafe { &wl_pointer_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"uo\0" as *const u8 as *const c_char, - types: unsafe { &wl_pointer_events_leave_types as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis\0" as *const u8 as *const c_char, - signature: b"uuf\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"5\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_source\0" as *const u8 as *const c_char, - signature: b"5u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_stop\0" as *const u8 as *const c_char, - signature: b"5uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_discrete\0" as *const u8 as *const c_char, - signature: b"5ui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_pointer_interface: wl_interface = wl_interface { - name: b"wl_pointer\0" as *const u8 as *const c_char, - version: 7, - request_count: 2, - requests: unsafe { &wl_pointer_requests as *const _ }, - event_count: 9, - events: unsafe { &wl_pointer_events as *const _ }, - }; -} -#[doc = "keyboard input device\n\nThe wl_keyboard interface represents one or more keyboards\nassociated with a seat."] -pub mod wl_keyboard { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "keyboard mapping format\n\nThis specifies the format of the keymap provided to the\nclient with the wl_keyboard.keymap event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum KeymapFormat { - #[doc = "no keymap; client must understand how to interpret the raw keycode"] - NoKeymap = 0, - #[doc = "libxkbcommon compatible; to determine the xkb keycode, clients must add 8 to the key event keycode"] - XkbV1 = 1, - } - impl KeymapFormat { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(KeymapFormat::NoKeymap), - 1 => Some(KeymapFormat::XkbV1), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical key state\n\nDescribes the physical state of a key that produced the key event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum KeyState { - #[doc = "key is not pressed"] - Released = 0, - #[doc = "key is pressed"] - Pressed = 1, - } - impl KeyState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(KeyState::Released), - 1 => Some(KeyState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the keyboard object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "keyboard mapping\n\nThis event provides a file descriptor to the client which can be\nmemory-mapped in read-only mode to provide a keyboard mapping\ndescription.\n\nFrom version 7 onwards, the fd must be mapped with MAP_PRIVATE by\nthe recipient, as MAP_SHARED may fail."] - Keymap { - format: KeymapFormat, - fd: ::std::os::unix::io::RawFd, - size: u32, - }, - #[doc = "enter event\n\nNotification that this seat's keyboard focus is on a certain\nsurface.\n\nThe compositor must send the wl_keyboard.modifiers event after this\nevent."] - Enter { - serial: u32, - surface: super::wl_surface::WlSurface, - keys: Vec, - }, - #[doc = "leave event\n\nNotification that this seat's keyboard focus is no longer on\na certain surface.\n\nThe leave notification is sent before the enter notification\nfor the new focus.\n\nAfter this event client must assume that all keys, including modifiers,\nare lifted and also it must stop key repeating if there's some going on."] - Leave { - serial: u32, - surface: super::wl_surface::WlSurface, - }, - #[doc = "key event\n\nA key was pressed or released.\nThe time argument is a timestamp with millisecond\ngranularity, with an undefined base.\n\nThe key is a platform-specific key code that can be interpreted\nby feeding it to the keyboard mapping (see the keymap event).\n\nIf this event produces a change in modifiers, then the resulting\nwl_keyboard.modifiers event must be sent after this event."] - Key { - serial: u32, - time: u32, - key: u32, - state: KeyState, - }, - #[doc = "modifier and group state\n\nNotifies clients that the modifier and/or group state has\nchanged, and it should update its local state."] - Modifiers { - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - }, - #[doc = "repeat rate and delay\n\nInforms the client about the keyboard's repeat rate and delay.\n\nThis event is sent as soon as the wl_keyboard object has been created,\nand is guaranteed to be received by the client before any key press\nevent.\n\nNegative values for either rate or delay are illegal. A rate of zero\nwill disable any repeating (regardless of the value of delay).\n\nThis event can be sent later on as well with a new value if necessary,\nso clients should continue listening for the event past the creation\nof wl_keyboard.\n\nOnly available since version 4 of the interface"] - RepeatInfo { rate: i32, delay: i32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "keymap", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fd, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Array, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "key", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "modifiers", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "repeat_info", - since: 4, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Keymap { .. } => 0, - Event::Enter { .. } => 1, - Event::Leave { .. } => 2, - Event::Key { .. } => 3, - Event::Modifiers { .. } => 4, - Event::RepeatInfo { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Keymap { .. } => 1, - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::Key { .. } => 1, - Event::Modifiers { .. } => 1, - Event::RepeatInfo { .. } => 4, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Keymap { - format: { - if let Some(Argument::Uint(val)) = args.next() { - KeymapFormat::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - keys: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Key { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - key: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - KeyState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modifiers { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_depressed: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_latched: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_locked: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - group: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::RepeatInfo { - rate: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - delay: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Keymap { - format: KeymapFormat::from_raw(_args[0].u).ok_or(())?, - fd: _args[1].h, - size: _args[2].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Enter { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - keys: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Leave { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Key { - serial: _args[0].u, - time: _args[1].u, - key: _args[2].u, - state: KeyState::from_raw(_args[3].u).ok_or(())?, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Modifiers { - serial: _args[0].u, - mods_depressed: _args[1].u, - mods_latched: _args[2].u, - mods_locked: _args[3].u, - group: _args[4].u, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::RepeatInfo { - rate: _args[0].i, - delay: _args[1].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlKeyboard(Proxy); - impl AsRef> for WlKeyboard { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlKeyboard { - #[inline] - fn from(value: Proxy) -> Self { - WlKeyboard(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlKeyboard) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlKeyboard { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlKeyboard { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_keyboard"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_keyboard_interface } - } - } - impl WlKeyboard { - #[doc = "release the keyboard object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEYMAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIERS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REPEAT_INFO_SINCE: u32 = 4u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_keyboard_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut wl_keyboard_events_enter_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut wl_keyboard_events_leave_types: [*const wl_interface; 2] = - [NULLPTR as *const wl_interface, unsafe { - &super::wl_surface::wl_surface_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_keyboard_events: [wl_message; 6] = [ - wl_message { - name: b"keymap\0" as *const u8 as *const c_char, - signature: b"uhu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoa\0" as *const u8 as *const c_char, - types: unsafe { &wl_keyboard_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"uo\0" as *const u8 as *const c_char, - types: unsafe { &wl_keyboard_events_leave_types as *const _ }, - }, - wl_message { - name: b"key\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"repeat_info\0" as *const u8 as *const c_char, - signature: b"4ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_keyboard_interface: wl_interface = wl_interface { - name: b"wl_keyboard\0" as *const u8 as *const c_char, - version: 7, - request_count: 1, - requests: unsafe { &wl_keyboard_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_keyboard_events as *const _ }, - }; -} -#[doc = "touchscreen input device\n\nThe wl_touch interface represents a touchscreen\nassociated with a seat.\n\nTouch interactions can consist of one or more contacts.\nFor each contact, a series of events is generated, starting\nwith a down event, followed by zero or more motion events,\nand ending with an up event. Events relating to the same\ncontact point can be identified by the ID of the sequence."] -pub mod wl_touch { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the touch object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "touch down event and beginning of a touch sequence\n\nA new touch point has appeared on the surface. This touch point is\nassigned a unique ID. Future events from this touch point reference\nthis ID. The ID ceases to be valid after a touch up event and may be\nreused in the future."] - Down { - serial: u32, - time: u32, - surface: super::wl_surface::WlSurface, - id: i32, - x: f64, - y: f64, - }, - #[doc = "end of a touch event sequence\n\nThe touch point has disappeared. No further events will be sent for\nthis touch point and the touch point's ID is released and may be\nreused in a future touch down event."] - Up { serial: u32, time: u32, id: i32 }, - #[doc = "update of touch point coordinates\n\nA touch point has changed coordinates."] - Motion { time: u32, id: i32, x: f64, y: f64 }, - #[doc = "end of touch frame event\n\nIndicates the end of a set of events that logically belong together.\nA client is expected to accumulate the data in all events within the\nframe before proceeding.\n\nA wl_touch.frame terminates at least one event but otherwise no\nguarantee is provided about the set of events within a frame. A client\nmust assume that any state not updated in a frame is unchanged from the\npreviously known state."] - Frame, - #[doc = "touch session cancelled\n\nSent if the compositor decides the touch stream is a global\ngesture. No further events are sent to the clients from that\nparticular gesture. Touch cancellation applies to all touch points\ncurrently active on this client's surface. The client is\nresponsible for finalizing the touch points, future touch points on\nthis surface may reuse the touch point ID."] - Cancel, - #[doc = "update shape of touch point\n\nSent when a touchpoint has changed its shape.\n\nThis event does not occur on its own. It is sent before a\nwl_touch.frame event and carries the new shape information for\nany previously reported, or new touch points of that frame.\n\nOther events describing the touch point such as wl_touch.down,\nwl_touch.motion or wl_touch.orientation may be sent within the\nsame wl_touch.frame. A client should treat these events as a single\nlogical touch point update. The order of wl_touch.shape,\nwl_touch.orientation and wl_touch.motion is not guaranteed.\nA wl_touch.down event is guaranteed to occur before the first\nwl_touch.shape event for this touch ID but both events may occur within\nthe same wl_touch.frame.\n\nA touchpoint shape is approximated by an ellipse through the major and\nminor axis length. The major axis length describes the longer diameter\nof the ellipse, while the minor axis length describes the shorter\ndiameter. Major and minor are orthogonal and both are specified in\nsurface-local coordinates. The center of the ellipse is always at the\ntouchpoint location as reported by wl_touch.down or wl_touch.move.\n\nThis event is only sent by the compositor if the touch device supports\nshape reports. The client has to make reasonable assumptions about the\nshape if it did not receive this event.\n\nOnly available since version 6 of the interface"] - Shape { id: i32, major: f64, minor: f64 }, - #[doc = "update orientation of touch point\n\nSent when a touchpoint has changed its orientation.\n\nThis event does not occur on its own. It is sent before a\nwl_touch.frame event and carries the new shape information for\nany previously reported, or new touch points of that frame.\n\nOther events describing the touch point such as wl_touch.down,\nwl_touch.motion or wl_touch.shape may be sent within the\nsame wl_touch.frame. A client should treat these events as a single\nlogical touch point update. The order of wl_touch.shape,\nwl_touch.orientation and wl_touch.motion is not guaranteed.\nA wl_touch.down event is guaranteed to occur before the first\nwl_touch.orientation event for this touch ID but both events may occur\nwithin the same wl_touch.frame.\n\nThe orientation describes the clockwise angle of a touchpoint's major\naxis to the positive surface y-axis and is normalized to the -180 to\n+180 degree range. The granularity of orientation depends on the touch\ndevice, some devices only support binary rotation values between 0 and\n90 degrees.\n\nThis event is only sent by the compositor if the touch device supports\norientation reports.\n\nOnly available since version 6 of the interface"] - Orientation { id: i32, orientation: f64 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "down", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "up", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "cancel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "shape", - since: 6, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "orientation", - since: 6, - signature: &[super::ArgumentType::Int, super::ArgumentType::Fixed], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Down { .. } => 0, - Event::Up { .. } => 1, - Event::Motion { .. } => 2, - Event::Frame => 3, - Event::Cancel => 4, - Event::Shape { .. } => 5, - Event::Orientation { .. } => 6, - } - } - fn since(&self) -> u32 { - match *self { - Event::Down { .. } => 1, - Event::Up { .. } => 1, - Event::Motion { .. } => 1, - Event::Frame => 1, - Event::Cancel => 1, - Event::Shape { .. } => 6, - Event::Orientation { .. } => 6, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Down { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Up { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Frame), - 4 => Ok(Event::Cancel), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Shape { - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - major: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - minor: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::Orientation { - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - orientation: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 6); - Ok(Event::Down { - serial: _args[0].u, - time: _args[1].u, - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - id: _args[3].i, - x: (_args[4].f as f64) / 256., - y: (_args[5].f as f64) / 256., - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Up { - serial: _args[0].u, - time: _args[1].u, - id: _args[2].i, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Motion { - time: _args[0].u, - id: _args[1].i, - x: (_args[2].f as f64) / 256., - y: (_args[3].f as f64) / 256., - }) - } - 3 => Ok(Event::Frame), - 4 => Ok(Event::Cancel), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Shape { - id: _args[0].i, - major: (_args[1].f as f64) / 256., - minor: (_args[2].f as f64) / 256., - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Orientation { - id: _args[0].i, - orientation: (_args[1].f as f64) / 256., - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlTouch(Proxy); - impl AsRef> for WlTouch { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlTouch { - #[inline] - fn from(value: Proxy) -> Self { - WlTouch(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlTouch) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlTouch { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlTouch { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_touch"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_touch_interface } - } - } - impl WlTouch { - #[doc = "release the touch object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DOWN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SHAPE_SINCE: u32 = 6u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ORIENTATION_SINCE: u32 = 6u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_touch_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut wl_touch_events_down_types: [*const wl_interface; 6] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_touch_events: [wl_message; 7] = [ - wl_message { - name: b"down\0" as *const u8 as *const c_char, - signature: b"uuoiff\0" as *const u8 as *const c_char, - types: unsafe { &wl_touch_events_down_types as *const _ }, - }, - wl_message { - name: b"up\0" as *const u8 as *const c_char, - signature: b"uui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uiff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"shape\0" as *const u8 as *const c_char, - signature: b"6iff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"orientation\0" as *const u8 as *const c_char, - signature: b"6if\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_touch_interface: wl_interface = wl_interface { - name: b"wl_touch\0" as *const u8 as *const c_char, - version: 7, - request_count: 1, - requests: unsafe { &wl_touch_requests as *const _ }, - event_count: 7, - events: unsafe { &wl_touch_events as *const _ }, - }; -} -#[doc = "compositor output region\n\nAn output describes part of the compositor geometry. The\ncompositor works in the 'compositor coordinate system' and an\noutput corresponds to a rectangular area in that space that is\nactually visible. This typically corresponds to a monitor that\ndisplays part of the compositor space. This object is published\nas global during start up, or when a monitor is hotplugged."] -pub mod wl_output { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "subpixel geometry information\n\nThis enumeration describes how the physical\npixels on an output are laid out."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Subpixel { - #[doc = "unknown geometry"] - Unknown = 0, - #[doc = "no geometry"] - None = 1, - #[doc = "horizontal RGB"] - HorizontalRgb = 2, - #[doc = "horizontal BGR"] - HorizontalBgr = 3, - #[doc = "vertical RGB"] - VerticalRgb = 4, - #[doc = "vertical BGR"] - VerticalBgr = 5, - } - impl Subpixel { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Subpixel::Unknown), - 1 => Some(Subpixel::None), - 2 => Some(Subpixel::HorizontalRgb), - 3 => Some(Subpixel::HorizontalBgr), - 4 => Some(Subpixel::VerticalRgb), - 5 => Some(Subpixel::VerticalBgr), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "transform from framebuffer to output\n\nThis describes the transform that a compositor will apply to a\nsurface to compensate for the rotation or mirroring of an\noutput device.\n\nThe flipped values correspond to an initial flip around a\nvertical axis followed by rotation.\n\nThe purpose is mainly to allow clients to render accordingly and\ntell the compositor, so that for fullscreen surfaces, the\ncompositor will still be able to scan out directly from client\nsurfaces."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Transform { - #[doc = "no transform"] - Normal = 0, - #[doc = "90 degrees counter-clockwise"] - _90 = 1, - #[doc = "180 degrees counter-clockwise"] - _180 = 2, - #[doc = "270 degrees counter-clockwise"] - _270 = 3, - #[doc = "180 degree flip around a vertical axis"] - Flipped = 4, - #[doc = "flip and rotate 90 degrees counter-clockwise"] - Flipped90 = 5, - #[doc = "flip and rotate 180 degrees counter-clockwise"] - Flipped180 = 6, - #[doc = "flip and rotate 270 degrees counter-clockwise"] - Flipped270 = 7, - } - impl Transform { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Transform::Normal), - 1 => Some(Transform::_90), - 2 => Some(Transform::_180), - 3 => Some(Transform::_270), - 4 => Some(Transform::Flipped), - 5 => Some(Transform::Flipped90), - 6 => Some(Transform::Flipped180), - 7 => Some(Transform::Flipped270), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { # [doc = "mode information\n\nThese flags describe properties of an output mode.\nThey are used in the flags bitfield of the mode event."] pub struct Mode : u32 { # [doc = "indicates this is the current mode"] const Current = 1 ; # [doc = "indicates this is the preferred mode"] const Preferred = 2 ; } } - impl Mode { - pub fn from_raw(n: u32) -> Option { - Some(Mode::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the output object\n\nUsing this request a client can tell the server that it is not going to\nuse the output object anymore.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "properties of the output\n\nThe geometry event describes geometric properties of the output.\nThe event is sent when binding to the output object and whenever\nany of the properties change.\n\nThe physical size can be set to zero if it doesn't make sense for this\noutput (e.g. for projectors or virtual outputs).\n\nThe geometry event will be followed by a done event (starting from\nversion 2).\n\nNote: wl_output only advertises partial information about the output\nposition and identification. Some compositors, for instance those not\nimplementing a desktop-style output layout or those exposing virtual\noutputs, might fake this information. Instead of using x and y, clients\nshould use xdg_output.logical_position. Instead of using make and model,\nclients should use name and description."] - Geometry { - x: i32, - y: i32, - physical_width: i32, - physical_height: i32, - subpixel: Subpixel, - make: String, - model: String, - transform: Transform, - }, - #[doc = "advertise available modes for the output\n\nThe mode event describes an available mode for the output.\n\nThe event is sent when binding to the output object and there\nwill always be one mode, the current mode. The event is sent\nagain if an output changes mode, for the mode that is now\ncurrent. In other words, the current mode is always the last\nmode that was received with the current flag set.\n\nNon-current modes are deprecated. A compositor can decide to only\nadvertise the current mode and never send other modes. Clients\nshould not rely on non-current modes.\n\nThe size of a mode is given in physical hardware units of\nthe output device. This is not necessarily the same as\nthe output size in the global compositor space. For instance,\nthe output may be scaled, as described in wl_output.scale,\nor transformed, as described in wl_output.transform. Clients\nwilling to retrieve the output size in the global compositor\nspace should use xdg_output.logical_size instead.\n\nThe vertical refresh rate can be set to zero if it doesn't make\nsense for this output (e.g. for virtual outputs).\n\nThe mode event will be followed by a done event (starting from\nversion 2).\n\nClients should not use the refresh rate to schedule frames. Instead,\nthey should use the wl_surface.frame event or the presentation-time\nprotocol.\n\nNote: this information is not always meaningful for all outputs. Some\ncompositors, such as those exposing virtual outputs, might fake the\nrefresh rate or the size."] - Mode { - flags: Mode, - width: i32, - height: i32, - refresh: i32, - }, - #[doc = "sent all information about output\n\nThis event is sent after all other properties have been\nsent after binding to the output object and after any\nother property changes done after that. This allows\nchanges to the output properties to be seen as\natomic, even if they happen via multiple events.\n\nOnly available since version 2 of the interface"] - Done, - #[doc = "output scaling properties\n\nThis event contains scaling geometry information\nthat is not in the geometry event. It may be sent after\nbinding the output object or if the output scale changes\nlater. If it is not sent, the client should assume a\nscale of 1.\n\nA scale larger than 1 means that the compositor will\nautomatically scale surface buffers by this amount\nwhen rendering. This is used for very high resolution\ndisplays where applications rendering at the native\nresolution would be too small to be legible.\n\nIt is intended that scaling aware clients track the\ncurrent output of a surface, and if it is on a scaled\noutput it should use wl_surface.set_buffer_scale with\nthe scale of the output. That way the compositor can\navoid scaling the surface, and the client can supply\na higher detail image.\n\nThe scale event will be followed by a done event.\n\nOnly available since version 2 of the interface"] - Scale { factor: i32 }, - #[doc = "name of this output\n\nMany compositors will assign user-friendly names to their outputs, show\nthem to the user, allow the user to refer to an output, etc. The client\nmay wish to know this name as well to offer the user similar behaviors.\n\nThe name is a UTF-8 string with no convention defined for its contents.\nEach name is unique among all wl_output globals. The name is only\nguaranteed to be unique for the compositor instance.\n\nThe same output name is used for all clients for a given wl_output\nglobal. Thus, the name can be shared across processes to refer to a\nspecific wl_output global.\n\nThe name is not guaranteed to be persistent across sessions, thus cannot\nbe used to reliably identify an output in e.g. configuration files.\n\nExamples of names include 'HDMI-A-1', 'WL-1', 'X11-1', etc. However, do\nnot assume that the name is a reflection of an underlying DRM connector,\nX11 connection, etc.\n\nThe name event is sent after binding the output object. This event is\nonly sent once per output object, and the name does not change over the\nlifetime of the wl_output global.\n\nCompositors may re-use the same output name if the wl_output global is\ndestroyed and re-created later. Compositors should avoid re-using the\nsame name if possible.\n\nThe name event will be followed by a done event.\n\nOnly available since version 4 of the interface"] - Name { name: String }, - #[doc = "human-readable description of this output\n\nMany compositors can produce human-readable descriptions of their\noutputs. The client may wish to know this description as well, e.g. for\noutput selection purposes.\n\nThe description is a UTF-8 string with no convention defined for its\ncontents. The description is not guaranteed to be unique among all\nwl_output globals. Examples might include 'Foocorp 11\" Display' or\n'Virtual X11 output via :1'.\n\nThe description event is sent after binding the output object and\nwhenever the description changes. The description is optional, and may\nnot be sent at all.\n\nThe description event will be followed by a done event.\n\nOnly available since version 4 of the interface"] - Description { description: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Str, - super::ArgumentType::Str, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "mode", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 2, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "scale", - since: 2, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "name", - since: 4, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "description", - since: 4, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Geometry { .. } => 0, - Event::Mode { .. } => 1, - Event::Done => 2, - Event::Scale { .. } => 3, - Event::Name { .. } => 4, - Event::Description { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Geometry { .. } => 1, - Event::Mode { .. } => 1, - Event::Done => 2, - Event::Scale { .. } => 2, - Event::Name { .. } => 4, - Event::Description { .. } => 4, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Geometry { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - physical_width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - physical_height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - subpixel: { - if let Some(Argument::Int(val)) = args.next() { - Subpixel::from_raw(val as u32).ok_or(())? - } else { - return Err(()); - } - }, - make: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - model: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - transform: { - if let Some(Argument::Int(val)) = args.next() { - Transform::from_raw(val as u32).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - refresh: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Done), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Scale { - factor: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Description { - description: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 8); - Ok(Event::Geometry { - x: _args[0].i, - y: _args[1].i, - physical_width: _args[2].i, - physical_height: _args[3].i, - subpixel: Subpixel::from_raw(_args[4].i as u32).ok_or(())?, - make: ::std::ffi::CStr::from_ptr(_args[5].s) - .to_string_lossy() - .into_owned(), - model: ::std::ffi::CStr::from_ptr(_args[6].s) - .to_string_lossy() - .into_owned(), - transform: Transform::from_raw(_args[7].i as u32).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Mode { - flags: Mode::from_raw(_args[0].u).ok_or(())?, - width: _args[1].i, - height: _args[2].i, - refresh: _args[3].i, - }) - } - 2 => Ok(Event::Done), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Scale { factor: _args[0].i }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Description { - description: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlOutput(Proxy); - impl AsRef> for WlOutput { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlOutput { - #[inline] - fn from(value: Proxy) -> Self { - WlOutput(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlOutput) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlOutput { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlOutput { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_output"; - const VERSION: u32 = 4; - fn c_interface() -> *const wl_interface { - unsafe { &wl_output_interface } - } - } - impl WlOutput { - #[doc = "release the output object\n\nUsing this request a client can tell the server that it is not going to\nuse the output object anymore.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SCALE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 4u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESCRIPTION_SINCE: u32 = 4u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_output_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_output_events: [wl_message; 6] = [ - wl_message { - name: b"geometry\0" as *const u8 as *const c_char, - signature: b"iiiiissi\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"uiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"scale\0" as *const u8 as *const c_char, - signature: b"2i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"4s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"description\0" as *const u8 as *const c_char, - signature: b"4s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_output_interface: wl_interface = wl_interface { - name: b"wl_output\0" as *const u8 as *const c_char, - version: 4, - request_count: 1, - requests: unsafe { &wl_output_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_output_events as *const _ }, - }; -} -#[doc = "region interface\n\nA region object describes an area.\n\nRegion objects are used to describe the opaque and input\nregions of a surface."] -pub mod wl_region { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy region\n\nDestroy the region. This will invalidate the object ID.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "add rectangle to region\n\nAdd the specified rectangle to the region."] - Add { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "subtract rectangle from region\n\nSubtract the specified rectangle from the region."] - Subtract { - x: i32, - y: i32, - width: i32, - height: i32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "add", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "subtract", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Add { .. } => 1, - Request::Subtract { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Add { .. } => 1, - Request::Subtract { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Add { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Subtract { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Add { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(1, &mut _args_array) - } - Request::Subtract { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlRegion(Proxy); - impl AsRef> for WlRegion { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlRegion { - #[inline] - fn from(value: Proxy) -> Self { - WlRegion(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlRegion) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlRegion { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlRegion { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_region"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_region_interface } - } - } - impl WlRegion { - #[doc = "destroy region\n\nDestroy the region. This will invalidate the object ID.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "add rectangle to region\n\nAdd the specified rectangle to the region."] - pub fn add(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::Add { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "subtract rectangle from region\n\nSubtract the specified rectangle from the region."] - pub fn subtract(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::Subtract { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ADD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SUBTRACT_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_region_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"add\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"subtract\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_region_interface: wl_interface = wl_interface { - name: b"wl_region\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &wl_region_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "sub-surface compositing\n\nThe global interface exposing sub-surface compositing capabilities.\nA wl_surface, that has sub-surfaces associated, is called the\nparent surface. Sub-surfaces can be arbitrarily nested and create\na tree of sub-surfaces.\n\nThe root surface in a tree of sub-surfaces is the main\nsurface. The main surface cannot be a sub-surface, because\nsub-surfaces must always have a parent.\n\nA main surface with its sub-surfaces forms a (compound) window.\nFor window management purposes, this set of wl_surface objects is\nto be considered as a single window, and it should also behave as\nsuch.\n\nThe aim of sub-surfaces is to offload some of the compositing work\nwithin a window from clients to the compositor. A prime example is\na video player with decorations and video in separate wl_surface\nobjects. This should allow the compositor to pass YUV video buffer\nprocessing to dedicated overlay hardware when possible."] -pub mod wl_subcompositor { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the to-be sub-surface is invalid"] - BadSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::BadSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind from the subcompositor interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other\nobjects, wl_subsurface objects included.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "give a surface the role sub-surface\n\nCreate a sub-surface interface for the given surface, and\nassociate it with the given parent surface. This turns a\nplain wl_surface into a sub-surface.\n\nThe to-be sub-surface must not already have another role, and it\nmust not have an existing wl_subsurface object. Otherwise a protocol\nerror is raised.\n\nAdding sub-surfaces to a parent is a double-buffered operation on the\nparent (see wl_surface.commit). The effect of adding a sub-surface\nbecomes visible on the next time the state of the parent surface is\napplied.\n\nThis request modifies the behaviour of wl_surface.commit request on\nthe sub-surface, see the documentation on wl_subsurface interface."] - GetSubsurface { - surface: super::wl_surface::WlSurface, - parent: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_subsurface", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetSubsurface { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetSubsurface { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetSubsurface { surface, parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(parent.as_ref().id()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetSubsurface { surface, parent } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = parent.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSubcompositor(Proxy); - impl AsRef> for WlSubcompositor { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSubcompositor { - #[inline] - fn from(value: Proxy) -> Self { - WlSubcompositor(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSubcompositor) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSubcompositor { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSubcompositor { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_subcompositor"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_subcompositor_interface } - } - } - impl WlSubcompositor { - #[doc = "unbind from the subcompositor interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other\nobjects, wl_subsurface objects included.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "give a surface the role sub-surface\n\nCreate a sub-surface interface for the given surface, and\nassociate it with the given parent surface. This turns a\nplain wl_surface into a sub-surface.\n\nThe to-be sub-surface must not already have another role, and it\nmust not have an existing wl_subsurface object. Otherwise a protocol\nerror is raised.\n\nAdding sub-surfaces to a parent is a double-buffered operation on the\nparent (see wl_surface.commit). The effect of adding a sub-surface\nbecomes visible on the next time the state of the parent surface is\napplied.\n\nThis request modifies the behaviour of wl_surface.commit request on\nthe sub-surface, see the documentation on wl_subsurface interface."] - pub fn get_subsurface( - &self, - surface: &super::wl_surface::WlSurface, - parent: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetSubsurface { - surface: surface.clone(), - parent: parent.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SUBSURFACE_SINCE: u32 = 1u32; - static mut wl_subcompositor_requests_get_subsurface_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_subsurface::wl_subsurface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_subcompositor_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_subsurface\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { &wl_subcompositor_requests_get_subsurface_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_subcompositor_interface: wl_interface = wl_interface { - name: b"wl_subcompositor\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wl_subcompositor_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "sub-surface interface to a wl_surface\n\nAn additional interface to a wl_surface object, which has been\nmade a sub-surface. A sub-surface has one parent surface. A\nsub-surface's size and position are not limited to that of the parent.\nParticularly, a sub-surface is not automatically clipped to its\nparent's area.\n\nA sub-surface becomes mapped, when a non-NULL wl_buffer is applied\nand the parent surface is mapped. The order of which one happens\nfirst is irrelevant. A sub-surface is hidden if the parent becomes\nhidden, or if a NULL wl_buffer is applied. These rules apply\nrecursively through the tree of surfaces.\n\nThe behaviour of a wl_surface.commit request on a sub-surface\ndepends on the sub-surface's mode. The possible modes are\nsynchronized and desynchronized, see methods\nwl_subsurface.set_sync and wl_subsurface.set_desync. Synchronized\nmode caches the wl_surface state to be applied when the parent's\nstate gets applied, and desynchronized mode applies the pending\nwl_surface state directly. A sub-surface is initially in the\nsynchronized mode.\n\nSub-surfaces also have another kind of state, which is managed by\nwl_subsurface requests, as opposed to wl_surface requests. This\nstate includes the sub-surface position relative to the parent\nsurface (wl_subsurface.set_position), and the stacking order of\nthe parent and its sub-surfaces (wl_subsurface.place_above and\n.place_below). This state is applied when the parent surface's\nwl_surface state is applied, regardless of the sub-surface's mode.\nAs the exception, set_sync and set_desync are effective immediately.\n\nThe main surface can be thought to be always in desynchronized mode,\nsince it does not have a parent in the sub-surfaces sense.\n\nEven if a sub-surface is in desynchronized mode, it will behave as\nin synchronized mode, if its parent surface behaves as in\nsynchronized mode. This rule is applied recursively throughout the\ntree of surfaces. This means, that one can set a sub-surface into\nsynchronized mode, and then assume that all its child and grand-child\nsub-surfaces are synchronized, too, without explicitly setting them.\n\nIf the wl_surface associated with the wl_subsurface is destroyed, the\nwl_subsurface object becomes inert. Note, that destroying either object\ntakes effect immediately. If you need to synchronize the removal\nof a sub-surface to the parent surface update, unmap the sub-surface\nfirst by attaching a NULL wl_buffer, update parent, and then destroy\nthe sub-surface.\n\nIf the parent wl_surface object is destroyed, the sub-surface is\nunmapped."] -pub mod wl_subsurface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "wl_surface is not a sibling or the parent"] - BadSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::BadSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove sub-surface interface\n\nThe sub-surface interface is removed from the wl_surface object\nthat was turned into a sub-surface with a\nwl_subcompositor.get_subsurface request. The wl_surface's association\nto the parent is deleted, and the wl_surface loses its role as\na sub-surface. The wl_surface is unmapped immediately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "reposition the sub-surface\n\nThis schedules a sub-surface position change.\nThe sub-surface will be moved so that its origin (top left\ncorner pixel) will be at the location x, y of the parent surface\ncoordinate system. The coordinates are not restricted to the parent\nsurface area. Negative values are allowed.\n\nThe scheduled coordinates will take effect whenever the state of the\nparent surface is applied. When this happens depends on whether the\nparent surface is in synchronized mode or not. See\nwl_subsurface.set_sync and wl_subsurface.set_desync for details.\n\nIf more than one set_position request is invoked by the client before\nthe commit of the parent surface, the position of a new request always\nreplaces the scheduled position from any previous request.\n\nThe initial position is 0, 0."] - SetPosition { x: i32, y: i32 }, - #[doc = "restack the sub-surface\n\nThis sub-surface is taken from the stack, and put back just\nabove the reference surface, changing the z-order of the sub-surfaces.\nThe reference surface must be one of the sibling surfaces, or the\nparent surface. Using any other surface, including this sub-surface,\nwill cause a protocol error.\n\nThe z-order is double-buffered. Requests are handled in order and\napplied immediately to a pending state. The final pending state is\ncopied to the active state the next time the state of the parent\nsurface is applied. When this happens depends on whether the parent\nsurface is in synchronized mode or not. See wl_subsurface.set_sync and\nwl_subsurface.set_desync for details.\n\nA new sub-surface is initially added as the top-most in the stack\nof its siblings and parent."] - PlaceAbove { - sibling: super::wl_surface::WlSurface, - }, - #[doc = "restack the sub-surface\n\nThe sub-surface is placed just below the reference surface.\nSee wl_subsurface.place_above."] - PlaceBelow { - sibling: super::wl_surface::WlSurface, - }, - #[doc = "set sub-surface to synchronized mode\n\nChange the commit behaviour of the sub-surface to synchronized\nmode, also described as the parent dependent mode.\n\nIn synchronized mode, wl_surface.commit on a sub-surface will\naccumulate the committed state in a cache, but the state will\nnot be applied and hence will not change the compositor output.\nThe cached state is applied to the sub-surface immediately after\nthe parent surface's state is applied. This ensures atomic\nupdates of the parent and all its synchronized sub-surfaces.\nApplying the cached state will invalidate the cache, so further\nparent surface commits do not (re-)apply old state.\n\nSee wl_subsurface for the recursive effect of this mode."] - SetSync, - #[doc = "set sub-surface to desynchronized mode\n\nChange the commit behaviour of the sub-surface to desynchronized\nmode, also described as independent or freely running mode.\n\nIn desynchronized mode, wl_surface.commit on a sub-surface will\napply the pending state directly, without caching, as happens\nnormally with a wl_surface. Calling wl_surface.commit on the\nparent surface has no effect on the sub-surface's wl_surface\nstate. This mode allows a sub-surface to be updated on its own.\n\nIf cached state exists when wl_surface.commit is called in\ndesynchronized mode, the pending state is added to the cached\nstate, and applied as a whole. This invalidates the cache.\n\nNote: even if a sub-surface is set to desynchronized, a parent\nsub-surface may override it to behave as synchronized. For details,\nsee wl_subsurface.\n\nIf a surface's parent surface behaves as desynchronized, then\nthe cached state is applied on set_desync."] - SetDesync, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "place_above", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "place_below", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_sync", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_desync", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetPosition { .. } => 1, - Request::PlaceAbove { .. } => 2, - Request::PlaceBelow { .. } => 3, - Request::SetSync => 4, - Request::SetDesync => 5, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetPosition { .. } => 1, - Request::PlaceAbove { .. } => 1, - Request::PlaceBelow { .. } => 1, - Request::SetSync => 1, - Request::SetDesync => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetPosition { x, y } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - Request::PlaceAbove { sibling } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object(sibling.as_ref().id()),], - }, - Request::PlaceBelow { sibling } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Object(sibling.as_ref().id()),], - }, - Request::SetSync => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - Request::SetDesync => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetPosition { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(1, &mut _args_array) - } - Request::PlaceAbove { sibling } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = sibling.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::PlaceBelow { sibling } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = sibling.as_ref().c_ptr() as *mut _; - f(3, &mut _args_array) - } - Request::SetSync => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - Request::SetDesync => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(5, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSubsurface(Proxy); - impl AsRef> for WlSubsurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSubsurface { - #[inline] - fn from(value: Proxy) -> Self { - WlSubsurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSubsurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSubsurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSubsurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_subsurface"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_subsurface_interface } - } - } - impl WlSubsurface { - #[doc = "remove sub-surface interface\n\nThe sub-surface interface is removed from the wl_surface object\nthat was turned into a sub-surface with a\nwl_subcompositor.get_subsurface request. The wl_surface's association\nto the parent is deleted, and the wl_surface loses its role as\na sub-surface. The wl_surface is unmapped immediately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "reposition the sub-surface\n\nThis schedules a sub-surface position change.\nThe sub-surface will be moved so that its origin (top left\ncorner pixel) will be at the location x, y of the parent surface\ncoordinate system. The coordinates are not restricted to the parent\nsurface area. Negative values are allowed.\n\nThe scheduled coordinates will take effect whenever the state of the\nparent surface is applied. When this happens depends on whether the\nparent surface is in synchronized mode or not. See\nwl_subsurface.set_sync and wl_subsurface.set_desync for details.\n\nIf more than one set_position request is invoked by the client before\nthe commit of the parent surface, the position of a new request always\nreplaces the scheduled position from any previous request.\n\nThe initial position is 0, 0."] - pub fn set_position(&self, x: i32, y: i32) -> () { - let msg = Request::SetPosition { x: x, y: y }; - self.0.send::(msg, None); - } - #[doc = "restack the sub-surface\n\nThis sub-surface is taken from the stack, and put back just\nabove the reference surface, changing the z-order of the sub-surfaces.\nThe reference surface must be one of the sibling surfaces, or the\nparent surface. Using any other surface, including this sub-surface,\nwill cause a protocol error.\n\nThe z-order is double-buffered. Requests are handled in order and\napplied immediately to a pending state. The final pending state is\ncopied to the active state the next time the state of the parent\nsurface is applied. When this happens depends on whether the parent\nsurface is in synchronized mode or not. See wl_subsurface.set_sync and\nwl_subsurface.set_desync for details.\n\nA new sub-surface is initially added as the top-most in the stack\nof its siblings and parent."] - pub fn place_above(&self, sibling: &super::wl_surface::WlSurface) -> () { - let msg = Request::PlaceAbove { - sibling: sibling.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "restack the sub-surface\n\nThe sub-surface is placed just below the reference surface.\nSee wl_subsurface.place_above."] - pub fn place_below(&self, sibling: &super::wl_surface::WlSurface) -> () { - let msg = Request::PlaceBelow { - sibling: sibling.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "set sub-surface to synchronized mode\n\nChange the commit behaviour of the sub-surface to synchronized\nmode, also described as the parent dependent mode.\n\nIn synchronized mode, wl_surface.commit on a sub-surface will\naccumulate the committed state in a cache, but the state will\nnot be applied and hence will not change the compositor output.\nThe cached state is applied to the sub-surface immediately after\nthe parent surface's state is applied. This ensures atomic\nupdates of the parent and all its synchronized sub-surfaces.\nApplying the cached state will invalidate the cache, so further\nparent surface commits do not (re-)apply old state.\n\nSee wl_subsurface for the recursive effect of this mode."] - pub fn set_sync(&self) -> () { - let msg = Request::SetSync; - self.0.send::(msg, None); - } - #[doc = "set sub-surface to desynchronized mode\n\nChange the commit behaviour of the sub-surface to desynchronized\nmode, also described as independent or freely running mode.\n\nIn desynchronized mode, wl_surface.commit on a sub-surface will\napply the pending state directly, without caching, as happens\nnormally with a wl_surface. Calling wl_surface.commit on the\nparent surface has no effect on the sub-surface's wl_surface\nstate. This mode allows a sub-surface to be updated on its own.\n\nIf cached state exists when wl_surface.commit is called in\ndesynchronized mode, the pending state is added to the cached\nstate, and applied as a whole. This invalidates the cache.\n\nNote: even if a sub-surface is set to desynchronized, a parent\nsub-surface may override it to behave as synchronized. For details,\nsee wl_subsurface.\n\nIf a surface's parent surface behaves as desynchronized, then\nthe cached state is applied on set_desync."] - pub fn set_desync(&self) -> () { - let msg = Request::SetDesync; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PLACE_ABOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PLACE_BELOW_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SYNC_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_DESYNC_SINCE: u32 = 1u32; - static mut wl_subsurface_requests_place_above_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - static mut wl_subsurface_requests_place_below_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_subsurface_requests: [wl_message; 6] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"place_above\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_subsurface_requests_place_above_types as *const _ }, - }, - wl_message { - name: b"place_below\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_subsurface_requests_place_below_types as *const _ }, - }, - wl_message { - name: b"set_sync\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_desync\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_subsurface_interface: wl_interface = wl_interface { - name: b"wl_subsurface\0" as *const u8 as *const c_char, - version: 1, - request_count: 6, - requests: unsafe { &wl_subsurface_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-client-b35bc2c9b68d81d5/output b/target/debug/build/wayland-client-b35bc2c9b68d81d5/output deleted file mode 100644 index e6002f3..0000000 --- a/target/debug/build/wayland-client-b35bc2c9b68d81d5/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rerun-if-changed=./wayland.xml diff --git a/target/debug/build/wayland-client-b35bc2c9b68d81d5/root-output b/target/debug/build/wayland-client-b35bc2c9b68d81d5/root-output deleted file mode 100644 index 9213024..0000000 --- a/target/debug/build/wayland-client-b35bc2c9b68d81d5/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-b35bc2c9b68d81d5/out \ No newline at end of file diff --git a/target/debug/build/wayland-client-b35bc2c9b68d81d5/stderr b/target/debug/build/wayland-client-b35bc2c9b68d81d5/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build-script-build b/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build-script-build deleted file mode 100755 index 3d932c2..0000000 Binary files a/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build-script-build and /dev/null differ diff --git a/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4 b/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4 deleted file mode 100755 index 3d932c2..0000000 Binary files a/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4 and /dev/null differ diff --git a/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4.d b/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4.d deleted file mode 100644 index ba3a435..0000000 --- a/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-15ed0ee06d6325d4/build_script_build-15ed0ee06d6325d4.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/build.rs: diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/invoked.timestamp b/target/debug/build/wayland-protocols-8fc0dcc75e253179/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs deleted file mode 100644 index 5e7d31d..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs +++ /dev/null @@ -1,673 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "displays a single surface per output\n\nDisplays a single surface per output.\n\nThis interface provides a mechanism for a single client to display\nsimple full-screen surfaces. While there technically may be multiple\nclients bound to this interface, only one of those clients should be\nshown at a time.\n\nTo present a surface, the client uses either the present_surface or\npresent_surface_for_mode requests. Presenting a surface takes effect\non the next wl_surface.commit. See the individual requests for\ndetails about scaling and mode switches.\n\nThe client can have at most one surface per output at any time.\nRequesting a surface to be presented on an output that already has a\nsurface replaces the previously presented surface. Presenting a null\nsurface removes its content and effectively disables the output.\nExactly what happens when an output is \"disabled\" is\ncompositor-specific. The same surface may be presented on multiple\noutputs simultaneously.\n\nOnce a surface is presented on an output, it stays on that output\nuntil either the client removes it or the compositor destroys the\noutput. This way, the client can update the output's contents by\nsimply attaching a new buffer.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_fullscreen_shell_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "capabilities advertised by the compositor\n\nVarious capabilities that can be advertised by the compositor. They\nare advertised one-at-a-time when the wl_fullscreen_shell interface is\nbound. See the wl_fullscreen_shell.capability event for more details.\n\nARBITRARY_MODES:\nThis is a hint to the client that indicates that the compositor is\ncapable of setting practically any mode on its outputs. If this\ncapability is provided, wl_fullscreen_shell.present_surface_for_mode\nwill almost never fail and clients should feel free to set whatever\nmode they like. If the compositor does not advertise this, it may\nstill support some modes that are not advertised through wl_global.mode\nbut it is less likely.\n\nCURSOR_PLANE:\nThis is a hint to the client that indicates that the compositor can\nhandle a cursor surface from the client without actually compositing.\nThis may be because of a hardware cursor plane or some other mechanism.\nIf the compositor does not advertise this capability then setting\nwl_pointer.cursor may degrade performance or be ignored entirely. If\nCURSOR_PLANE is not advertised, it is recommended that the client draw\nits own cursor and set wl_pointer.cursor(NULL)."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Capability { - #[doc = "compositor is capable of almost any output mode"] - ArbitraryModes = 1, - #[doc = "compositor has a separate cursor plane"] - CursorPlane = 2, - } - impl Capability { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Capability::ArbitraryModes), - 2 => Some(Capability::CursorPlane), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "different method to set the surface fullscreen\n\nHints to indicate to the compositor how to deal with a conflict\nbetween the dimensions of the surface and the dimensions of the\noutput. The compositor is free to ignore this parameter."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum PresentMethod { - #[doc = "no preference, apply default policy"] - Default = 0, - #[doc = "center the surface on the output"] - Center = 1, - #[doc = "scale the surface, preserving aspect ratio, to the largest size that will fit on the output"] - Zoom = 2, - #[doc = "scale the surface, preserving aspect ratio, to fully fill the output cropping if needed"] - ZoomCrop = 3, - #[doc = "scale the surface to the size of the output ignoring aspect ratio"] - Stretch = 4, - } - impl PresentMethod { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(PresentMethod::Default), - 1 => Some(PresentMethod::Center), - 2 => Some(PresentMethod::Zoom), - 3 => Some(PresentMethod::ZoomCrop), - 4 => Some(PresentMethod::Stretch), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "wl_fullscreen_shell error values\n\nThese errors can be emitted in response to wl_fullscreen_shell requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "present_method is not known"] - InvalidMethod = 0, - #[doc = "given wl_surface has another role"] - Role = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidMethod), - 1 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the wl_fullscreen_shell interface\n\nRelease the binding from the wl_fullscreen_shell interface.\n\nThis destroys the server-side object and frees this binding. If\nthe client binds to wl_fullscreen_shell multiple times, it may wish\nto free some of those bindings.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Release, - #[doc = "present surface for display\n\nPresent a surface on the given output.\n\nIf the output is null, the compositor will present the surface on\nwhatever display (or displays) it thinks best. In particular, this\nmay replace any or all surfaces currently presented so it should\nnot be used in combination with placing surfaces on specific\noutputs.\n\nThe method parameter is a hint to the compositor for how the surface\nis to be presented. In particular, it tells the compositor how to\nhandle a size mismatch between the presented surface and the\noutput. The compositor is free to ignore this parameter.\n\nThe \"zoom\", \"zoom_crop\", and \"stretch\" methods imply a scaling\noperation on the surface. This will override any kind of output\nscaling, so the buffer_scale property of the surface is effectively\nignored.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - PresentSurface { - surface: Option, - method: PresentMethod, - output: Option, - }, - #[doc = "present surface for display at a particular mode\n\nPresents a surface on the given output for a particular mode.\n\nIf the current size of the output differs from that of the surface,\nthe compositor will attempt to change the size of the output to\nmatch the surface. The result of the mode-switch operation will be\nreturned via the provided wl_fullscreen_shell_mode_feedback object.\n\nIf the current output mode matches the one requested or if the\ncompositor successfully switches the mode to match the surface,\nthen the mode_successful event will be sent and the output will\ncontain the contents of the given surface. If the compositor\ncannot match the output size to the surface size, the mode_failed\nwill be sent and the output will contain the contents of the\npreviously presented surface (if any). If another surface is\npresented on the given output before either of these has a chance\nto happen, the present_cancelled event will be sent.\n\nDue to race conditions and other issues unknown to the client, no\nmode-switch operation is guaranteed to succeed. However, if the\nmode is one advertised by wl_output.mode or if the compositor\nadvertises the ARBITRARY_MODES capability, then the client should\nexpect that the mode-switch operation will usually succeed.\n\nIf the size of the presented surface changes, the resulting output\nis undefined. The compositor may attempt to change the output mode\nto compensate. However, there is no guarantee that a suitable mode\nwill be found and the client has no way to be notified of success\nor failure.\n\nThe framerate parameter specifies the desired framerate for the\noutput in mHz. The compositor is free to ignore this parameter. A\nvalue of 0 indicates that the client has no preference.\n\nIf the value of wl_output.scale differs from wl_surface.buffer_scale,\nthen the compositor may choose a mode that matches either the buffer\nsize or the surface size. In either case, the surface will fill the\noutput.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - PresentSurfaceForMode { - surface: super::wl_surface::WlSurface, - output: super::wl_output::WlOutput, - framerate: i32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "present_surface", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "present_surface_for_mode", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::NewId, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - Request::PresentSurface { .. } => 1, - Request::PresentSurfaceForMode { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 1, - Request::PresentSurface { .. } => 1, - Request::PresentSurfaceForMode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 2 => Some(Object::from_interface::< - super::zwp_fullscreen_shell_mode_feedback_v1::ZwpFullscreenShellModeFeedbackV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::PresentSurface { - surface, - method, - output, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(method.to_raw()), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - ], - }, - Request::PresentSurfaceForMode { - surface, - output, - framerate, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(surface.as_ref().id()), - Argument::Object(output.as_ref().id()), - Argument::Int(framerate), - Argument::NewId(0), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::PresentSurface { - surface, - method, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = method.to_raw(); - _args_array[2].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::PresentSurfaceForMode { - surface, - output, - framerate, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - _args_array[2].i = framerate; - _args_array[3].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertises a capability of the compositor\n\nAdvertises a single capability of the compositor.\n\nWhen the wl_fullscreen_shell interface is bound, this event is emitted\nonce for each capability advertised. Valid capabilities are given by\nthe wl_fullscreen_shell.capability enum. If clients want to take\nadvantage of any of these capabilities, they should use a\nwl_display.sync request immediately after binding to ensure that they\nreceive all the capability events."] - Capability { capability: Capability }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "capability", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Capability { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Capability { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capability { - capability: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capability { - capability: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpFullscreenShellV1(Proxy); - impl AsRef> for ZwpFullscreenShellV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpFullscreenShellV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpFullscreenShellV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpFullscreenShellV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpFullscreenShellV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpFullscreenShellV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_fullscreen_shell_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_fullscreen_shell_v1_interface } - } - } - impl ZwpFullscreenShellV1 { - #[doc = "release the wl_fullscreen_shell interface\n\nRelease the binding from the wl_fullscreen_shell interface.\n\nThis destroys the server-side object and frees this binding. If\nthe client binds to wl_fullscreen_shell multiple times, it may wish\nto free some of those bindings.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - #[doc = "present surface for display\n\nPresent a surface on the given output.\n\nIf the output is null, the compositor will present the surface on\nwhatever display (or displays) it thinks best. In particular, this\nmay replace any or all surfaces currently presented so it should\nnot be used in combination with placing surfaces on specific\noutputs.\n\nThe method parameter is a hint to the compositor for how the surface\nis to be presented. In particular, it tells the compositor how to\nhandle a size mismatch between the presented surface and the\noutput. The compositor is free to ignore this parameter.\n\nThe \"zoom\", \"zoom_crop\", and \"stretch\" methods imply a scaling\noperation on the surface. This will override any kind of output\nscaling, so the buffer_scale property of the surface is effectively\nignored.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - pub fn present_surface( - &self, - surface: Option<&super::wl_surface::WlSurface>, - method: PresentMethod, - output: Option<&super::wl_output::WlOutput>, - ) -> () { - let msg = Request::PresentSurface { - surface: surface.map(|o| o.clone()), - method: method, - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "present surface for display at a particular mode\n\nPresents a surface on the given output for a particular mode.\n\nIf the current size of the output differs from that of the surface,\nthe compositor will attempt to change the size of the output to\nmatch the surface. The result of the mode-switch operation will be\nreturned via the provided wl_fullscreen_shell_mode_feedback object.\n\nIf the current output mode matches the one requested or if the\ncompositor successfully switches the mode to match the surface,\nthen the mode_successful event will be sent and the output will\ncontain the contents of the given surface. If the compositor\ncannot match the output size to the surface size, the mode_failed\nwill be sent and the output will contain the contents of the\npreviously presented surface (if any). If another surface is\npresented on the given output before either of these has a chance\nto happen, the present_cancelled event will be sent.\n\nDue to race conditions and other issues unknown to the client, no\nmode-switch operation is guaranteed to succeed. However, if the\nmode is one advertised by wl_output.mode or if the compositor\nadvertises the ARBITRARY_MODES capability, then the client should\nexpect that the mode-switch operation will usually succeed.\n\nIf the size of the presented surface changes, the resulting output\nis undefined. The compositor may attempt to change the output mode\nto compensate. However, there is no guarantee that a suitable mode\nwill be found and the client has no way to be notified of success\nor failure.\n\nThe framerate parameter specifies the desired framerate for the\noutput in mHz. The compositor is free to ignore this parameter. A\nvalue of 0 indicates that the client has no preference.\n\nIf the value of wl_output.scale differs from wl_surface.buffer_scale,\nthen the compositor may choose a mode that matches either the buffer\nsize or the surface size. In either case, the surface will fill the\noutput.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - pub fn present_surface_for_mode( - &self, - surface: &super::wl_surface::WlSurface, - output: &super::wl_output::WlOutput, - framerate: i32, - ) -> Main - { - let msg = Request::PresentSurfaceForMode { - surface: surface.clone(), - output: output.clone(), - framerate: framerate, - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PRESENT_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PRESENT_SURFACE_FOR_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITY_SINCE: u32 = 1u32; - static mut zwp_fullscreen_shell_v1_requests_present_surface_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - static mut zwp_fullscreen_shell_v1_requests_present_surface_for_mode_types: - [*const wl_interface; 4] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - unsafe { - & super :: zwp_fullscreen_shell_mode_feedback_v1 :: zwp_fullscreen_shell_mode_feedback_v1_interface as * const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_fullscreen_shell_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"present_surface\0" as *const u8 as *const c_char, - signature: b"?ou?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_fullscreen_shell_v1_requests_present_surface_types as *const _ }, - }, - wl_message { - name: b"present_surface_for_mode\0" as *const u8 as *const c_char, - signature: b"ooin\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_fullscreen_shell_v1_requests_present_surface_for_mode_types as *const _ - }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_fullscreen_shell_v1_events: [wl_message; 1] = [wl_message { - name: b"capability\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_fullscreen_shell_v1_interface: wl_interface = wl_interface { - name: b"zwp_fullscreen_shell_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_fullscreen_shell_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_fullscreen_shell_v1_events as *const _ }, - }; -} -pub mod zwp_fullscreen_shell_mode_feedback_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "mode switch succeeded\n\nThis event indicates that the attempted mode switch operation was\nsuccessful. A surface of the size requested in the mode switch\nwill fill the output without scaling.\n\nUpon receiving this event, the client should destroy the\nwl_fullscreen_shell_mode_feedback object."] - ModeSuccessful, - #[doc = "mode switch failed\n\nThis event indicates that the attempted mode switch operation\nfailed. This may be because the requested output mode is not\npossible or it may mean that the compositor does not want to allow it.\n\nUpon receiving this event, the client should destroy the\nwl_fullscreen_shell_mode_feedback object."] - ModeFailed, - #[doc = "mode switch cancelled\n\nThis event indicates that the attempted mode switch operation was\ncancelled. Most likely this is because the client requested a\nsecond mode switch before the first one completed.\n\nUpon receiving this event, the client should destroy the\nwl_fullscreen_shell_mode_feedback object."] - PresentCancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "mode_successful", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "mode_failed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "present_cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::ModeSuccessful => 0, - Event::ModeFailed => 1, - Event::PresentCancelled => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::ModeSuccessful => 1, - Event::ModeFailed => 1, - Event::PresentCancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::ModeSuccessful), - 1 => Ok(Event::ModeFailed), - 2 => Ok(Event::PresentCancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::ModeSuccessful), - 1 => Ok(Event::ModeFailed), - 2 => Ok(Event::PresentCancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpFullscreenShellModeFeedbackV1(Proxy); - impl AsRef> for ZwpFullscreenShellModeFeedbackV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpFullscreenShellModeFeedbackV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpFullscreenShellModeFeedbackV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpFullscreenShellModeFeedbackV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpFullscreenShellModeFeedbackV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpFullscreenShellModeFeedbackV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_fullscreen_shell_mode_feedback_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_fullscreen_shell_mode_feedback_v1_interface } - } - } - impl ZwpFullscreenShellModeFeedbackV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SUCCESSFUL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_FAILED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESENT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_fullscreen_shell_mode_feedback_v1_events: [wl_message; 3] = [ - wl_message { - name: b"mode_successful\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode_failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"present_cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_fullscreen_shell_mode_feedback_v1_interface: wl_interface = wl_interface { - name: b"zwp_fullscreen_shell_mode_feedback_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 3, - events: unsafe { &zwp_fullscreen_shell_mode_feedback_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs deleted file mode 100644 index 7914097..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs +++ /dev/null @@ -1,1229 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "X primary selection emulation\n\nThe primary selection device manager is a singleton global object that\nprovides access to the primary selection. It allows to create\nwp_primary_selection_source objects, as well as retrieving the per-seat\nwp_primary_selection_device objects."] -pub mod gtk_primary_selection_device_manager { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - CreateSource {}, - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - GetDevice { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateSource { .. } => 0, - Request::GetDevice { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateSource { .. } => 1, - Request::GetDevice { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::gtk_primary_selection_source::GtkPrimarySelectionSource, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::gtk_primary_selection_device::GtkPrimarySelectionDevice, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionDeviceManager(Proxy); - impl AsRef> for GtkPrimarySelectionDeviceManager { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionDeviceManager { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionDeviceManager(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionDeviceManager) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionDeviceManager { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionDeviceManager { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_device_manager"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_device_manager_interface } - } - } - impl GtkPrimarySelectionDeviceManager { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - pub fn create_source( - &self, - ) -> Main { - let msg = Request::CreateSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - pub fn get_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DEVICE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut gtk_primary_selection_device_manager_requests_create_source_types: - [*const wl_interface; 1] = [unsafe { - &super::gtk_primary_selection_source::gtk_primary_selection_source_interface - as *const wl_interface - }]; - static mut gtk_primary_selection_device_manager_requests_get_device_types: - [*const wl_interface; 2] = [ - unsafe { - &super::gtk_primary_selection_device::gtk_primary_selection_device_interface - as *const wl_interface - }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_device_manager_requests: [wl_message; 3] = [ - wl_message { - name: b"create_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - >k_primary_selection_device_manager_requests_create_source_types as *const _ - }, - }, - wl_message { - name: b"get_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - >k_primary_selection_device_manager_requests_get_device_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_device_manager_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_device_manager\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { >k_primary_selection_device_manager_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -pub mod gtk_primary_selection_device { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary selection\nwill receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - serial: u32, - }, - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSelection { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSelection { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSelection { source, serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSelection { source, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wp_primary_selection_offer\n\nIntroduces a new wp_primary_selection_offer object that may be used\nto receive the current primary selection. Immediately following this\nevent, the new wp_primary_selection_offer object will send\nwp_primary_selection_offer.offer events to describe the offered mime\ntypes."] - DataOffer { - offer: Main, - }, - #[doc = "advertise a new primary selection\n\nThe wp_primary_selection_device.selection event is sent to notify the\nclient of a new primary selection. This event is sent after the\nwp_primary_selection.data_offer event introducing this object, and after\nthe offer has announced its mimetypes through\nwp_primary_selection_offer.offer.\n\nThe data_offer is valid until a new offer or NULL is received\nor until the client loses keyboard focus. The client must destroy the\nprevious selection data_offer, if any, upon receiving this event."] - Selection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Selection { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Selection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::gtk_primary_selection_offer::GtkPrimarySelectionOffer, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - offer: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok( - Event::DataOffer { - offer: Main::< - super::gtk_primary_selection_offer::GtkPrimarySelectionOffer, - >::from_c_ptr(_args[0].o as *mut _), - }, - ) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: gtk_primary_selection_offer :: GtkPrimarySelectionOffer > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionDevice(Proxy); - impl AsRef> for GtkPrimarySelectionDevice { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionDevice { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionDevice(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionDevice) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionDevice { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionDevice { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_device"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_device_interface } - } - } - impl GtkPrimarySelectionDevice { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary selection\nwill receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::gtk_primary_selection_source::GtkPrimarySelectionSource>, - serial: u32, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - static mut gtk_primary_selection_device_requests_set_selection_types: [*const wl_interface; 2] = [ - unsafe { - &super::gtk_primary_selection_source::gtk_primary_selection_source_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_device_requests: [wl_message; 2] = [ - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?ou\0" as *const u8 as *const c_char, - types: unsafe { - >k_primary_selection_device_requests_set_selection_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut gtk_primary_selection_device_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { - &super::gtk_primary_selection_offer::gtk_primary_selection_offer_interface - as *const wl_interface - }]; - static mut gtk_primary_selection_device_events_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::gtk_primary_selection_offer::gtk_primary_selection_offer_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_device_events: [wl_message; 2] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { >k_primary_selection_device_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { >k_primary_selection_device_events_selection_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_device_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_device\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { >k_primary_selection_device_requests as *const _ }, - event_count: 2, - events: unsafe { >k_primary_selection_device_events as *const _ }, - }; -} -#[doc = "offer to transfer primary selection contents\n\nA wp_primary_selection_offer represents an offer to transfer the contents\nof the primary selection clipboard to the client. Similar to\nwl_data_offer, the offer also describes the mime types that the source\nwill transferthat the\ndata can be converted to and provides the mechanisms for transferring the\ndata directly to the client."] -pub mod gtk_primary_selection_offer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Receive { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Receive { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered mime type\n\nSent immediately after creating announcing the wp_primary_selection_offer\nthrough wp_primary_selection_device.data_offer. One event is sent per\noffered mime type."] - Offer { mime_type: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionOffer(Proxy); - impl AsRef> for GtkPrimarySelectionOffer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionOffer { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionOffer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionOffer) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionOffer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionOffer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_offer"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_offer_interface } - } - } - impl GtkPrimarySelectionOffer { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_offer_requests: [wl_message; 2] = [ - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_offer_events: [wl_message; 1] = [wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_offer_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_offer\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { >k_primary_selection_offer_requests as *const _ }, - event_count: 1, - events: unsafe { >k_primary_selection_offer_events as *const _ }, - }; -} -#[doc = "offer to replace the contents of the primary selection\n\nThe source side of a wp_primary_selection_offer, it provides a way to\ndescribe the offered data and respond to requests to transfer the\nrequested contents of the primary selection clipboard."] -pub mod gtk_primary_selection_source { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - Offer { mime_type: String }, - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "send the primary selection contents\n\nRequest for the current primary selection contents from the client.\nSend the specified mime type over the passed file descriptor, then\nclose it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "request for primary selection contents was canceled\n\nThis primary selection source is no longer valid. The client should\nclean up and destroy this primary selection source."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Send { .. } => 0, - Event::Cancelled => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Send { .. } => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 1 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionSource(Proxy); - impl AsRef> for GtkPrimarySelectionSource { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionSource { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionSource(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionSource) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionSource { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionSource { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_source"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_source_interface } - } - } - impl GtkPrimarySelectionSource { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_source_requests: [wl_message; 2] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_source_events: [wl_message; 2] = [ - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_source_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_source\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { >k_primary_selection_source_requests as *const _ }, - event_count: 2, - events: unsafe { >k_primary_selection_source_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs deleted file mode 100644 index 2dbeeff..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs +++ /dev/null @@ -1,430 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "control behavior when display idles\n\nThis interface permits inhibiting the idle behavior such as screen\nblanking, locking, and screensaving. The client binds the idle manager\nglobally, then creates idle-inhibitor objects for each surface.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_idle_inhibit_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the idle inhibitor object\n\nDestroy the inhibit manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new inhibitor object\n\nCreate a new inhibitor object associated with the given surface."] - CreateInhibitor { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_inhibitor", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreateInhibitor { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreateInhibitor { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_idle_inhibitor_v1::ZwpIdleInhibitorV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreateInhibitor { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreateInhibitor { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpIdleInhibitManagerV1(Proxy); - impl AsRef> for ZwpIdleInhibitManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpIdleInhibitManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpIdleInhibitManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpIdleInhibitManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpIdleInhibitManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpIdleInhibitManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_idle_inhibit_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_idle_inhibit_manager_v1_interface } - } - } - impl ZwpIdleInhibitManagerV1 { - #[doc = "destroy the idle inhibitor object\n\nDestroy the inhibit manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new inhibitor object\n\nCreate a new inhibitor object associated with the given surface."] - pub fn create_inhibitor( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::CreateInhibitor { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_INHIBITOR_SINCE: u32 = 1u32; - static mut zwp_idle_inhibit_manager_v1_requests_create_inhibitor_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwp_idle_inhibitor_v1::zwp_idle_inhibitor_v1_interface as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_idle_inhibit_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_inhibitor\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_idle_inhibit_manager_v1_requests_create_inhibitor_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_idle_inhibit_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_idle_inhibit_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_idle_inhibit_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "context object for inhibiting idle behavior\n\nAn idle inhibitor prevents the output that the associated surface is\nvisible on from being set to a state where it is not visually usable due\nto lack of user interaction (e.g. blanked, dimmed, locked, set to power\nsave, etc.) Any screensaver processes are also blocked from displaying.\n\nIf the surface is destroyed, unmapped, becomes occluded, loses\nvisibility, or otherwise becomes not visually relevant for the user, the\nidle inhibitor will not be honored by the compositor; if the surface\nsubsequently regains visibility the inhibitor takes effect once again.\nLikewise, the inhibitor isn't honored if the system was already idled at\nthe time the inhibitor was established, although if the system later\nde-idles and re-idles the inhibitor will take effect."] -pub mod zwp_idle_inhibitor_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the idle inhibitor object\n\nRemove the inhibitor effect from the associated wl_surface.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpIdleInhibitorV1(Proxy); - impl AsRef> for ZwpIdleInhibitorV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpIdleInhibitorV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpIdleInhibitorV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpIdleInhibitorV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpIdleInhibitorV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpIdleInhibitorV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_idle_inhibitor_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_idle_inhibitor_v1_interface } - } - } - impl ZwpIdleInhibitorV1 { - #[doc = "destroy the idle inhibitor object\n\nRemove the inhibitor effect from the associated wl_surface.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_idle_inhibitor_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_idle_inhibitor_v1_interface: wl_interface = wl_interface { - name: b"zwp_idle_inhibitor_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_idle_inhibitor_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs deleted file mode 100644 index 56a0b1d..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs +++ /dev/null @@ -1,1643 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "input method\n\nAn input method object allows for clients to compose text.\n\nThe objects connects the client to a text input in an application, and\nlets the client to serve as an input method for a seat.\n\nThe zwp_input_method_v2 object can occupy two distinct states: active and\ninactive. In the active state, the object is associated to and\ncommunicates with a text input. In the inactive state, there is no\nassociated text input, and the only communication is with the compositor.\nInitially, the input method is in the inactive state.\n\nRequests issued in the inactive state must be accepted by the compositor.\nBecause of the serial mechanism, and the state reset on activate event,\nthey will not have any effect on the state of the next text input.\n\nThere must be no more than one input method object per seat."] -pub mod zwp_input_method_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nInserts a string at current cursor position (see commit event\nsequence). The string to commit could be either just a single character\nafter a key press or the result of some composing.\n\nThe argument text is a buffer containing the string to insert. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.commit request.\n\nThe initial value of text is an empty string."] - CommitString { text: String }, - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nPlace a new composing text (pre-edit) at the current cursor position.\nAny previously set composing text must be removed. Any previously\nexisting selected text must be removed. The cursor is moved to a new\nposition within the preedit string.\n\nThe argument text is a buffer containing the preedit string. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nThe arguments cursor_begin and cursor_end are counted in bytes relative\nto the beginning of the submitted string buffer. Cursor should be\nhidden by the text input when both are equal to -1.\n\ncursor_begin indicates the beginning of the cursor. cursor_end\nindicates the end of the cursor. It may be equal or different than\ncursor_begin.\n\nValues set with this event are double-buffered. They must be applied on\nthe next zwp_input_method_v2.commit event.\n\nThe initial value of text is an empty string. The initial value of\ncursor_begin, and cursor_end are both 0."] - SetPreeditString { - text: String, - cursor_begin: i32, - cursor_end: i32, - }, - #[doc = "delete text\n\nRemove the surrounding text.\n\nbefore_length and after_length are the number of bytes before and after\nthe current cursor index (excluding the preedit text) to delete.\n\nIf any preedit text is present, it is replaced with the cursor for the\npurpose of this event. In effect before_length is counted from the\nbeginning of preedit text, and after_length from its end (see commit\nevent sequence).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_input_method_v2.commit request.\n\nThe initial values of both before_length and after_length are 0."] - DeleteSurroundingText { - before_length: u32, - after_length: u32, - }, - #[doc = "apply state\n\nApply state changes from commit_string, set_preedit_string and\ndelete_surrounding_text requests.\n\nThe state relating to these events is double-buffered, and each one\nmodifies the pending state. This request replaces the current state\nwith the pending state.\n\nThe connected text input is expected to proceed by evaluating the\nchanges in the following order:\n\n1. Replace existing preedit string with the cursor.\n2. Delete requested surrounding text.\n3. Insert commit string with the cursor at its end.\n4. Calculate surrounding text to send.\n5. Insert new preedit text in cursor position.\n6. Place cursor inside preedit text.\n\nThe serial number reflects the last state of the zwp_input_method_v2\nobject known to the client. The value of the serial argument must be\nequal to the number of done events already issued by that object. When\nthe compositor receives a commit request with a serial different than\nthe number of past done events, it must proceed as normal, except it\nshould not change the current state of the zwp_input_method_v2 object."] - Commit { serial: u32 }, - #[doc = "create popup surface\n\nCreates a new zwp_input_popup_surface_v2 object wrapping a given\nsurface.\n\nThe surface gets assigned the \"input_popup\" role. If the surface\nalready has an assigned role, the compositor must issue a protocol\nerror."] - GetInputPopupSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages.\n\nThe compositor should send all keyboard events on the seat to the grab\nholder via the returned wl_keyboard object. Nevertheless, the\ncompositor may decide not to forward any particular event. The\ncompositor must not further process any event after it has been\nforwarded to the grab holder.\n\nReleasing the resulting wl_keyboard object releases the grab."] - GrabKeyboard {}, - #[doc = "destroy the text input\n\nDestroys the zwp_text_input_v2 object and any associated child\nobjects, i.e. zwp_input_popup_surface_v2 and\nzwp_input_method_keyboard_grab_v2.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "commit", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "get_input_popup_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "grab_keyboard", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CommitString { .. } => 0, - Request::SetPreeditString { .. } => 1, - Request::DeleteSurroundingText { .. } => 2, - Request::Commit { .. } => 3, - Request::GetInputPopupSurface { .. } => 4, - Request::GrabKeyboard { .. } => 5, - Request::Destroy => 6, - } - } - fn since(&self) -> u32 { - match *self { - Request::CommitString { .. } => 1, - Request::SetPreeditString { .. } => 1, - Request::DeleteSurroundingText { .. } => 1, - Request::Commit { .. } => 1, - Request::GetInputPopupSurface { .. } => 1, - Request::GrabKeyboard { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 4 => Some(Object::from_interface::< - super::zwp_input_popup_surface_v2::ZwpInputPopupSurfaceV2, - >(version, meta.child())), - 5 => Some(Object::from_interface::< - super::zwp_input_method_keyboard_grab_v2::ZwpInputMethodKeyboardGrabV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CommitString { text } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })),], - }, - Request::SetPreeditString { - text, - cursor_begin, - cursor_end, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Int(cursor_begin), - Argument::Int(cursor_end), - ], - }, - Request::DeleteSurroundingText { - before_length, - after_length, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Uint(before_length), Argument::Uint(after_length),], - }, - Request::Commit { serial } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(serial),], - }, - Request::GetInputPopupSurface { surface } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::GrabKeyboard {} => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::NewId(0),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CommitString { text } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::SetPreeditString { - text, - cursor_begin, - cursor_end, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].i = cursor_begin; - _args_array[2].i = cursor_end; - f(1, &mut _args_array) - } - Request::DeleteSurroundingText { - before_length, - after_length, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = before_length; - _args_array[1].u = after_length; - f(2, &mut _args_array) - } - Request::Commit { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(3, &mut _args_array) - } - Request::GetInputPopupSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(4, &mut _args_array) - } - Request::GrabKeyboard {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(5, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(6, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "input method has been requested\n\nNotification that a text input focused on this seat requested the input\nmethod to be activated.\n\nThis event serves the purpose of providing the compositor with an\nactive input method.\n\nThis event resets all state associated with previous enable, disable,\nsurrounding_text, text_change_cause, and content_type events, as well\nas the state associated with set_preedit_string, commit_string, and\ndelete_surrounding_text requests. In addition, it marks the\nzwp_input_method_v2 object as active, and makes any existing\nzwp_input_popup_surface_v2 objects visible.\n\nThe surrounding_text, and content_type events must follow before the\nnext done event if the text input supports the respective\nfunctionality.\n\nState set with this event is double-buffered. It will get applied on\nthe next zwp_input_method_v2.done event, and stay valid until changed."] - Activate, - #[doc = "deactivate event\n\nNotification that no focused text input currently needs an active\ninput method on this seat.\n\nThis event marks the zwp_input_method_v2 object as inactive. The\ncompositor must make all existing zwp_input_popup_surface_v2 objects\ninvisible until the next activate event.\n\nState set with this event is double-buffered. It will get applied on\nthe next zwp_input_method_v2.done event, and stay valid until changed."] - Deactivate, - #[doc = "surrounding text event\n\nUpdates the surrounding plain text around the cursor, excluding the\npreedit text.\n\nIf any preedit text is present, it is replaced with the cursor for the\npurpose of this event.\n\nThe argument text is a buffer containing the preedit string, and must\ninclude the cursor position, and the complete selection. It should\ncontain additional characters before and after these. There is a\nmaximum length of wayland messages, so text can not be longer than 4000\nbytes.\n\ncursor is the byte offset of the cursor within the text buffer.\n\nanchor is the byte offset of the selection anchor within the text\nbuffer. If there is no selected text, anchor must be the same as\ncursor.\n\nIf this event does not arrive before the first done event, the input\nmethod may assume that the text input does not support this\nfunctionality and ignore following surrounding_text events.\n\nValues set with this event are double-buffered. They will get applied\nand set to initial values on the next zwp_input_method_v2.done\nevent.\n\nThe initial state for affected fields is empty, meaning that the text\ninput does not support sending surrounding text. If the empty values\nget applied, subsequent attempts to change them may have no effect."] - SurroundingText { - text: String, - cursor: u32, - anchor: u32, - }, - #[doc = "indicates the cause of surrounding text change\n\nTells the input method why the text surrounding the cursor changed.\n\nWhenever the client detects an external change in text, cursor, or\nanchor position, it must issue this request to the compositor. This\nrequest is intended to give the input method a chance to update the\npreedit text in an appropriate way, e.g. by removing it when the user\nstarts typing with a keyboard.\n\ncause describes the source of the change.\n\nThe value set with this event is double-buffered. It will get applied\nand set to its initial value on the next zwp_input_method_v2.done\nevent.\n\nThe initial value of cause is input_method."] - TextChangeCause { - cause: super::zwp_text_input_v3::ChangeCause, - }, - #[doc = "content purpose and hint\n\nIndicates the content type and hint for the current\nzwp_input_method_v2 instance.\n\nValues set with this event are double-buffered. They will get applied\non the next zwp_input_method_v2.done event.\n\nThe initial value for hint is none, and the initial value for purpose\nis normal."] - ContentType { - hint: super::zwp_text_input_v3::ContentHint, - purpose: super::zwp_text_input_v3::ContentPurpose, - }, - #[doc = "apply state\n\nAtomically applies state changes recently sent to the client.\n\nThe done event establishes and updates the state of the client, and\nmust be issued after any changes to apply them.\n\nText input state (content purpose, content hint, surrounding text, and\nchange cause) is conceptually double-buffered within an input method\ncontext.\n\nEvents modify the pending state, as opposed to the current state in use\nby the input method. A done event atomically applies all pending state,\nreplacing the current state. After done, the new pending state is as\ndocumented for each related request.\n\nEvents must be applied in the order of arrival.\n\nNeither current nor pending state are modified unless noted otherwise."] - Done, - #[doc = "input method unavailable\n\nThe input method ceased to be available.\n\nThe compositor must issue this event as the only event on the object if\nthere was another input_method object associated with the same seat at\nthe time of its creation.\n\nThe compositor must issue this request when the object is no longer\nuseable, e.g. due to seat removal.\n\nThe input method context becomes inert and should be destroyed after\ndeactivation is handled. Any further requests and events except for the\ndestroy request must be ignored."] - Unavailable, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "activate", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "deactivate", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "text_change_cause", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unavailable", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Activate => 0, - Event::Deactivate => 1, - Event::SurroundingText { .. } => 2, - Event::TextChangeCause { .. } => 3, - Event::ContentType { .. } => 4, - Event::Done => 5, - Event::Unavailable => 6, - } - } - fn since(&self) -> u32 { - match *self { - Event::Activate => 1, - Event::Deactivate => 1, - Event::SurroundingText { .. } => 1, - Event::TextChangeCause { .. } => 1, - Event::ContentType { .. } => 1, - Event::Done => 1, - Event::Unavailable => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Activate), - 1 => Ok(Event::Deactivate), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::SurroundingText { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - cursor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - anchor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::TextChangeCause { - cause: { - if let Some(Argument::Uint(val)) = args.next() { - super::zwp_text_input_v3::ChangeCause::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::ContentType { - hint: { - if let Some(Argument::Uint(val)) = args.next() { - super::zwp_text_input_v3::ContentHint::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - purpose: { - if let Some(Argument::Uint(val)) = args.next() { - super::zwp_text_input_v3::ContentPurpose::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Unavailable), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Activate), - 1 => Ok(Event::Deactivate), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::SurroundingText { - text: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - cursor: _args[1].u, - anchor: _args[2].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::TextChangeCause { - cause: super::zwp_text_input_v3::ChangeCause::from_raw(_args[0].u) - .ok_or(())?, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::ContentType { - hint: super::zwp_text_input_v3::ContentHint::from_raw(_args[0].u) - .ok_or(())?, - purpose: super::zwp_text_input_v3::ContentPurpose::from_raw(_args[1].u) - .ok_or(())?, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Unavailable), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodV2(Proxy); - impl AsRef> for ZwpInputMethodV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_v2_interface } - } - } - impl ZwpInputMethodV2 { - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nInserts a string at current cursor position (see commit event\nsequence). The string to commit could be either just a single character\nafter a key press or the result of some composing.\n\nThe argument text is a buffer containing the string to insert. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.commit request.\n\nThe initial value of text is an empty string."] - pub fn commit_string(&self, text: String) -> () { - let msg = Request::CommitString { text: text }; - self.0.send::(msg, None); - } - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nPlace a new composing text (pre-edit) at the current cursor position.\nAny previously set composing text must be removed. Any previously\nexisting selected text must be removed. The cursor is moved to a new\nposition within the preedit string.\n\nThe argument text is a buffer containing the preedit string. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nThe arguments cursor_begin and cursor_end are counted in bytes relative\nto the beginning of the submitted string buffer. Cursor should be\nhidden by the text input when both are equal to -1.\n\ncursor_begin indicates the beginning of the cursor. cursor_end\nindicates the end of the cursor. It may be equal or different than\ncursor_begin.\n\nValues set with this event are double-buffered. They must be applied on\nthe next zwp_input_method_v2.commit event.\n\nThe initial value of text is an empty string. The initial value of\ncursor_begin, and cursor_end are both 0."] - pub fn set_preedit_string(&self, text: String, cursor_begin: i32, cursor_end: i32) -> () { - let msg = Request::SetPreeditString { - text: text, - cursor_begin: cursor_begin, - cursor_end: cursor_end, - }; - self.0.send::(msg, None); - } - #[doc = "delete text\n\nRemove the surrounding text.\n\nbefore_length and after_length are the number of bytes before and after\nthe current cursor index (excluding the preedit text) to delete.\n\nIf any preedit text is present, it is replaced with the cursor for the\npurpose of this event. In effect before_length is counted from the\nbeginning of preedit text, and after_length from its end (see commit\nevent sequence).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_input_method_v2.commit request.\n\nThe initial values of both before_length and after_length are 0."] - pub fn delete_surrounding_text(&self, before_length: u32, after_length: u32) -> () { - let msg = Request::DeleteSurroundingText { - before_length: before_length, - after_length: after_length, - }; - self.0.send::(msg, None); - } - #[doc = "apply state\n\nApply state changes from commit_string, set_preedit_string and\ndelete_surrounding_text requests.\n\nThe state relating to these events is double-buffered, and each one\nmodifies the pending state. This request replaces the current state\nwith the pending state.\n\nThe connected text input is expected to proceed by evaluating the\nchanges in the following order:\n\n1. Replace existing preedit string with the cursor.\n2. Delete requested surrounding text.\n3. Insert commit string with the cursor at its end.\n4. Calculate surrounding text to send.\n5. Insert new preedit text in cursor position.\n6. Place cursor inside preedit text.\n\nThe serial number reflects the last state of the zwp_input_method_v2\nobject known to the client. The value of the serial argument must be\nequal to the number of done events already issued by that object. When\nthe compositor receives a commit request with a serial different than\nthe number of past done events, it must proceed as normal, except it\nshould not change the current state of the zwp_input_method_v2 object."] - pub fn commit(&self, serial: u32) -> () { - let msg = Request::Commit { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "create popup surface\n\nCreates a new zwp_input_popup_surface_v2 object wrapping a given\nsurface.\n\nThe surface gets assigned the \"input_popup\" role. If the surface\nalready has an assigned role, the compositor must issue a protocol\nerror."] - pub fn get_input_popup_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetInputPopupSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages.\n\nThe compositor should send all keyboard events on the seat to the grab\nholder via the returned wl_keyboard object. Nevertheless, the\ncompositor may decide not to forward any particular event. The\ncompositor must not further process any event after it has been\nforwarded to the grab holder.\n\nReleasing the resulting wl_keyboard object releases the grab."] - pub fn grab_keyboard( - &self, - ) -> Main { - let msg = Request::GrabKeyboard {}; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the text input\n\nDestroys the zwp_text_input_v2 object and any associated child\nobjects, i.e. zwp_input_popup_surface_v2 and\nzwp_input_method_keyboard_grab_v2.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INPUT_POPUP_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_KEYBOARD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DEACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TEXT_CHANGE_CAUSE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UNAVAILABLE_SINCE: u32 = 1u32; - static mut zwp_input_method_v2_requests_get_input_popup_surface_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwp_input_popup_surface_v2::zwp_input_popup_surface_v2_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut zwp_input_method_v2_requests_grab_keyboard_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_input_method_keyboard_grab_v2::zwp_input_method_keyboard_grab_v2_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_v2_requests: [wl_message; 7] = [ - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_preedit_string\0" as *const u8 as *const c_char, - signature: b"sii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_input_popup_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_method_v2_requests_get_input_popup_surface_types as *const _ - }, - }, - wl_message { - name: b"grab_keyboard\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_v2_requests_grab_keyboard_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_v2_events: [wl_message; 7] = [ - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"deactivate\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"surrounding_text\0" as *const u8 as *const c_char, - signature: b"suu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"text_change_cause\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unavailable\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_method_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 7, - requests: unsafe { &zwp_input_method_v2_requests as *const _ }, - event_count: 7, - events: unsafe { &zwp_input_method_v2_events as *const _ }, - }; -} -#[doc = "popup surface\n\nThis interface marks a surface as a popup for interacting with an input\nmethod.\n\nThe compositor should place it near the active text input area. It must\nbe visible if and only if the input method is in the active state.\n\nThe client must not destroy the underlying wl_surface while the\nzwp_input_popup_surface_v2 object exists."] -pub mod zwp_input_popup_surface_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "This is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "set text input area position\n\nNotify about the position of the area of the text input expressed as a\nrectangle in surface local coordinates.\n\nThis is a hint to the input method telling it the relative position of\nthe text being entered."] - TextInputRectangle { - x: i32, - y: i32, - width: i32, - height: i32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "text_input_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::TextInputRectangle { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::TextInputRectangle { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::TextInputRectangle { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::TextInputRectangle { - x: _args[0].i, - y: _args[1].i, - width: _args[2].i, - height: _args[3].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputPopupSurfaceV2(Proxy); - impl AsRef> for ZwpInputPopupSurfaceV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputPopupSurfaceV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputPopupSurfaceV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputPopupSurfaceV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputPopupSurfaceV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputPopupSurfaceV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_popup_surface_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_popup_surface_v2_interface } - } - } - impl ZwpInputPopupSurfaceV2 { - #[doc = "This is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TEXT_INPUT_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_popup_surface_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_popup_surface_v2_events: [wl_message; 1] = [wl_message { - name: b"text_input_rectangle\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_popup_surface_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_popup_surface_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_popup_surface_v2_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_input_popup_surface_v2_events as *const _ }, - }; -} -#[doc = "keyboard grab\n\nThe zwp_input_method_keyboard_grab_v2 interface represents an exclusive\ngrab of the wl_keyboard interface associated with the seat."] -pub mod zwp_input_method_keyboard_grab_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the grab object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "keyboard mapping\n\nThis event provides a file descriptor to the client which can be\nmemory-mapped to provide a keyboard mapping description."] - Keymap { - format: super::wl_keyboard::KeymapFormat, - fd: ::std::os::unix::io::RawFd, - size: u32, - }, - #[doc = "key event\n\nA key was pressed or released.\nThe time argument is a timestamp with millisecond granularity, with an\nundefined base."] - Key { - serial: u32, - time: u32, - key: u32, - state: super::wl_keyboard::KeyState, - }, - #[doc = "modifier and group state\n\nNotifies clients that the modifier and/or group state has changed, and\nit should update its local state."] - Modifiers { - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - }, - #[doc = "repeat rate and delay\n\nInforms the client about the keyboard's repeat rate and delay.\n\nThis event is sent as soon as the zwp_input_method_keyboard_grab_v2\nobject has been created, and is guaranteed to be received by the\nclient before any key press event.\n\nNegative values for either rate or delay are illegal. A rate of zero\nwill disable any repeating (regardless of the value of delay).\n\nThis event can be sent later on as well with a new value if necessary,\nso clients should continue listening for the event past the creation\nof zwp_input_method_keyboard_grab_v2."] - RepeatInfo { rate: i32, delay: i32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "keymap", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fd, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "key", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "modifiers", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "repeat_info", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Keymap { .. } => 0, - Event::Key { .. } => 1, - Event::Modifiers { .. } => 2, - Event::RepeatInfo { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Keymap { .. } => 1, - Event::Key { .. } => 1, - Event::Modifiers { .. } => 1, - Event::RepeatInfo { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Keymap { - format: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_keyboard::KeymapFormat::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Key { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - key: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_keyboard::KeyState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modifiers { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_depressed: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_latched: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_locked: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - group: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::RepeatInfo { - rate: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - delay: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Keymap { - format: super::wl_keyboard::KeymapFormat::from_raw(_args[0].u).ok_or(())?, - fd: _args[1].h, - size: _args[2].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Key { - serial: _args[0].u, - time: _args[1].u, - key: _args[2].u, - state: super::wl_keyboard::KeyState::from_raw(_args[3].u).ok_or(())?, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Modifiers { - serial: _args[0].u, - mods_depressed: _args[1].u, - mods_latched: _args[2].u, - mods_locked: _args[3].u, - group: _args[4].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::RepeatInfo { - rate: _args[0].i, - delay: _args[1].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodKeyboardGrabV2(Proxy); - impl AsRef> for ZwpInputMethodKeyboardGrabV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodKeyboardGrabV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodKeyboardGrabV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodKeyboardGrabV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodKeyboardGrabV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodKeyboardGrabV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_keyboard_grab_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_keyboard_grab_v2_interface } - } - } - impl ZwpInputMethodKeyboardGrabV2 { - #[doc = "release the grab object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEYMAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIERS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REPEAT_INFO_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_keyboard_grab_v2_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_keyboard_grab_v2_events: [wl_message; 4] = [ - wl_message { - name: b"keymap\0" as *const u8 as *const c_char, - signature: b"uhu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"key\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"repeat_info\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_keyboard_grab_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_method_keyboard_grab_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_method_keyboard_grab_v2_requests as *const _ }, - event_count: 4, - events: unsafe { &zwp_input_method_keyboard_grab_v2_events as *const _ }, - }; -} -#[doc = "input method manager\n\nThe input method manager allows the client to become the input method on\na chosen seat.\n\nNo more than one input method must be associated with any seat at any\ngiven time."] -pub mod zwp_input_method_manager_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request an input method object\n\nRequest a new input zwp_input_method_v2 object associated with a given\nseat."] - GetInputMethod { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the input method manager\n\nDestroys the zwp_input_method_manager_v2 object.\n\nThe zwp_input_method_v2 objects originating from it remain valid.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_input_method", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetInputMethod { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetInputMethod { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_input_method_v2::ZwpInputMethodV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetInputMethod { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::NewId(0),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetInputMethod { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodManagerV2(Proxy); - impl AsRef> for ZwpInputMethodManagerV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodManagerV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodManagerV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodManagerV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodManagerV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodManagerV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_manager_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_manager_v2_interface } - } - } - impl ZwpInputMethodManagerV2 { - #[doc = "request an input method object\n\nRequest a new input zwp_input_method_v2 object associated with a given\nseat."] - pub fn get_input_method( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetInputMethod { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the input method manager\n\nDestroys the zwp_input_method_manager_v2 object.\n\nThe zwp_input_method_v2 objects originating from it remain valid.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INPUT_METHOD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_input_method_manager_v2_requests_get_input_method_types: [*const wl_interface; - 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { - &super::zwp_input_method_v2::zwp_input_method_v2_interface as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_manager_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"get_input_method\0" as *const u8 as *const c_char, - signature: b"on\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_method_manager_v2_requests_get_input_method_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_manager_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_method_manager_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_input_method_manager_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs deleted file mode 100644 index af23dc4..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs +++ /dev/null @@ -1,1781 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "input method context\n\nCorresponds to a text input on the input method side. An input method context\nis created on text input activation on the input method side. It allows\nreceiving information about the text input from the application via events.\nInput method contexts do not keep state after deactivation and should be\ndestroyed after deactivation is handled.\n\nText is generally UTF-8 encoded, indices and lengths are in bytes.\n\nSerials are used to synchronize the state between the text input and\nan input method. New serials are sent by the text input in the\ncommit_state request and are used by the input method to indicate\nthe known text input state in events like preedit_string, commit_string,\nand keysym. The text input can then ignore events from the input method\nwhich are based on an outdated state (for example after a reset).\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_input_method_context_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "This is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nThe text to commit could be either just a single character after a key\npress or the result of some composing (pre-edit). It could be also an\nempty text when some text should be removed (see\ndelete_surrounding_text) or when the input cursor should be moved (see\ncursor_position).\n\nAny previously set composing text will be removed."] - CommitString { serial: u32, text: String }, - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nThe commit text can be used to replace the pre-edit text on reset (for\nexample on unfocus).\n\nPreviously sent preedit_style and preedit_cursor requests are also\nprocessed by the text_input."] - PreeditString { - serial: u32, - text: String, - commit: String, - }, - #[doc = "pre-edit styling\n\nSet the styling information on composing text. The style is applied for\nlength in bytes from index relative to the beginning of\nthe composing text (as byte offset). Multiple styles can\nbe applied to a composing text.\n\nThis request should be sent before sending a preedit_string request."] - PreeditStyling { index: u32, length: u32, style: u32 }, - #[doc = "pre-edit cursor\n\nSet the cursor position inside the composing text (as byte offset)\nrelative to the start of the composing text.\n\nWhen index is negative no cursor should be displayed.\n\nThis request should be sent before sending a preedit_string request."] - PreeditCursor { index: i32 }, - #[doc = "delete text\n\nRemove the surrounding text.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - DeleteSurroundingText { index: i32, length: u32 }, - #[doc = "set cursor to a new position\n\nSet the cursor and anchor to a new position. Index is the new cursor\nposition in bytes (when >= 0 this is relative to the end of the inserted text,\notherwise it is relative to the beginning of the inserted text). Anchor is\nthe new anchor position in bytes (when >= 0 this is relative to the end of the\ninserted text, otherwise it is relative to the beginning of the inserted\ntext). When there should be no selected text, anchor should be the same\nas index.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - CursorPosition { index: i32, anchor: i32 }, - #[doc = ""] - ModifiersMap { map: Vec }, - #[doc = "keysym\n\nNotify when a key event was sent. Key events should not be used for\nnormal text input operations, which should be done with commit_string,\ndelete_surrounding_text, etc. The key event follows the wl_keyboard key\nevent convention. Sym is an XKB keysym, state is a wl_keyboard key_state."] - Keysym { - serial: u32, - time: u32, - sym: u32, - state: u32, - modifiers: u32, - }, - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages."] - GrabKeyboard {}, - #[doc = "forward key event\n\nForward a wl_keyboard::key event to the client that was not processed\nby the input method itself. Should be used when filtering key events\nwith grab_keyboard. The arguments should be the ones from the\nwl_keyboard::key event.\n\nFor generating custom key events use the keysym request instead."] - Key { - serial: u32, - time: u32, - key: u32, - state: u32, - }, - #[doc = "forward modifiers event\n\nForward a wl_keyboard::modifiers event to the client that was not\nprocessed by the input method itself. Should be used when filtering\nkey events with grab_keyboard. The arguments should be the ones\nfrom the wl_keyboard::modifiers event."] - Modifiers { - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - }, - #[doc = ""] - Language { serial: u32, language: String }, - #[doc = ""] - TextDirection { serial: u32, direction: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_styling", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_cursor", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "cursor_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "modifiers_map", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "keysym", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "grab_keyboard", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "key", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "modifiers", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "language", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "text_direction", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CommitString { .. } => 1, - Request::PreeditString { .. } => 2, - Request::PreeditStyling { .. } => 3, - Request::PreeditCursor { .. } => 4, - Request::DeleteSurroundingText { .. } => 5, - Request::CursorPosition { .. } => 6, - Request::ModifiersMap { .. } => 7, - Request::Keysym { .. } => 8, - Request::GrabKeyboard { .. } => 9, - Request::Key { .. } => 10, - Request::Modifiers { .. } => 11, - Request::Language { .. } => 12, - Request::TextDirection { .. } => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CommitString { .. } => 1, - Request::PreeditString { .. } => 1, - Request::PreeditStyling { .. } => 1, - Request::PreeditCursor { .. } => 1, - Request::DeleteSurroundingText { .. } => 1, - Request::CursorPosition { .. } => 1, - Request::ModifiersMap { .. } => 1, - Request::Keysym { .. } => 1, - Request::GrabKeyboard { .. } => 1, - Request::Key { .. } => 1, - Request::Modifiers { .. } => 1, - Request::Language { .. } => 1, - Request::TextDirection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 9 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CommitString { serial, text } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - ], - }, - Request::PreeditString { - serial, - text, - commit, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(commit.into()) - })), - ], - }, - Request::PreeditStyling { - index, - length, - style, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Uint(index), - Argument::Uint(length), - Argument::Uint(style), - ], - }, - Request::PreeditCursor { index } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Int(index),], - }, - Request::DeleteSurroundingText { index, length } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Int(index), Argument::Uint(length),], - }, - Request::CursorPosition { index, anchor } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Int(index), Argument::Int(anchor),], - }, - Request::ModifiersMap { map } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Array(Box::new(map)),], - }, - Request::Keysym { - serial, - time, - sym, - state, - modifiers, - } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![ - Argument::Uint(serial), - Argument::Uint(time), - Argument::Uint(sym), - Argument::Uint(state), - Argument::Uint(modifiers), - ], - }, - Request::GrabKeyboard {} => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::NewId(0),], - }, - Request::Key { - serial, - time, - key, - state, - } => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![ - Argument::Uint(serial), - Argument::Uint(time), - Argument::Uint(key), - Argument::Uint(state), - ], - }, - Request::Modifiers { - serial, - mods_depressed, - mods_latched, - mods_locked, - group, - } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![ - Argument::Uint(serial), - Argument::Uint(mods_depressed), - Argument::Uint(mods_latched), - Argument::Uint(mods_locked), - Argument::Uint(group), - ], - }, - Request::Language { serial, language } => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(language.into()) - })), - ], - }, - Request::TextDirection { serial, direction } => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![Argument::Uint(serial), Argument::Uint(direction),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CommitString { serial, text } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = ::std::ffi::CString::new(text).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(1, &mut _args_array) - } - Request::PreeditString { - serial, - text, - commit, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = ::std::ffi::CString::new(text).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - let _arg_2 = ::std::ffi::CString::new(commit).unwrap(); - _args_array[2].s = _arg_2.as_ptr(); - f(2, &mut _args_array) - } - Request::PreeditStyling { - index, - length, - style, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = index; - _args_array[1].u = length; - _args_array[2].u = style; - f(3, &mut _args_array) - } - Request::PreeditCursor { index } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = index; - f(4, &mut _args_array) - } - Request::DeleteSurroundingText { index, length } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = index; - _args_array[1].u = length; - f(5, &mut _args_array) - } - Request::CursorPosition { index, anchor } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = index; - _args_array[1].i = anchor; - f(6, &mut _args_array) - } - Request::ModifiersMap { map } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = wl_array { - size: map.len(), - alloc: map.capacity(), - data: map.as_ptr() as *mut _, - }; - _args_array[0].a = &_arg_0; - f(7, &mut _args_array) - } - Request::Keysym { - serial, - time, - sym, - state, - modifiers, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = time; - _args_array[2].u = sym; - _args_array[3].u = state; - _args_array[4].u = modifiers; - f(8, &mut _args_array) - } - Request::GrabKeyboard {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(9, &mut _args_array) - } - Request::Key { - serial, - time, - key, - state, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = time; - _args_array[2].u = key; - _args_array[3].u = state; - f(10, &mut _args_array) - } - Request::Modifiers { - serial, - mods_depressed, - mods_latched, - mods_locked, - group, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = mods_depressed; - _args_array[2].u = mods_latched; - _args_array[3].u = mods_locked; - _args_array[4].u = group; - f(11, &mut _args_array) - } - Request::Language { serial, language } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = ::std::ffi::CString::new(language).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(12, &mut _args_array) - } - Request::TextDirection { serial, direction } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = direction; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "surrounding text event\n\nThe plain surrounding text around the input position. Cursor is the\nposition in bytes within the surrounding text relative to the beginning\nof the text. Anchor is the position in bytes of the selection anchor\nwithin the surrounding text relative to the beginning of the text. If\nthere is no selected text then anchor is the same as cursor."] - SurroundingText { - text: String, - cursor: u32, - anchor: u32, - }, - #[doc = ""] - Reset, - #[doc = ""] - ContentType { hint: u32, purpose: u32 }, - #[doc = ""] - InvokeAction { button: u32, index: u32 }, - #[doc = ""] - CommitState { serial: u32 }, - #[doc = ""] - PreferredLanguage { language: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "reset", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "invoke_action", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "commit_state", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "preferred_language", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::SurroundingText { .. } => 0, - Event::Reset => 1, - Event::ContentType { .. } => 2, - Event::InvokeAction { .. } => 3, - Event::CommitState { .. } => 4, - Event::PreferredLanguage { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::SurroundingText { .. } => 1, - Event::Reset => 1, - Event::ContentType { .. } => 1, - Event::InvokeAction { .. } => 1, - Event::CommitState { .. } => 1, - Event::PreferredLanguage { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::SurroundingText { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - cursor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - anchor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Reset), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::ContentType { - hint: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - purpose: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::InvokeAction { - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::CommitState { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreferredLanguage { - language: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::SurroundingText { - text: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - cursor: _args[1].u, - anchor: _args[2].u, - }) - } - 1 => Ok(Event::Reset), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::ContentType { - hint: _args[0].u, - purpose: _args[1].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::InvokeAction { - button: _args[0].u, - index: _args[1].u, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::CommitState { serial: _args[0].u }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PreferredLanguage { - language: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodContextV1(Proxy); - impl AsRef> for ZwpInputMethodContextV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodContextV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodContextV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodContextV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodContextV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodContextV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_context_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_context_v1_interface } - } - } - impl ZwpInputMethodContextV1 { - #[doc = "This is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nThe text to commit could be either just a single character after a key\npress or the result of some composing (pre-edit). It could be also an\nempty text when some text should be removed (see\ndelete_surrounding_text) or when the input cursor should be moved (see\ncursor_position).\n\nAny previously set composing text will be removed."] - pub fn commit_string(&self, serial: u32, text: String) -> () { - let msg = Request::CommitString { - serial: serial, - text: text, - }; - self.0.send::(msg, None); - } - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nThe commit text can be used to replace the pre-edit text on reset (for\nexample on unfocus).\n\nPreviously sent preedit_style and preedit_cursor requests are also\nprocessed by the text_input."] - pub fn preedit_string(&self, serial: u32, text: String, commit: String) -> () { - let msg = Request::PreeditString { - serial: serial, - text: text, - commit: commit, - }; - self.0.send::(msg, None); - } - #[doc = "pre-edit styling\n\nSet the styling information on composing text. The style is applied for\nlength in bytes from index relative to the beginning of\nthe composing text (as byte offset). Multiple styles can\nbe applied to a composing text.\n\nThis request should be sent before sending a preedit_string request."] - pub fn preedit_styling(&self, index: u32, length: u32, style: u32) -> () { - let msg = Request::PreeditStyling { - index: index, - length: length, - style: style, - }; - self.0.send::(msg, None); - } - #[doc = "pre-edit cursor\n\nSet the cursor position inside the composing text (as byte offset)\nrelative to the start of the composing text.\n\nWhen index is negative no cursor should be displayed.\n\nThis request should be sent before sending a preedit_string request."] - pub fn preedit_cursor(&self, index: i32) -> () { - let msg = Request::PreeditCursor { index: index }; - self.0.send::(msg, None); - } - #[doc = "delete text\n\nRemove the surrounding text.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - pub fn delete_surrounding_text(&self, index: i32, length: u32) -> () { - let msg = Request::DeleteSurroundingText { - index: index, - length: length, - }; - self.0.send::(msg, None); - } - #[doc = "set cursor to a new position\n\nSet the cursor and anchor to a new position. Index is the new cursor\nposition in bytes (when >= 0 this is relative to the end of the inserted text,\notherwise it is relative to the beginning of the inserted text). Anchor is\nthe new anchor position in bytes (when >= 0 this is relative to the end of the\ninserted text, otherwise it is relative to the beginning of the inserted\ntext). When there should be no selected text, anchor should be the same\nas index.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - pub fn cursor_position(&self, index: i32, anchor: i32) -> () { - let msg = Request::CursorPosition { - index: index, - anchor: anchor, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn modifiers_map(&self, map: Vec) -> () { - let msg = Request::ModifiersMap { map: map }; - self.0.send::(msg, None); - } - #[doc = "keysym\n\nNotify when a key event was sent. Key events should not be used for\nnormal text input operations, which should be done with commit_string,\ndelete_surrounding_text, etc. The key event follows the wl_keyboard key\nevent convention. Sym is an XKB keysym, state is a wl_keyboard key_state."] - pub fn keysym(&self, serial: u32, time: u32, sym: u32, state: u32, modifiers: u32) -> () { - let msg = Request::Keysym { - serial: serial, - time: time, - sym: sym, - state: state, - modifiers: modifiers, - }; - self.0.send::(msg, None); - } - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages."] - pub fn grab_keyboard(&self) -> Main { - let msg = Request::GrabKeyboard {}; - self.0.send(msg, None).unwrap() - } - #[doc = "forward key event\n\nForward a wl_keyboard::key event to the client that was not processed\nby the input method itself. Should be used when filtering key events\nwith grab_keyboard. The arguments should be the ones from the\nwl_keyboard::key event.\n\nFor generating custom key events use the keysym request instead."] - pub fn key(&self, serial: u32, time: u32, key: u32, state: u32) -> () { - let msg = Request::Key { - serial: serial, - time: time, - key: key, - state: state, - }; - self.0.send::(msg, None); - } - #[doc = "forward modifiers event\n\nForward a wl_keyboard::modifiers event to the client that was not\nprocessed by the input method itself. Should be used when filtering\nkey events with grab_keyboard. The arguments should be the ones\nfrom the wl_keyboard::modifiers event."] - pub fn modifiers( - &self, - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - ) -> () { - let msg = Request::Modifiers { - serial: serial, - mods_depressed: mods_depressed, - mods_latched: mods_latched, - mods_locked: mods_locked, - group: group, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn language(&self, serial: u32, language: String) -> () { - let msg = Request::Language { - serial: serial, - language: language, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn text_direction(&self, serial: u32, direction: u32) -> () { - let msg = Request::TextDirection { - serial: serial, - direction: direction, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PREEDIT_STYLING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PREEDIT_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CURSOR_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MODIFIERS_MAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_KEYSYM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_KEYBOARD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_KEY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MODIFIERS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_LANGUAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_TEXT_DIRECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RESET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_INVOKE_ACTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_COMMIT_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREFERRED_LANGUAGE_SINCE: u32 = 1u32; - static mut zwp_input_method_context_v1_requests_grab_keyboard_types: [*const wl_interface; 1] = - [unsafe { &super::wl_keyboard::wl_keyboard_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_context_v1_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_string\0" as *const u8 as *const c_char, - signature: b"uss\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_styling\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_cursor\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"iu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cursor_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers_map\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"keysym\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab_keyboard\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_context_v1_requests_grab_keyboard_types as *const _ }, - }, - wl_message { - name: b"key\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"language\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"text_direction\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_context_v1_events: [wl_message; 6] = [ - wl_message { - name: b"surrounding_text\0" as *const u8 as *const c_char, - signature: b"suu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"reset\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"invoke_action\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_state\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preferred_language\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_context_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_method_context_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 14, - requests: unsafe { &zwp_input_method_context_v1_requests as *const _ }, - event_count: 6, - events: unsafe { &zwp_input_method_context_v1_events as *const _ }, - }; -} -#[doc = "input method\n\nAn input method object is responsible for composing text in response to\ninput from hardware or virtual keyboards. There is one input method\nobject per seat. On activate there is a new input method context object\ncreated which allows the input method to communicate with the text input."] -pub mod zwp_input_method_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "activate event\n\nA text input was activated. Creates an input method context object\nwhich allows communication with the text input."] - Activate { - id: Main, - }, - #[doc = "deactivate event\n\nThe text input corresponding to the context argument was deactivated.\nThe input method context should be destroyed after deactivation is\nhandled."] - Deactivate { - context: super::zwp_input_method_context_v1::ZwpInputMethodContextV1, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "activate", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "deactivate", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Activate { .. } => 0, - Event::Deactivate { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Activate { .. } => 1, - Event::Deactivate { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_input_method_context_v1::ZwpInputMethodContextV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Activate { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Deactivate { - context: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok (Event :: Activate { id : Main :: < super :: zwp_input_method_context_v1 :: ZwpInputMethodContextV1 > :: from_c_ptr (_args [0] . o as * mut _) , }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok( - Event::Deactivate { - context: Proxy::< - super::zwp_input_method_context_v1::ZwpInputMethodContextV1, - >::from_c_ptr(_args[0].o as *mut _) - .into(), - }, - ) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodV1(Proxy); - impl AsRef> for ZwpInputMethodV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_v1_interface } - } - } - impl ZwpInputMethodV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DEACTIVATE_SINCE: u32 = 1u32; - static mut zwp_input_method_v1_events_activate_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_input_method_context_v1::zwp_input_method_context_v1_interface - as *const wl_interface - }]; - static mut zwp_input_method_v1_events_deactivate_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_input_method_context_v1::zwp_input_method_context_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_v1_events: [wl_message; 2] = [ - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_v1_events_activate_types as *const _ }, - }, - wl_message { - name: b"deactivate\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_v1_events_deactivate_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_method_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 2, - events: unsafe { &zwp_input_method_v1_events as *const _ }, - }; -} -#[doc = "interface for implementing keyboards\n\nOnly one client can bind this interface at a time."] -pub mod zwp_input_panel_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = ""] - GetInputPanelSurface { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "get_input_panel_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetInputPanelSurface { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetInputPanelSurface { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_input_panel_surface_v1::ZwpInputPanelSurfaceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetInputPanelSurface { surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetInputPanelSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputPanelV1(Proxy); - impl AsRef> for ZwpInputPanelV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputPanelV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputPanelV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputPanelV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputPanelV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputPanelV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_panel_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_panel_v1_interface } - } - } - impl ZwpInputPanelV1 { - #[doc = ""] - pub fn get_input_panel_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetInputPanelSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INPUT_PANEL_SURFACE_SINCE: u32 = 1u32; - static mut zwp_input_panel_v1_requests_get_input_panel_surface_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_panel_surface_v1::zwp_input_panel_surface_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_panel_v1_requests: [wl_message; 1] = [wl_message { - name: b"get_input_panel_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_panel_v1_requests_get_input_panel_surface_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_panel_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_panel_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_panel_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -pub mod zwp_input_panel_surface_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Position { - CenterBottom = 0, - } - impl Position { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Position::CenterBottom), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the surface type as a keyboard\n\nSet the input_panel_surface type to keyboard.\n\nA keyboard surface is only shown when a text input is active."] - SetToplevel { - output: super::wl_output::WlOutput, - position: u32, - }, - #[doc = "set the surface type as an overlay panel\n\nSet the input_panel_surface to be an overlay panel.\n\nThis is shown near the input cursor above the application window when\na text input is active."] - SetOverlayPanel, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_toplevel", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_overlay_panel", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetToplevel { .. } => 0, - Request::SetOverlayPanel => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetToplevel { .. } => 1, - Request::SetOverlayPanel => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetToplevel { output, position } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(output.as_ref().id()), - Argument::Uint(position), - ], - }, - Request::SetOverlayPanel => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetToplevel { output, position } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output.as_ref().c_ptr() as *mut _; - _args_array[1].u = position; - f(0, &mut _args_array) - } - Request::SetOverlayPanel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputPanelSurfaceV1(Proxy); - impl AsRef> for ZwpInputPanelSurfaceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputPanelSurfaceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputPanelSurfaceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputPanelSurfaceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputPanelSurfaceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputPanelSurfaceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_panel_surface_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_panel_surface_v1_interface } - } - } - impl ZwpInputPanelSurfaceV1 { - #[doc = "set the surface type as a keyboard\n\nSet the input_panel_surface type to keyboard.\n\nA keyboard surface is only shown when a text input is active."] - pub fn set_toplevel(&self, output: &super::wl_output::WlOutput, position: u32) -> () { - let msg = Request::SetToplevel { - output: output.clone(), - position: position, - }; - self.0.send::(msg, None); - } - #[doc = "set the surface type as an overlay panel\n\nSet the input_panel_surface to be an overlay panel.\n\nThis is shown near the input cursor above the application window when\na text input is active."] - pub fn set_overlay_panel(&self) -> () { - let msg = Request::SetOverlayPanel; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OVERLAY_PANEL_SINCE: u32 = 1u32; - static mut zwp_input_panel_surface_v1_requests_set_toplevel_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_panel_surface_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_toplevel\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_panel_surface_v1_requests_set_toplevel_types as *const _ }, - }, - wl_message { - name: b"set_overlay_panel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_panel_surface_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_panel_surface_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_input_panel_surface_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs deleted file mode 100644 index 241edc1..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs +++ /dev/null @@ -1,603 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "context object for high-resolution input timestamps\n\nA global interface used for requesting high-resolution timestamps\nfor input events."] -pub mod zwp_input_timestamps_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the input timestamps manager object\n\nInforms the server that the client will no longer be using this\nprotocol object. Existing objects created by this object are not\naffected.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "subscribe to high-resolution keyboard timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_keyboard events that\ncarry a timestamp.\n\nIf the associated wl_keyboard object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - GetKeyboardTimestamps { - keyboard: super::wl_keyboard::WlKeyboard, - }, - #[doc = "subscribe to high-resolution pointer timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_pointer events that\ncarry a timestamp.\n\nIf the associated wl_pointer object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - GetPointerTimestamps { - pointer: super::wl_pointer::WlPointer, - }, - #[doc = "subscribe to high-resolution touch timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_touch events that\ncarry a timestamp.\n\nIf the associated wl_touch object becomes invalid, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - GetTouchTimestamps { touch: super::wl_touch::WlTouch }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_keyboard_timestamps", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_pointer_timestamps", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_touch_timestamps", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetKeyboardTimestamps { .. } => 1, - Request::GetPointerTimestamps { .. } => 2, - Request::GetTouchTimestamps { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetKeyboardTimestamps { .. } => 1, - Request::GetPointerTimestamps { .. } => 1, - Request::GetTouchTimestamps { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_input_timestamps_v1::ZwpInputTimestampsV1, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_input_timestamps_v1::ZwpInputTimestampsV1, - >(version, meta.child())), - 3 => Some(Object::from_interface::< - super::zwp_input_timestamps_v1::ZwpInputTimestampsV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetKeyboardTimestamps { keyboard } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(keyboard.as_ref().id()),], - }, - Request::GetPointerTimestamps { pointer } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - Request::GetTouchTimestamps { touch } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::NewId(0), Argument::Object(touch.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetKeyboardTimestamps { keyboard } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = keyboard.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::GetPointerTimestamps { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::GetTouchTimestamps { touch } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = touch.as_ref().c_ptr() as *mut _; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputTimestampsManagerV1(Proxy); - impl AsRef> for ZwpInputTimestampsManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputTimestampsManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputTimestampsManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputTimestampsManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputTimestampsManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputTimestampsManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_timestamps_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_timestamps_manager_v1_interface } - } - } - impl ZwpInputTimestampsManagerV1 { - #[doc = "destroy the input timestamps manager object\n\nInforms the server that the client will no longer be using this\nprotocol object. Existing objects created by this object are not\naffected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "subscribe to high-resolution keyboard timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_keyboard events that\ncarry a timestamp.\n\nIf the associated wl_keyboard object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - pub fn get_keyboard_timestamps( - &self, - keyboard: &super::wl_keyboard::WlKeyboard, - ) -> Main { - let msg = Request::GetKeyboardTimestamps { - keyboard: keyboard.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "subscribe to high-resolution pointer timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_pointer events that\ncarry a timestamp.\n\nIf the associated wl_pointer object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - pub fn get_pointer_timestamps( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetPointerTimestamps { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "subscribe to high-resolution touch timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_touch events that\ncarry a timestamp.\n\nIf the associated wl_touch object becomes invalid, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - pub fn get_touch_timestamps( - &self, - touch: &super::wl_touch::WlTouch, - ) -> Main { - let msg = Request::GetTouchTimestamps { - touch: touch.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_KEYBOARD_TIMESTAMPS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POINTER_TIMESTAMPS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOUCH_TIMESTAMPS_SINCE: u32 = 1u32; - static mut zwp_input_timestamps_manager_v1_requests_get_keyboard_timestamps_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_timestamps_v1::zwp_input_timestamps_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_keyboard::wl_keyboard_interface as *const wl_interface }, - ]; - static mut zwp_input_timestamps_manager_v1_requests_get_pointer_timestamps_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_timestamps_v1::zwp_input_timestamps_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - static mut zwp_input_timestamps_manager_v1_requests_get_touch_timestamps_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_timestamps_v1::zwp_input_timestamps_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_touch::wl_touch_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_timestamps_manager_v1_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_keyboard_timestamps\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_timestamps_manager_v1_requests_get_keyboard_timestamps_types as *const _ - }, - }, - wl_message { - name: b"get_pointer_timestamps\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_timestamps_manager_v1_requests_get_pointer_timestamps_types as *const _ - }, - }, - wl_message { - name: b"get_touch_timestamps\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_timestamps_manager_v1_requests_get_touch_timestamps_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_timestamps_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_timestamps_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 4, - requests: unsafe { &zwp_input_timestamps_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "context object for input timestamps\n\nProvides high-resolution timestamp events for a set of subscribed input\nevents. The set of subscribed input events is determined by the\nzwp_input_timestamps_manager_v1 request used to create this object."] -pub mod zwp_input_timestamps_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the input timestamps object\n\nInforms the server that the client will no longer be using this\nprotocol object. After the server processes the request, no more\ntimestamp events will be emitted.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "high-resolution timestamp event\n\nThe timestamp event is associated with the first subsequent input event\ncarrying a timestamp which belongs to the set of input events this\nobject is subscribed to.\n\nThe timestamp provided by this event is a high-resolution version of\nthe timestamp argument of the associated input event. The provided\ntimestamp is in the same clock domain and is at least as accurate as\nthe associated input event timestamp.\n\nThe timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples,\neach component being an unsigned 32-bit value. Whole seconds are in\ntv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo,\nand the additional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999]."] - Timestamp { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "timestamp", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Timestamp { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Timestamp { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Timestamp { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Timestamp { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputTimestampsV1(Proxy); - impl AsRef> for ZwpInputTimestampsV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputTimestampsV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputTimestampsV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputTimestampsV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputTimestampsV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputTimestampsV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_timestamps_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_timestamps_v1_interface } - } - } - impl ZwpInputTimestampsV1 { - #[doc = "destroy the input timestamps object\n\nInforms the server that the client will no longer be using this\nprotocol object. After the server processes the request, no more\ntimestamp events will be emitted.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TIMESTAMP_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_timestamps_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_timestamps_v1_events: [wl_message; 1] = [wl_message { - name: b"timestamp\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_timestamps_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_timestamps_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_timestamps_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_input_timestamps_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs deleted file mode 100644 index 30c8c41..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs +++ /dev/null @@ -1,511 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "context object for keyboard grab_manager\n\nA global interface used for inhibiting the compositor keyboard shortcuts."] -pub mod zwp_keyboard_shortcuts_inhibit_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the shortcuts are already inhibited for this surface"] - AlreadyInhibited = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyInhibited), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nDestroy the keyboard shortcuts inhibitor manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new keyboard shortcuts inhibitor object\n\nCreate a new keyboard shortcuts inhibitor object associated with\nthe given surface for the given seat.\n\nIf shortcuts are already inhibited for the specified seat and surface,\na protocol error \"already_inhibited\" is raised by the compositor."] - InhibitShortcuts { - surface: super::wl_surface::WlSurface, - seat: super::wl_seat::WlSeat, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "inhibit_shortcuts", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::InhibitShortcuts { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::InhibitShortcuts { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_keyboard_shortcuts_inhibitor_v1::ZwpKeyboardShortcutsInhibitorV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::InhibitShortcuts { surface, seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(seat.as_ref().id()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::InhibitShortcuts { surface, seat } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpKeyboardShortcutsInhibitManagerV1(Proxy); - impl AsRef> for ZwpKeyboardShortcutsInhibitManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpKeyboardShortcutsInhibitManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpKeyboardShortcutsInhibitManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpKeyboardShortcutsInhibitManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpKeyboardShortcutsInhibitManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpKeyboardShortcutsInhibitManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_keyboard_shortcuts_inhibit_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_keyboard_shortcuts_inhibit_manager_v1_interface } - } - } - impl ZwpKeyboardShortcutsInhibitManagerV1 { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nDestroy the keyboard shortcuts inhibitor manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new keyboard shortcuts inhibitor object\n\nCreate a new keyboard shortcuts inhibitor object associated with\nthe given surface for the given seat.\n\nIf shortcuts are already inhibited for the specified seat and surface,\na protocol error \"already_inhibited\" is raised by the compositor."] - pub fn inhibit_shortcuts( - &self, - surface: &super::wl_surface::WlSurface, - seat: &super::wl_seat::WlSeat, - ) -> Main - { - let msg = Request::InhibitShortcuts { - surface: surface.clone(), - seat: seat.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_INHIBIT_SHORTCUTS_SINCE: u32 = 1u32; - static mut zwp_keyboard_shortcuts_inhibit_manager_v1_requests_inhibit_shortcuts_types: - [*const wl_interface; 3] = [ - unsafe { - & super :: zwp_keyboard_shortcuts_inhibitor_v1 :: zwp_keyboard_shortcuts_inhibitor_v1_interface as * const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibit_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"inhibit_shortcuts\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_keyboard_shortcuts_inhibit_manager_v1_requests_inhibit_shortcuts_types - as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibit_manager_v1_interface: wl_interface = - wl_interface { - name: b"zwp_keyboard_shortcuts_inhibit_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_keyboard_shortcuts_inhibit_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "context object for keyboard shortcuts inhibitor\n\nA keyboard shortcuts inhibitor instructs the compositor to ignore\nits own keyboard shortcuts when the associated surface has keyboard\nfocus. As a result, when the surface has keyboard focus on the given\nseat, it will receive all key events originating from the specified\nseat, even those which would normally be caught by the compositor for\nits own shortcuts.\n\nThe Wayland compositor is however under no obligation to disable\nall of its shortcuts, and may keep some special key combo for its own\nuse, including but not limited to one allowing the user to forcibly\nrestore normal keyboard events routing in the case of an unwilling\nclient. The compositor may also use the same key combo to reactivate\nan existing shortcut inhibitor that was previously deactivated on\nuser request.\n\nWhen the compositor restores its own keyboard shortcuts, an\n\"inactive\" event is emitted to notify the client that the keyboard\nshortcuts inhibitor is not effectively active for the surface and\nseat any more, and the client should not expect to receive all\nkeyboard events.\n\nWhen the keyboard shortcuts inhibitor is inactive, the client has\nno way to forcibly reactivate the keyboard shortcuts inhibitor.\n\nThe user can chose to re-enable a previously deactivated keyboard\nshortcuts inhibitor using any mechanism the compositor may offer,\nin which case the compositor will send an \"active\" event to notify\nthe client.\n\nIf the surface is destroyed, unmapped, or loses the seat's keyboard\nfocus, the keyboard shortcuts inhibitor becomes irrelevant and the\ncompositor will restore its own keyboard shortcuts but no \"inactive\"\nevent is emitted in this case."] -pub mod zwp_keyboard_shortcuts_inhibitor_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nRemove the keyboard shortcuts inhibitor from the associated wl_surface.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "shortcuts are inhibited\n\nThis event indicates that the shortcut inhibitor is active.\n\nThe compositor sends this event every time compositor shortcuts\nare inhibited on behalf of the surface. When active, the client\nmay receive input events normally reserved by the compositor\n(see zwp_keyboard_shortcuts_inhibitor_v1).\n\nThis occurs typically when the initial request \"inhibit_shortcuts\"\nfirst becomes active or when the user instructs the compositor to\nre-enable and existing shortcuts inhibitor using any mechanism\noffered by the compositor."] - Active, - #[doc = "shortcuts are restored\n\nThis event indicates that the shortcuts inhibitor is inactive,\nnormal shortcuts processing is restored by the compositor."] - Inactive, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "active", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "inactive", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Active => 0, - Event::Inactive => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Active => 1, - Event::Inactive => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Active), - 1 => Ok(Event::Inactive), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Active), - 1 => Ok(Event::Inactive), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpKeyboardShortcutsInhibitorV1(Proxy); - impl AsRef> for ZwpKeyboardShortcutsInhibitorV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpKeyboardShortcutsInhibitorV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpKeyboardShortcutsInhibitorV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpKeyboardShortcutsInhibitorV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpKeyboardShortcutsInhibitorV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpKeyboardShortcutsInhibitorV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_keyboard_shortcuts_inhibitor_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_keyboard_shortcuts_inhibitor_v1_interface } - } - } - impl ZwpKeyboardShortcutsInhibitorV1 { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nRemove the keyboard shortcuts inhibitor from the associated wl_surface.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_INACTIVE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibitor_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibitor_v1_events: [wl_message; 2] = [ - wl_message { - name: b"active\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"inactive\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibitor_v1_interface: wl_interface = wl_interface { - name: b"zwp_keyboard_shortcuts_inhibitor_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_keyboard_shortcuts_inhibitor_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_keyboard_shortcuts_inhibitor_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs deleted file mode 100644 index b5e2fcf..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs +++ /dev/null @@ -1,891 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 6] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "factory for creating dmabuf-based wl_buffers\n\nFollowing the interfaces from:\nhttps://www.khronos.org/registry/egl/extensions/EXT/EGL_EXT_image_dma_buf_import.txt\nhttps://www.khronos.org/registry/EGL/extensions/EXT/EGL_EXT_image_dma_buf_import_modifiers.txt\nand the Linux DRM sub-system's AddFb2 ioctl.\n\nThis interface offers ways to create generic dmabuf-based\nwl_buffers. Immediately after a client binds to this interface,\nthe set of supported formats and format modifiers is sent with\n'format' and 'modifier' events.\n\nThe following are required from clients:\n\n- Clients must ensure that either all data in the dma-buf is\ncoherent for all subsequent read access or that coherency is\ncorrectly handled by the underlying kernel-side dma-buf\nimplementation.\n\n- Don't make any more attachments after sending the buffer to the\ncompositor. Making more attachments later increases the risk of\nthe compositor not being able to use (re-import) an existing\ndmabuf-based wl_buffer.\n\nThe underlying graphics stack must ensure the following:\n\n- The dmabuf file descriptors relayed to the server will stay valid\nfor the whole lifetime of the wl_buffer. This means the server may\nat any time use those fds to import the dmabuf into any kernel\nsub-system that might accept it.\n\nHowever, when the underlying graphics stack fails to deliver the\npromise, because of e.g. a device hot-unplug which raises internal\nerrors, after the wl_buffer has been successfully created the\ncompositor must not raise protocol errors to the client when dmabuf\nimport later fails.\n\nTo create a wl_buffer from one or more dmabufs, a client creates a\nzwp_linux_dmabuf_params_v1 object with a zwp_linux_dmabuf_v1.create_params\nrequest. All planes required by the intended format are added with\nthe 'add' request. Finally, a 'create' or 'create_immed' request is\nissued, which has the following outcome depending on the import success.\n\nThe 'create' request,\n- on success, triggers a 'created' event which provides the final\nwl_buffer to the client.\n- on failure, triggers a 'failed' event to convey that the server\ncannot use the dmabufs received from the client.\n\nFor the 'create_immed' request,\n- on success, the server immediately imports the added dmabufs to\ncreate a wl_buffer. No event is sent from the server in this case.\n- on failure, the server can choose to either:\n- terminate the client by raising a fatal error.\n- mark the wl_buffer as failed, and send a 'failed' event to the\nclient. If the client uses a failed wl_buffer as an argument to any\nrequest, the behaviour is compositor implementation-defined.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_linux_dmabuf_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind the factory\n\nObjects created through this interface, especially wl_buffers, will\nremain valid.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a temporary object for buffer parameters\n\nThis temporary object is used to collect multiple dmabuf handles into\na single batch to create a wl_buffer. It can only be used once and\nshould be destroyed after a 'created' or 'failed' event has been\nreceived."] - CreateParams {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_params", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreateParams { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreateParams { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_linux_buffer_params_v1::ZwpLinuxBufferParamsV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreateParams {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreateParams {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "supported buffer format\n\nThis event advertises one buffer format that the server supports.\nAll the supported formats are advertised once when the client\nbinds to this interface. A roundtrip after binding guarantees\nthat the client has received all supported formats.\n\nFor the definition of the format codes, see the\nzwp_linux_buffer_params_v1::create request.\n\nWarning: the 'format' event is likely to be deprecated and replaced\nwith the 'modifier' event introduced in zwp_linux_dmabuf_v1\nversion 3, described below. Please refrain from using the information\nreceived from this event."] - Format { format: u32 }, - #[doc = "supported buffer format modifier\n\nThis event advertises the formats that the server supports, along with\nthe modifiers supported for each format. All the supported modifiers\nfor all the supported formats are advertised once when the client\nbinds to this interface. A roundtrip after binding guarantees that\nthe client has received all supported format-modifier pairs.\n\nFor legacy support, DRM_FORMAT_MOD_INVALID (that is, modifier_hi ==\n0x00ffffff and modifier_lo == 0xffffffff) is allowed in this event.\nIt indicates that the server can support the format with an implicit\nmodifier. When a plane has DRM_FORMAT_MOD_INVALID as its modifier, it\nis as if no explicit modifier is specified. The effective modifier\nwill be derived from the dmabuf.\n\nA compositor that sends valid modifiers and DRM_FORMAT_MOD_INVALID for\na given format supports both explicit modifiers and implicit modifiers.\n\nFor the definition of the format and modifier codes, see the\nzwp_linux_buffer_params_v1::create and zwp_linux_buffer_params_v1::add\nrequests.\n\nOnly available since version 3 of the interface"] - Modifier { - format: u32, - modifier_hi: u32, - modifier_lo: u32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "format", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "modifier", - since: 3, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Format { .. } => 0, - Event::Modifier { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Format { .. } => 1, - Event::Modifier { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Format { - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modifier { - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - modifier_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - modifier_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Format { format: _args[0].u }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Modifier { - format: _args[0].u, - modifier_hi: _args[1].u, - modifier_lo: _args[2].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxDmabufV1(Proxy); - impl AsRef> for ZwpLinuxDmabufV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxDmabufV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxDmabufV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxDmabufV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxDmabufV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxDmabufV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_dmabuf_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_dmabuf_v1_interface } - } - } - impl ZwpLinuxDmabufV1 { - #[doc = "unbind the factory\n\nObjects created through this interface, especially wl_buffers, will\nremain valid.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a temporary object for buffer parameters\n\nThis temporary object is used to collect multiple dmabuf handles into\na single batch to create a wl_buffer. It can only be used once and\nshould be destroyed after a 'created' or 'failed' event has been\nreceived."] - pub fn create_params( - &self, - ) -> Main { - let msg = Request::CreateParams {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_PARAMS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FORMAT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIER_SINCE: u32 = 3u32; - static mut zwp_linux_dmabuf_v1_requests_create_params_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_linux_buffer_params_v1::zwp_linux_buffer_params_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_dmabuf_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_params\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_linux_dmabuf_v1_requests_create_params_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_dmabuf_v1_events: [wl_message; 2] = [ - wl_message { - name: b"format\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifier\0" as *const u8 as *const c_char, - signature: b"3uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_dmabuf_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_dmabuf_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 2, - requests: unsafe { &zwp_linux_dmabuf_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_linux_dmabuf_v1_events as *const _ }, - }; -} -#[doc = "parameters for creating a dmabuf-based wl_buffer\n\nThis temporary object is a collection of dmabufs and other\nparameters that together form a single logical buffer. The temporary\nobject may eventually create one wl_buffer unless cancelled by\ndestroying it before requesting 'create'.\n\nSingle-planar formats only require one dmabuf, however\nmulti-planar formats may require more than one dmabuf. For all\nformats, an 'add' request must be called once per plane (even if the\nunderlying dmabuf fd is identical).\n\nYou must use consecutive plane indices ('plane_idx' argument for 'add')\nfrom zero to the number of planes used by the drm_fourcc format code.\nAll planes required by the format must be given exactly once, but can\nbe given in any order. Each plane index can be set only once."] -pub mod zwp_linux_buffer_params_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the dmabuf_batch object has already been used to create a wl_buffer"] - AlreadyUsed = 0, - #[doc = "plane index out of bounds"] - PlaneIdx = 1, - #[doc = "the plane index was already set"] - PlaneSet = 2, - #[doc = "missing or too many planes to create a buffer"] - Incomplete = 3, - #[doc = "format not supported"] - InvalidFormat = 4, - #[doc = "invalid width or height"] - InvalidDimensions = 5, - #[doc = "offset + stride * height goes out of dmabuf bounds"] - OutOfBounds = 6, - #[doc = "invalid wl_buffer resulted from importing dmabufs via the create_immed request on given buffer_params"] - InvalidWlBuffer = 7, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyUsed), - 1 => Some(Error::PlaneIdx), - 2 => Some(Error::PlaneSet), - 3 => Some(Error::Incomplete), - 4 => Some(Error::InvalidFormat), - 5 => Some(Error::InvalidDimensions), - 6 => Some(Error::OutOfBounds), - 7 => Some(Error::InvalidWlBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Flags : u32 { # [doc = "contents are y-inverted"] const YInvert = 1 ; # [doc = "content is interlaced"] const Interlaced = 2 ; # [doc = "bottom field first"] const BottomFirst = 4 ; } } - impl Flags { - pub fn from_raw(n: u32) -> Option { - Some(Flags::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "delete this object, used or not\n\nCleans up the temporary data sent to the server for dmabuf-based\nwl_buffer creation.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "add a dmabuf to the temporary set\n\nThis request adds one dmabuf to the set in this\nzwp_linux_buffer_params_v1.\n\nThe 64-bit unsigned value combined from modifier_hi and modifier_lo\nis the dmabuf layout modifier. DRM AddFB2 ioctl calls this the\nfb modifier, which is defined in drm_mode.h of Linux UAPI.\nThis is an opaque token. Drivers use this token to express tiling,\ncompression, etc. driver-specific modifications to the base format\ndefined by the DRM fourcc code.\n\nWarning: It should be an error if the format/modifier pair was not\nadvertised with the modifier event. This is not enforced yet because\nsome implementations always accept DRM_FORMAT_MOD_INVALID. Also\nversion 2 of this protocol does not have the modifier event.\n\nThis request raises the PLANE_IDX error if plane_idx is too large.\nThe error PLANE_SET is raised if attempting to set a plane that\nwas already set."] - Add { - fd: ::std::os::unix::io::RawFd, - plane_idx: u32, - offset: u32, - stride: u32, - modifier_hi: u32, - modifier_lo: u32, - }, - #[doc = "create a wl_buffer from the given dmabufs\n\nThis asks for creation of a wl_buffer from the added dmabuf\nbuffers. The wl_buffer is not created immediately but returned via\nthe 'created' event if the dmabuf sharing succeeds. The sharing\nmay fail at runtime for reasons a client cannot predict, in\nwhich case the 'failed' event is triggered.\n\nThe 'format' argument is a DRM_FORMAT code, as defined by the\nlibdrm's drm_fourcc.h. The Linux kernel's DRM sub-system is the\nauthoritative source on how the format codes should work.\n\nThe 'flags' is a bitfield of the flags defined in enum \"flags\".\n'y_invert' means the that the image needs to be y-flipped.\n\nFlag 'interlaced' means that the frame in the buffer is not\nprogressive as usual, but interlaced. An interlaced buffer as\nsupported here must always contain both top and bottom fields.\nThe top field always begins on the first pixel row. The temporal\nordering between the two fields is top field first, unless\n'bottom_first' is specified. It is undefined whether 'bottom_first'\nis ignored if 'interlaced' is not set.\n\nThis protocol does not convey any information about field rate,\nduration, or timing, other than the relative ordering between the\ntwo fields in one buffer. A compositor may have to estimate the\nintended field rate from the incoming buffer rate. It is undefined\nwhether the time of receiving wl_surface.commit with a new buffer\nattached, applying the wl_surface state, wl_surface.frame callback\ntrigger, presentation, or any other point in the compositor cycle\nis used to measure the frame or field times. There is no support\nfor detecting missed or late frames/fields/buffers either, and\nthere is no support whatsoever for cooperating with interlaced\ncompositor output.\n\nThe composited image quality resulting from the use of interlaced\nbuffers is explicitly undefined. A compositor may use elaborate\nhardware features or software to deinterlace and create progressive\noutput frames from a sequence of interlaced input buffers, or it\nmay produce substandard image quality. However, compositors that\ncannot guarantee reasonable image quality in all cases are recommended\nto just reject all interlaced buffers.\n\nAny argument errors, including non-positive width or height,\nmismatch between the number of planes and the format, bad\nformat, bad offset or stride, may be indicated by fatal protocol\nerrors: INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS,\nOUT_OF_BOUNDS.\n\nDmabuf import errors in the server that are not obvious client\nbugs are returned via the 'failed' event as non-fatal. This\nallows attempting dmabuf sharing and falling back in the client\nif it fails.\n\nThis request can be sent only once in the object's lifetime, after\nwhich the only legal request is destroy. This object should be\ndestroyed after issuing a 'create' request. Attempting to use this\nobject after issuing 'create' raises ALREADY_USED protocol error.\n\nIt is not mandatory to issue 'create'. If a client wants to\ncancel the buffer creation, it can just destroy this object."] - Create { - width: i32, - height: i32, - format: u32, - flags: Flags, - }, - #[doc = "immediately create a wl_buffer from the given dmabufs\n\nThis asks for immediate creation of a wl_buffer by importing the\nadded dmabufs.\n\nIn case of import success, no event is sent from the server, and the\nwl_buffer is ready to be used by the client.\n\nUpon import failure, either of the following may happen, as seen fit\nby the implementation:\n- the client is terminated with one of the following fatal protocol\nerrors:\n- INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS, OUT_OF_BOUNDS,\nin case of argument errors such as mismatch between the number\nof planes and the format, bad format, non-positive width or\nheight, or bad offset or stride.\n- INVALID_WL_BUFFER, in case the cause for failure is unknown or\nplaform specific.\n- the server creates an invalid wl_buffer, marks it as failed and\nsends a 'failed' event to the client. The result of using this\ninvalid wl_buffer as an argument in any request by the client is\ndefined by the compositor implementation.\n\nThis takes the same arguments as a 'create' request, and obeys the\nsame restrictions.\n\nOnly available since version 2 of the interface"] - CreateImmed { - width: i32, - height: i32, - format: u32, - flags: Flags, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "add", - since: 1, - signature: &[ - super::ArgumentType::Fd, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "create", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "create_immed", - since: 2, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Add { .. } => 1, - Request::Create { .. } => 2, - Request::CreateImmed { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Add { .. } => 1, - Request::Create { .. } => 1, - Request::CreateImmed { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 3 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Add { - fd, - plane_idx, - offset, - stride, - modifier_hi, - modifier_lo, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Fd(fd), - Argument::Uint(plane_idx), - Argument::Uint(offset), - Argument::Uint(stride), - Argument::Uint(modifier_hi), - Argument::Uint(modifier_lo), - ], - }, - Request::Create { - width, - height, - format, - flags, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(width), - Argument::Int(height), - Argument::Uint(format), - Argument::Uint(flags.to_raw()), - ], - }, - Request::CreateImmed { - width, - height, - format, - flags, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::NewId(0), - Argument::Int(width), - Argument::Int(height), - Argument::Uint(format), - Argument::Uint(flags.to_raw()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Add { - fd, - plane_idx, - offset, - stride, - modifier_hi, - modifier_lo, - } => { - let mut _args_array: [wl_argument; 6] = unsafe { ::std::mem::zeroed() }; - _args_array[0].h = fd; - _args_array[1].u = plane_idx; - _args_array[2].u = offset; - _args_array[3].u = stride; - _args_array[4].u = modifier_hi; - _args_array[5].u = modifier_lo; - f(1, &mut _args_array) - } - Request::Create { - width, - height, - format, - flags, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - _args_array[2].u = format; - _args_array[3].u = flags.to_raw(); - f(2, &mut _args_array) - } - Request::CreateImmed { - width, - height, - format, - flags, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = width; - _args_array[2].i = height; - _args_array[3].u = format; - _args_array[4].u = flags.to_raw(); - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "buffer creation succeeded\n\nThis event indicates that the attempted buffer creation was\nsuccessful. It provides the new wl_buffer referencing the dmabuf(s).\n\nUpon receiving this event, the client should destroy the\nzlinux_dmabuf_params object."] - Created { - buffer: Main, - }, - #[doc = "buffer creation failed\n\nThis event indicates that the attempted buffer creation has\nfailed. It usually means that one of the dmabuf constraints\nhas not been fulfilled.\n\nUpon receiving this event, the client should destroy the\nzlinux_buffer_params object."] - Failed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "created", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Created { .. } => 0, - Event::Failed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Created { .. } => 1, - Event::Failed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Created { - buffer: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Failed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Created { - buffer: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => Ok(Event::Failed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxBufferParamsV1(Proxy); - impl AsRef> for ZwpLinuxBufferParamsV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxBufferParamsV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxBufferParamsV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxBufferParamsV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxBufferParamsV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxBufferParamsV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_buffer_params_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_buffer_params_v1_interface } - } - } - impl ZwpLinuxBufferParamsV1 { - #[doc = "delete this object, used or not\n\nCleans up the temporary data sent to the server for dmabuf-based\nwl_buffer creation.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "add a dmabuf to the temporary set\n\nThis request adds one dmabuf to the set in this\nzwp_linux_buffer_params_v1.\n\nThe 64-bit unsigned value combined from modifier_hi and modifier_lo\nis the dmabuf layout modifier. DRM AddFB2 ioctl calls this the\nfb modifier, which is defined in drm_mode.h of Linux UAPI.\nThis is an opaque token. Drivers use this token to express tiling,\ncompression, etc. driver-specific modifications to the base format\ndefined by the DRM fourcc code.\n\nWarning: It should be an error if the format/modifier pair was not\nadvertised with the modifier event. This is not enforced yet because\nsome implementations always accept DRM_FORMAT_MOD_INVALID. Also\nversion 2 of this protocol does not have the modifier event.\n\nThis request raises the PLANE_IDX error if plane_idx is too large.\nThe error PLANE_SET is raised if attempting to set a plane that\nwas already set."] - pub fn add( - &self, - fd: ::std::os::unix::io::RawFd, - plane_idx: u32, - offset: u32, - stride: u32, - modifier_hi: u32, - modifier_lo: u32, - ) -> () { - let msg = Request::Add { - fd: fd, - plane_idx: plane_idx, - offset: offset, - stride: stride, - modifier_hi: modifier_hi, - modifier_lo: modifier_lo, - }; - self.0.send::(msg, None); - } - #[doc = "create a wl_buffer from the given dmabufs\n\nThis asks for creation of a wl_buffer from the added dmabuf\nbuffers. The wl_buffer is not created immediately but returned via\nthe 'created' event if the dmabuf sharing succeeds. The sharing\nmay fail at runtime for reasons a client cannot predict, in\nwhich case the 'failed' event is triggered.\n\nThe 'format' argument is a DRM_FORMAT code, as defined by the\nlibdrm's drm_fourcc.h. The Linux kernel's DRM sub-system is the\nauthoritative source on how the format codes should work.\n\nThe 'flags' is a bitfield of the flags defined in enum \"flags\".\n'y_invert' means the that the image needs to be y-flipped.\n\nFlag 'interlaced' means that the frame in the buffer is not\nprogressive as usual, but interlaced. An interlaced buffer as\nsupported here must always contain both top and bottom fields.\nThe top field always begins on the first pixel row. The temporal\nordering between the two fields is top field first, unless\n'bottom_first' is specified. It is undefined whether 'bottom_first'\nis ignored if 'interlaced' is not set.\n\nThis protocol does not convey any information about field rate,\nduration, or timing, other than the relative ordering between the\ntwo fields in one buffer. A compositor may have to estimate the\nintended field rate from the incoming buffer rate. It is undefined\nwhether the time of receiving wl_surface.commit with a new buffer\nattached, applying the wl_surface state, wl_surface.frame callback\ntrigger, presentation, or any other point in the compositor cycle\nis used to measure the frame or field times. There is no support\nfor detecting missed or late frames/fields/buffers either, and\nthere is no support whatsoever for cooperating with interlaced\ncompositor output.\n\nThe composited image quality resulting from the use of interlaced\nbuffers is explicitly undefined. A compositor may use elaborate\nhardware features or software to deinterlace and create progressive\noutput frames from a sequence of interlaced input buffers, or it\nmay produce substandard image quality. However, compositors that\ncannot guarantee reasonable image quality in all cases are recommended\nto just reject all interlaced buffers.\n\nAny argument errors, including non-positive width or height,\nmismatch between the number of planes and the format, bad\nformat, bad offset or stride, may be indicated by fatal protocol\nerrors: INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS,\nOUT_OF_BOUNDS.\n\nDmabuf import errors in the server that are not obvious client\nbugs are returned via the 'failed' event as non-fatal. This\nallows attempting dmabuf sharing and falling back in the client\nif it fails.\n\nThis request can be sent only once in the object's lifetime, after\nwhich the only legal request is destroy. This object should be\ndestroyed after issuing a 'create' request. Attempting to use this\nobject after issuing 'create' raises ALREADY_USED protocol error.\n\nIt is not mandatory to issue 'create'. If a client wants to\ncancel the buffer creation, it can just destroy this object."] - pub fn create(&self, width: i32, height: i32, format: u32, flags: Flags) -> () { - let msg = Request::Create { - width: width, - height: height, - format: format, - flags: flags, - }; - self.0.send::(msg, None); - } - #[doc = "immediately create a wl_buffer from the given dmabufs\n\nThis asks for immediate creation of a wl_buffer by importing the\nadded dmabufs.\n\nIn case of import success, no event is sent from the server, and the\nwl_buffer is ready to be used by the client.\n\nUpon import failure, either of the following may happen, as seen fit\nby the implementation:\n- the client is terminated with one of the following fatal protocol\nerrors:\n- INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS, OUT_OF_BOUNDS,\nin case of argument errors such as mismatch between the number\nof planes and the format, bad format, non-positive width or\nheight, or bad offset or stride.\n- INVALID_WL_BUFFER, in case the cause for failure is unknown or\nplaform specific.\n- the server creates an invalid wl_buffer, marks it as failed and\nsends a 'failed' event to the client. The result of using this\ninvalid wl_buffer as an argument in any request by the client is\ndefined by the compositor implementation.\n\nThis takes the same arguments as a 'create' request, and obeys the\nsame restrictions.\n\nOnly available since version 2 of the interface."] - pub fn create_immed( - &self, - width: i32, - height: i32, - format: u32, - flags: Flags, - ) -> Main { - let msg = Request::CreateImmed { - width: width, - height: height, - format: format, - flags: flags, - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ADD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_IMMED_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CREATED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - static mut zwp_linux_buffer_params_v1_requests_create_immed_types: [*const wl_interface; 5] = [ - unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_buffer_params_v1_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"add\0" as *const u8 as *const c_char, - signature: b"huuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create\0" as *const u8 as *const c_char, - signature: b"iiuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_immed\0" as *const u8 as *const c_char, - signature: b"2niiuu\0" as *const u8 as *const c_char, - types: unsafe { &zwp_linux_buffer_params_v1_requests_create_immed_types as *const _ }, - }, - ]; - static mut zwp_linux_buffer_params_v1_events_created_types: [*const wl_interface; 1] = - [unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_buffer_params_v1_events: [wl_message; 2] = [ - wl_message { - name: b"created\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_linux_buffer_params_v1_events_created_types as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_buffer_params_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_buffer_params_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 4, - requests: unsafe { &zwp_linux_buffer_params_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_linux_buffer_params_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs deleted file mode 100644 index 4832135..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs +++ /dev/null @@ -1,773 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "protocol for providing explicit synchronization\n\nThis global is a factory interface, allowing clients to request\nexplicit synchronization for buffers on a per-surface basis.\n\nSee zwp_linux_surface_synchronization_v1 for more information.\n\nThis interface is derived from Chromium's\nzcr_linux_explicit_synchronization_v1.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_linux_explicit_synchronization_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the surface already has a synchronization object associated"] - SynchronizationExists = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::SynchronizationExists), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy explicit synchronization factory object\n\nDestroy this explicit synchronization factory object. Other objects,\nincluding zwp_linux_surface_synchronization_v1 objects created by this\nfactory, shall not be affected by this request.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "extend surface interface for explicit synchronization\n\nInstantiate an interface extension for the given wl_surface to provide\nexplicit synchronization.\n\nIf the given wl_surface already has an explicit synchronization object\nassociated, the synchronization_exists protocol error is raised.\n\nGraphics APIs, like EGL or Vulkan, that manage the buffer queue and\ncommits of a wl_surface themselves, are likely to be using this\nextension internally. If a client is using such an API for a\nwl_surface, it should not directly use this extension on that surface,\nto avoid raising a synchronization_exists protocol error."] - GetSynchronization { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_synchronization", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetSynchronization { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetSynchronization { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_linux_surface_synchronization_v1::ZwpLinuxSurfaceSynchronizationV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetSynchronization { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetSynchronization { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxExplicitSynchronizationV1(Proxy); - impl AsRef> for ZwpLinuxExplicitSynchronizationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxExplicitSynchronizationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxExplicitSynchronizationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxExplicitSynchronizationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxExplicitSynchronizationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxExplicitSynchronizationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_explicit_synchronization_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_explicit_synchronization_v1_interface } - } - } - impl ZwpLinuxExplicitSynchronizationV1 { - #[doc = "destroy explicit synchronization factory object\n\nDestroy this explicit synchronization factory object. Other objects,\nincluding zwp_linux_surface_synchronization_v1 objects created by this\nfactory, shall not be affected by this request.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "extend surface interface for explicit synchronization\n\nInstantiate an interface extension for the given wl_surface to provide\nexplicit synchronization.\n\nIf the given wl_surface already has an explicit synchronization object\nassociated, the synchronization_exists protocol error is raised.\n\nGraphics APIs, like EGL or Vulkan, that manage the buffer queue and\ncommits of a wl_surface themselves, are likely to be using this\nextension internally. If a client is using such an API for a\nwl_surface, it should not directly use this extension on that surface,\nto avoid raising a synchronization_exists protocol error."] - pub fn get_synchronization( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main - { - let msg = Request::GetSynchronization { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SYNCHRONIZATION_SINCE: u32 = 1u32; - static mut zwp_linux_explicit_synchronization_v1_requests_get_synchronization_types: - [*const wl_interface; 2] = [ - unsafe { - & super :: zwp_linux_surface_synchronization_v1 :: zwp_linux_surface_synchronization_v1_interface as * const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_explicit_synchronization_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_synchronization\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_linux_explicit_synchronization_v1_requests_get_synchronization_types - as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_explicit_synchronization_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_explicit_synchronization_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 2, - requests: unsafe { &zwp_linux_explicit_synchronization_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "per-surface explicit synchronization support\n\nThis object implements per-surface explicit synchronization.\n\nSynchronization refers to co-ordination of pipelined operations performed\non buffers. Most GPU clients will schedule an asynchronous operation to\nrender to the buffer, then immediately send the buffer to the compositor\nto be attached to a surface.\n\nIn implicit synchronization, ensuring that the rendering operation is\ncomplete before the compositor displays the buffer is an implementation\ndetail handled by either the kernel or userspace graphics driver.\n\nBy contrast, in explicit synchronization, dma_fence objects mark when the\nasynchronous operations are complete. When submitting a buffer, the\nclient provides an acquire fence which will be waited on before the\ncompositor accesses the buffer. The Wayland server, through a\nzwp_linux_buffer_release_v1 object, will inform the client with an event\nwhich may be accompanied by a release fence, when the compositor will no\nlonger access the buffer contents due to the specific commit that\nrequested the release event.\n\nEach surface can be associated with only one object of this interface at\nany time.\n\nIn version 1 of this interface, explicit synchronization is only\nguaranteed to be supported for buffers created with any version of the\nwp_linux_dmabuf buffer factory. Version 2 additionally guarantees\nexplicit synchronization support for opaque EGL buffers, which is a type\nof platform specific buffers described in the EGL_WL_bind_wayland_display\nextension. Compositors are free to support explicit synchronization for\nadditional buffer types."] -pub mod zwp_linux_surface_synchronization_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the fence specified by the client could not be imported"] - InvalidFence = 0, - #[doc = "multiple fences added for a single surface commit"] - DuplicateFence = 1, - #[doc = "multiple releases added for a single surface commit"] - DuplicateRelease = 2, - #[doc = "the associated wl_surface was destroyed"] - NoSurface = 3, - #[doc = "the buffer does not support explicit synchronization"] - UnsupportedBuffer = 4, - #[doc = "no buffer was attached"] - NoBuffer = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidFence), - 1 => Some(Error::DuplicateFence), - 2 => Some(Error::DuplicateRelease), - 3 => Some(Error::NoSurface), - 4 => Some(Error::UnsupportedBuffer), - 5 => Some(Error::NoBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy synchronization object\n\nDestroy this explicit synchronization object.\n\nAny fence set by this object with set_acquire_fence since the last\ncommit will be discarded by the server. Any fences set by this object\nbefore the last commit are not affected.\n\nzwp_linux_buffer_release_v1 objects created by this object are not\naffected by this request.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the acquire fence\n\nSet the acquire fence that must be signaled before the compositor\nmay sample from the buffer attached with wl_surface.attach. The fence\nis a dma_fence kernel object.\n\nThe acquire fence is double-buffered state, and will be applied on the\nnext wl_surface.commit request for the associated surface. Thus, it\napplies only to the buffer that is attached to the surface at commit\ntime.\n\nIf the provided fd is not a valid dma_fence fd, then an INVALID_FENCE\nerror is raised.\n\nIf a fence has already been attached during the same commit cycle, a\nDUPLICATE_FENCE error is raised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error is\nraised.\n\nIf at surface commit time the attached buffer does not support explicit\nsynchronization, an UNSUPPORTED_BUFFER error is raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - SetAcquireFence { fd: ::std::os::unix::io::RawFd }, - #[doc = "release fence for last-attached buffer\n\nCreate a listener for the release of the buffer attached by the\nclient with wl_surface.attach. See zwp_linux_buffer_release_v1\ndocumentation for more information.\n\nThe release object is double-buffered state, and will be associated\nwith the buffer that is attached to the surface at wl_surface.commit\ntime.\n\nIf a zwp_linux_buffer_release_v1 object has already been requested for\nthe surface in the same commit cycle, a DUPLICATE_RELEASE error is\nraised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error\nis raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - GetRelease {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_acquire_fence", - since: 1, - signature: &[super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "get_release", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetAcquireFence { .. } => 1, - Request::GetRelease { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetAcquireFence { .. } => 1, - Request::GetRelease { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 2 => Some(Object::from_interface::< - super::zwp_linux_buffer_release_v1::ZwpLinuxBufferReleaseV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetAcquireFence { fd } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Fd(fd),], - }, - Request::GetRelease {} => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetAcquireFence { fd } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].h = fd; - f(1, &mut _args_array) - } - Request::GetRelease {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxSurfaceSynchronizationV1(Proxy); - impl AsRef> for ZwpLinuxSurfaceSynchronizationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxSurfaceSynchronizationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxSurfaceSynchronizationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxSurfaceSynchronizationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxSurfaceSynchronizationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxSurfaceSynchronizationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_surface_synchronization_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_surface_synchronization_v1_interface } - } - } - impl ZwpLinuxSurfaceSynchronizationV1 { - #[doc = "destroy synchronization object\n\nDestroy this explicit synchronization object.\n\nAny fence set by this object with set_acquire_fence since the last\ncommit will be discarded by the server. Any fences set by this object\nbefore the last commit are not affected.\n\nzwp_linux_buffer_release_v1 objects created by this object are not\naffected by this request.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the acquire fence\n\nSet the acquire fence that must be signaled before the compositor\nmay sample from the buffer attached with wl_surface.attach. The fence\nis a dma_fence kernel object.\n\nThe acquire fence is double-buffered state, and will be applied on the\nnext wl_surface.commit request for the associated surface. Thus, it\napplies only to the buffer that is attached to the surface at commit\ntime.\n\nIf the provided fd is not a valid dma_fence fd, then an INVALID_FENCE\nerror is raised.\n\nIf a fence has already been attached during the same commit cycle, a\nDUPLICATE_FENCE error is raised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error is\nraised.\n\nIf at surface commit time the attached buffer does not support explicit\nsynchronization, an UNSUPPORTED_BUFFER error is raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - pub fn set_acquire_fence(&self, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::SetAcquireFence { fd: fd }; - self.0.send::(msg, None); - } - #[doc = "release fence for last-attached buffer\n\nCreate a listener for the release of the buffer attached by the\nclient with wl_surface.attach. See zwp_linux_buffer_release_v1\ndocumentation for more information.\n\nThe release object is double-buffered state, and will be associated\nwith the buffer that is attached to the surface at wl_surface.commit\ntime.\n\nIf a zwp_linux_buffer_release_v1 object has already been requested for\nthe surface in the same commit cycle, a DUPLICATE_RELEASE error is\nraised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error\nis raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - pub fn get_release( - &self, - ) -> Main { - let msg = Request::GetRelease {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ACQUIRE_FENCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_RELEASE_SINCE: u32 = 1u32; - static mut zwp_linux_surface_synchronization_v1_requests_get_release_types: - [*const wl_interface; 1] = [unsafe { - &super::zwp_linux_buffer_release_v1::zwp_linux_buffer_release_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_surface_synchronization_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_acquire_fence\0" as *const u8 as *const c_char, - signature: b"h\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_release\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_linux_surface_synchronization_v1_requests_get_release_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_surface_synchronization_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_surface_synchronization_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwp_linux_surface_synchronization_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "buffer release explicit synchronization\n\nThis object is instantiated in response to a\nzwp_linux_surface_synchronization_v1.get_release request.\n\nIt provides an alternative to wl_buffer.release events, providing a\nunique release from a single wl_surface.commit request. The release event\nalso supports explicit synchronization, providing a fence FD for the\nclient to synchronize against.\n\nExactly one event, either a fenced_release or an immediate_release, will\nbe emitted for the wl_surface.commit request. The compositor can choose\nrelease by release which event it uses.\n\nThis event does not replace wl_buffer.release events; servers are still\nrequired to send those events.\n\nOnce a buffer release object has delivered a 'fenced_release' or an\n'immediate_release' event it is automatically destroyed."] -pub mod zwp_linux_buffer_release_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "release buffer with fence\n\nSent when the compositor has finalised its usage of the associated\nbuffer for the relevant commit, providing a dma_fence which will be\nsignaled when all operations by the compositor on that buffer for that\ncommit have finished.\n\nOnce the fence has signaled, and assuming the associated buffer is not\npending release from other wl_surface.commit requests, no additional\nexplicit or implicit synchronization is required to safely reuse or\ndestroy the buffer.\n\nThis event destroys the zwp_linux_buffer_release_v1 object.\n\nThis is a destructor, once received this object cannot be used any longer."] - FencedRelease { fence: ::std::os::unix::io::RawFd }, - #[doc = "release buffer immediately\n\nSent when the compositor has finalised its usage of the associated\nbuffer for the relevant commit, and either performed no operations\nusing it, or has a guarantee that all its operations on that buffer for\nthat commit have finished.\n\nOnce this event is received, and assuming the associated buffer is not\npending release from other wl_surface.commit requests, no additional\nexplicit or implicit synchronization is required to safely reuse or\ndestroy the buffer.\n\nThis event destroys the zwp_linux_buffer_release_v1 object.\n\nThis is a destructor, once received this object cannot be used any longer."] - ImmediateRelease, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "fenced_release", - since: 1, - signature: &[super::ArgumentType::Fd], - destructor: true, - }, - super::MessageDesc { - name: "immediate_release", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Event::FencedRelease { .. } => true, - Event::ImmediateRelease => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::FencedRelease { .. } => 0, - Event::ImmediateRelease => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::FencedRelease { .. } => 1, - Event::ImmediateRelease => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::FencedRelease { - fence: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::ImmediateRelease), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::FencedRelease { fence: _args[0].h }) - } - 1 => Ok(Event::ImmediateRelease), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxBufferReleaseV1(Proxy); - impl AsRef> for ZwpLinuxBufferReleaseV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxBufferReleaseV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxBufferReleaseV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxBufferReleaseV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxBufferReleaseV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxBufferReleaseV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_buffer_release_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_buffer_release_v1_interface } - } - } - impl ZwpLinuxBufferReleaseV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FENCED_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_IMMEDIATE_RELEASE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_buffer_release_v1_events: [wl_message; 2] = [ - wl_message { - name: b"fenced_release\0" as *const u8 as *const c_char, - signature: b"h\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"immediate_release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_buffer_release_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_buffer_release_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 2, - events: unsafe { &zwp_linux_buffer_release_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs deleted file mode 100644 index 465bd4b..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs +++ /dev/null @@ -1,1019 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "constrain the movement of a pointer\n\nThe global interface exposing pointer constraining functionality. It\nexposes two requests: lock_pointer for locking the pointer to its\nposition, and confine_pointer for locking the pointer to a region.\n\nThe lock_pointer and confine_pointer requests create the objects\nwp_locked_pointer and wp_confined_pointer respectively, and the client can\nuse these objects to interact with the lock.\n\nFor any surface, only one lock or confinement may be active across all\nwl_pointer objects of the same seat. If a lock or confinement is requested\nwhen another lock or confinement is active or requested on the same surface\nand with any of the wl_pointer objects of the same seat, an\n'already_constrained' error will be raised."] -pub mod zwp_pointer_constraints_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "wp_pointer_constraints error values\n\nThese errors can be emitted in response to wp_pointer_constraints\nrequests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "pointer constraint already requested on that surface"] - AlreadyConstrained = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::AlreadyConstrained), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "constraint lifetime\n\nThese values represent different lifetime semantics. They are passed\nas arguments to the factory requests to specify how the constraint\nlifetimes should be managed."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Lifetime { - #[doc = "the pointer constraint is defunct once deactivated\n\nA oneshot pointer constraint will never reactivate once it has been\ndeactivated. See the corresponding deactivation event\n(wp_locked_pointer.unlocked and wp_confined_pointer.unconfined) for\ndetails."] - Oneshot = 1, - #[doc = "the pointer constraint may reactivate\n\nA persistent pointer constraint may again reactivate once it has\nbeen deactivated. See the corresponding deactivation event\n(wp_locked_pointer.unlocked and wp_confined_pointer.unconfined) for\ndetails."] - Persistent = 2, - } - impl Lifetime { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Lifetime::Oneshot), - 2 => Some(Lifetime::Persistent), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pointer constraints manager object\n\nUsed by the client to notify the server that it will no longer use this\npointer constraints object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "lock pointer to a position\n\nThe lock_pointer request lets the client request to disable movements of\nthe virtual pointer (i.e. the cursor), effectively locking the pointer\nto a position. This request may not take effect immediately; in the\nfuture, when the compositor deems implementation-specific constraints\nare satisfied, the pointer lock will be activated and the compositor\nsends a locked event.\n\nThe protocol provides no guarantee that the constraints are ever\nsatisfied, and does not require the compositor to send an error if the\nconstraints cannot ever be satisfied. It is thus possible to request a\nlock that will never activate.\n\nThere may not be another pointer constraint of any kind requested or\nactive on the surface for any of the wl_pointer objects of the seat of\nthe passed pointer when requesting a lock. If there is, an error will be\nraised. See general pointer lock documentation for more details.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the lock to activate. It is up to the compositor whether to\nwarp the pointer or require some kind of user interaction for the lock\nto activate. If the region is null the surface input region is used.\n\nA surface may receive pointer focus without the lock being activated.\n\nThe request creates a new object wp_locked_pointer which is used to\ninteract with the lock as well as receive updates about its state. See\nthe the description of wp_locked_pointer for further information.\n\nNote that while a pointer is locked, the wl_pointer objects of the\ncorresponding seat will not emit any wl_pointer.motion events, but\nrelative motion events will still be emitted via wp_relative_pointer\nobjects of the same seat. wl_pointer.axis and wl_pointer.button events\nare unaffected."] - LockPointer { - surface: super::wl_surface::WlSurface, - pointer: super::wl_pointer::WlPointer, - region: Option, - lifetime: Lifetime, - }, - #[doc = "confine pointer to a region\n\nThe confine_pointer request lets the client request to confine the\npointer cursor to a given region. This request may not take effect\nimmediately; in the future, when the compositor deems implementation-\nspecific constraints are satisfied, the pointer confinement will be\nactivated and the compositor sends a confined event.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the confinement to activate. It is up to the compositor\nwhether to warp the pointer or require some kind of user interaction for\nthe confinement to activate. If the region is null the surface input\nregion is used.\n\nThe request will create a new object wp_confined_pointer which is used\nto interact with the confinement as well as receive updates about its\nstate. See the the description of wp_confined_pointer for further\ninformation."] - ConfinePointer { - surface: super::wl_surface::WlSurface, - pointer: super::wl_pointer::WlPointer, - region: Option, - lifetime: Lifetime, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "lock_pointer", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "confine_pointer", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::LockPointer { .. } => 1, - Request::ConfinePointer { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::LockPointer { .. } => 1, - Request::ConfinePointer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_locked_pointer_v1::ZwpLockedPointerV1, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_confined_pointer_v1::ZwpConfinedPointerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::LockPointer { - surface, - pointer, - region, - lifetime, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(pointer.as_ref().id()), - Argument::Object(region.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(lifetime.to_raw()), - ], - }, - Request::ConfinePointer { - surface, - pointer, - region, - lifetime, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(pointer.as_ref().id()), - Argument::Object(region.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(lifetime.to_raw()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::LockPointer { - surface, - pointer, - region, - lifetime, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = pointer.as_ref().c_ptr() as *mut _; - _args_array[3].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[4].u = lifetime.to_raw(); - f(1, &mut _args_array) - } - Request::ConfinePointer { - surface, - pointer, - region, - lifetime, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = pointer.as_ref().c_ptr() as *mut _; - _args_array[3].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[4].u = lifetime.to_raw(); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerConstraintsV1(Proxy); - impl AsRef> for ZwpPointerConstraintsV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerConstraintsV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerConstraintsV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerConstraintsV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerConstraintsV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerConstraintsV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_constraints_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_constraints_v1_interface } - } - } - impl ZwpPointerConstraintsV1 { - #[doc = "destroy the pointer constraints manager object\n\nUsed by the client to notify the server that it will no longer use this\npointer constraints object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "lock pointer to a position\n\nThe lock_pointer request lets the client request to disable movements of\nthe virtual pointer (i.e. the cursor), effectively locking the pointer\nto a position. This request may not take effect immediately; in the\nfuture, when the compositor deems implementation-specific constraints\nare satisfied, the pointer lock will be activated and the compositor\nsends a locked event.\n\nThe protocol provides no guarantee that the constraints are ever\nsatisfied, and does not require the compositor to send an error if the\nconstraints cannot ever be satisfied. It is thus possible to request a\nlock that will never activate.\n\nThere may not be another pointer constraint of any kind requested or\nactive on the surface for any of the wl_pointer objects of the seat of\nthe passed pointer when requesting a lock. If there is, an error will be\nraised. See general pointer lock documentation for more details.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the lock to activate. It is up to the compositor whether to\nwarp the pointer or require some kind of user interaction for the lock\nto activate. If the region is null the surface input region is used.\n\nA surface may receive pointer focus without the lock being activated.\n\nThe request creates a new object wp_locked_pointer which is used to\ninteract with the lock as well as receive updates about its state. See\nthe the description of wp_locked_pointer for further information.\n\nNote that while a pointer is locked, the wl_pointer objects of the\ncorresponding seat will not emit any wl_pointer.motion events, but\nrelative motion events will still be emitted via wp_relative_pointer\nobjects of the same seat. wl_pointer.axis and wl_pointer.button events\nare unaffected."] - pub fn lock_pointer( - &self, - surface: &super::wl_surface::WlSurface, - pointer: &super::wl_pointer::WlPointer, - region: Option<&super::wl_region::WlRegion>, - lifetime: Lifetime, - ) -> Main { - let msg = Request::LockPointer { - surface: surface.clone(), - pointer: pointer.clone(), - region: region.map(|o| o.clone()), - lifetime: lifetime, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "confine pointer to a region\n\nThe confine_pointer request lets the client request to confine the\npointer cursor to a given region. This request may not take effect\nimmediately; in the future, when the compositor deems implementation-\nspecific constraints are satisfied, the pointer confinement will be\nactivated and the compositor sends a confined event.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the confinement to activate. It is up to the compositor\nwhether to warp the pointer or require some kind of user interaction for\nthe confinement to activate. If the region is null the surface input\nregion is used.\n\nThe request will create a new object wp_confined_pointer which is used\nto interact with the confinement as well as receive updates about its\nstate. See the the description of wp_confined_pointer for further\ninformation."] - pub fn confine_pointer( - &self, - surface: &super::wl_surface::WlSurface, - pointer: &super::wl_pointer::WlPointer, - region: Option<&super::wl_region::WlRegion>, - lifetime: Lifetime, - ) -> Main { - let msg = Request::ConfinePointer { - surface: surface.clone(), - pointer: pointer.clone(), - region: region.map(|o| o.clone()), - lifetime: lifetime, - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_LOCK_POINTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CONFINE_POINTER_SINCE: u32 = 1u32; - static mut zwp_pointer_constraints_v1_requests_lock_pointer_types: [*const wl_interface; 5] = [ - unsafe { - &super::zwp_locked_pointer_v1::zwp_locked_pointer_v1_interface as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - unsafe { &super::wl_region::wl_region_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut zwp_pointer_constraints_v1_requests_confine_pointer_types: [*const wl_interface; 5] = [ - unsafe { - &super::zwp_confined_pointer_v1::zwp_confined_pointer_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - unsafe { &super::wl_region::wl_region_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_constraints_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"lock_pointer\0" as *const u8 as *const c_char, - signature: b"noo?ou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_constraints_v1_requests_lock_pointer_types as *const _ }, - }, - wl_message { - name: b"confine_pointer\0" as *const u8 as *const c_char, - signature: b"noo?ou\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_pointer_constraints_v1_requests_confine_pointer_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_constraints_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_constraints_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_pointer_constraints_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "receive relative pointer motion events\n\nThe wp_locked_pointer interface represents a locked pointer state.\n\nWhile the lock of this object is active, the wl_pointer objects of the\nassociated seat will not emit any wl_pointer.motion events.\n\nThis object will send the event 'locked' when the lock is activated.\nWhenever the lock is activated, it is guaranteed that the locked surface\nwill already have received pointer focus and that the pointer will be\nwithin the region passed to the request creating this object.\n\nTo unlock the pointer, send the destroy request. This will also destroy\nthe wp_locked_pointer object.\n\nIf the compositor decides to unlock the pointer the unlocked event is\nsent. See wp_locked_pointer.unlock for details.\n\nWhen unlocking, the compositor may warp the cursor position to the set\ncursor position hint. If it does, it will not result in any relative\nmotion events emitted via wp_relative_pointer.\n\nIf the surface the lock was requested on is destroyed and the lock is not\nyet activated, the wp_locked_pointer object is now defunct and must be\ndestroyed."] -pub mod zwp_locked_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the locked pointer object\n\nDestroy the locked pointer object. If applicable, the compositor will\nunlock the pointer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the pointer cursor position hint\n\nSet the cursor position hint relative to the top left corner of the\nsurface.\n\nIf the client is drawing its own cursor, it should update the position\nhint to the position of its own cursor. A compositor may use this\ninformation to warp the pointer upon unlock in order to avoid pointer\njumps.\n\nThe cursor position hint is double buffered. The new hint will only take\neffect when the associated surface gets it pending state applied. See\nwl_surface.commit for details."] - SetCursorPositionHint { surface_x: f64, surface_y: f64 }, - #[doc = "set a new lock region\n\nSet a new region used to lock the pointer.\n\nThe new lock region is double-buffered. The new lock region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nFor details about the lock region, see wp_locked_pointer."] - SetRegion { - region: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_cursor_position_hint", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "set_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetCursorPositionHint { .. } => 1, - Request::SetRegion { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetCursorPositionHint { .. } => 1, - Request::SetRegion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetCursorPositionHint { - surface_x, - surface_y, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Fixed((surface_x * 256.) as i32), - Argument::Fixed((surface_y * 256.) as i32), - ], - }, - Request::SetRegion { region } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetCursorPositionHint { - surface_x, - surface_y, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].f = (surface_x * 256.) as i32; - _args_array[1].f = (surface_y * 256.) as i32; - f(1, &mut _args_array) - } - Request::SetRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "lock activation event\n\nNotification that the pointer lock of the seat's pointer is activated."] - Locked, - #[doc = "lock deactivation event\n\nNotification that the pointer lock of the seat's pointer is no longer\nactive. If this is a oneshot pointer lock (see\nwp_pointer_constraints.lifetime) this object is now defunct and should\nbe destroyed. If this is a persistent pointer lock (see\nwp_pointer_constraints.lifetime) this pointer lock may again\nreactivate in the future."] - Unlocked, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "locked", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unlocked", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Locked => 0, - Event::Unlocked => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Locked => 1, - Event::Unlocked => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Locked), - 1 => Ok(Event::Unlocked), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Locked), - 1 => Ok(Event::Unlocked), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLockedPointerV1(Proxy); - impl AsRef> for ZwpLockedPointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLockedPointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLockedPointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLockedPointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLockedPointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLockedPointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_locked_pointer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_locked_pointer_v1_interface } - } - } - impl ZwpLockedPointerV1 { - #[doc = "destroy the locked pointer object\n\nDestroy the locked pointer object. If applicable, the compositor will\nunlock the pointer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the pointer cursor position hint\n\nSet the cursor position hint relative to the top left corner of the\nsurface.\n\nIf the client is drawing its own cursor, it should update the position\nhint to the position of its own cursor. A compositor may use this\ninformation to warp the pointer upon unlock in order to avoid pointer\njumps.\n\nThe cursor position hint is double buffered. The new hint will only take\neffect when the associated surface gets it pending state applied. See\nwl_surface.commit for details."] - pub fn set_cursor_position_hint(&self, surface_x: f64, surface_y: f64) -> () { - let msg = Request::SetCursorPositionHint { - surface_x: surface_x, - surface_y: surface_y, - }; - self.0.send::(msg, None); - } - #[doc = "set a new lock region\n\nSet a new region used to lock the pointer.\n\nThe new lock region is double-buffered. The new lock region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nFor details about the lock region, see wp_locked_pointer."] - pub fn set_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_POSITION_HINT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LOCKED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UNLOCKED_SINCE: u32 = 1u32; - static mut zwp_locked_pointer_v1_requests_set_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_locked_pointer_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_cursor_position_hint\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_locked_pointer_v1_requests_set_region_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_locked_pointer_v1_events: [wl_message; 2] = [ - wl_message { - name: b"locked\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unlocked\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_locked_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwp_locked_pointer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_locked_pointer_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_locked_pointer_v1_events as *const _ }, - }; -} -#[doc = "confined pointer object\n\nThe wp_confined_pointer interface represents a confined pointer state.\n\nThis object will send the event 'confined' when the confinement is\nactivated. Whenever the confinement is activated, it is guaranteed that\nthe surface the pointer is confined to will already have received pointer\nfocus and that the pointer will be within the region passed to the request\ncreating this object. It is up to the compositor to decide whether this\nrequires some user interaction and if the pointer will warp to within the\npassed region if outside.\n\nTo unconfine the pointer, send the destroy request. This will also destroy\nthe wp_confined_pointer object.\n\nIf the compositor decides to unconfine the pointer the unconfined event is\nsent. The wp_confined_pointer object is at this point defunct and should\nbe destroyed."] -pub mod zwp_confined_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the confined pointer object\n\nDestroy the confined pointer object. If applicable, the compositor will\nunconfine the pointer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set a new confine region\n\nSet a new region used to confine the pointer.\n\nThe new confine region is double-buffered. The new confine region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nIf the confinement is active when the new confinement region is applied\nand the pointer ends up outside of newly applied region, the pointer may\nwarped to a position within the new confinement region. If warped, a\nwl_pointer.motion event will be emitted, but no\nwp_relative_pointer.relative_motion event.\n\nThe compositor may also, instead of using the new region, unconfine the\npointer.\n\nFor details about the confine region, see wp_confined_pointer."] - SetRegion { - region: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetRegion { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetRegion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetRegion { region } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "pointer confined\n\nNotification that the pointer confinement of the seat's pointer is\nactivated."] - Confined, - #[doc = "pointer unconfined\n\nNotification that the pointer confinement of the seat's pointer is no\nlonger active. If this is a oneshot pointer confinement (see\nwp_pointer_constraints.lifetime) this object is now defunct and should\nbe destroyed. If this is a persistent pointer confinement (see\nwp_pointer_constraints.lifetime) this pointer confinement may again\nreactivate in the future."] - Unconfined, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "confined", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unconfined", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Confined => 0, - Event::Unconfined => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Confined => 1, - Event::Unconfined => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Confined), - 1 => Ok(Event::Unconfined), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Confined), - 1 => Ok(Event::Unconfined), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpConfinedPointerV1(Proxy); - impl AsRef> for ZwpConfinedPointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpConfinedPointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpConfinedPointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpConfinedPointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpConfinedPointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpConfinedPointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_confined_pointer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_confined_pointer_v1_interface } - } - } - impl ZwpConfinedPointerV1 { - #[doc = "destroy the confined pointer object\n\nDestroy the confined pointer object. If applicable, the compositor will\nunconfine the pointer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set a new confine region\n\nSet a new region used to confine the pointer.\n\nThe new confine region is double-buffered. The new confine region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nIf the confinement is active when the new confinement region is applied\nand the pointer ends up outside of newly applied region, the pointer may\nwarped to a position within the new confinement region. If warped, a\nwl_pointer.motion event will be emitted, but no\nwp_relative_pointer.relative_motion event.\n\nThe compositor may also, instead of using the new region, unconfine the\npointer.\n\nFor details about the confine region, see wp_confined_pointer."] - pub fn set_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFINED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UNCONFINED_SINCE: u32 = 1u32; - static mut zwp_confined_pointer_v1_requests_set_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_confined_pointer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_confined_pointer_v1_requests_set_region_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_confined_pointer_v1_events: [wl_message; 2] = [ - wl_message { - name: b"confined\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unconfined\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_confined_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwp_confined_pointer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_confined_pointer_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_confined_pointer_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs deleted file mode 100644 index fc466f1..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs +++ /dev/null @@ -1,1095 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "touchpad gestures\n\nA global interface to provide semantic touchpad gestures for a given\npointer.\n\nTwo gestures are currently supported: swipe and pinch.\nAll gestures follow a three-stage cycle: begin, update, end and\nare identified by a unique id.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_pointer_gestures_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get swipe gesture\n\nCreate a swipe gesture object. See the\nwl_pointer_gesture_swipe interface for details."] - GetSwipeGesture { - pointer: super::wl_pointer::WlPointer, - }, - #[doc = "get pinch gesture\n\nCreate a pinch gesture object. See the\nwl_pointer_gesture_pinch interface for details."] - GetPinchGesture { - pointer: super::wl_pointer::WlPointer, - }, - #[doc = "destroy the pointer gesture object\n\nDestroy the pointer gesture object. Swipe and pinch objects created via this\ngesture object remain valid.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 2 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_swipe_gesture", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_pinch_gesture", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 2, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetSwipeGesture { .. } => 0, - Request::GetPinchGesture { .. } => 1, - Request::Release => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetSwipeGesture { .. } => 1, - Request::GetPinchGesture { .. } => 1, - Request::Release => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_pointer_gesture_swipe_v1::ZwpPointerGestureSwipeV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwp_pointer_gesture_pinch_v1::ZwpPointerGesturePinchV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetSwipeGesture { pointer } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - Request::GetPinchGesture { pointer } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetSwipeGesture { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::GetPinchGesture { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerGesturesV1(Proxy); - impl AsRef> for ZwpPointerGesturesV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerGesturesV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerGesturesV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerGesturesV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerGesturesV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerGesturesV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_gestures_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_gestures_v1_interface } - } - } - impl ZwpPointerGesturesV1 { - #[doc = "get swipe gesture\n\nCreate a swipe gesture object. See the\nwl_pointer_gesture_swipe interface for details."] - pub fn get_swipe_gesture( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetSwipeGesture { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "get pinch gesture\n\nCreate a pinch gesture object. See the\nwl_pointer_gesture_pinch interface for details."] - pub fn get_pinch_gesture( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetPinchGesture { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the pointer gesture object\n\nDestroy the pointer gesture object. Swipe and pinch objects created via this\ngesture object remain valid.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 2 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SWIPE_GESTURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_PINCH_GESTURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 2u32; - static mut zwp_pointer_gestures_v1_requests_get_swipe_gesture_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwp_pointer_gesture_swipe_v1::zwp_pointer_gesture_swipe_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - static mut zwp_pointer_gestures_v1_requests_get_pinch_gesture_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwp_pointer_gesture_pinch_v1::zwp_pointer_gesture_pinch_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gestures_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"get_swipe_gesture\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gestures_v1_requests_get_swipe_gesture_types as *const _ }, - }, - wl_message { - name: b"get_pinch_gesture\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gestures_v1_requests_get_pinch_gesture_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_gestures_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_gestures_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwp_pointer_gestures_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a swipe gesture object\n\nA swipe gesture object notifies a client about a multi-finger swipe\ngesture detected on an indirect input device such as a touchpad.\nThe gesture is usually initiated by multiple fingers moving in the\nsame direction but once initiated the direction may change.\nThe precise conditions of when such a gesture is detected are\nimplementation-dependent.\n\nA gesture consists of three stages: begin, update (optional) and end.\nThere cannot be multiple simultaneous pinch or swipe gestures on a\nsame pointer/seat, how compositors prevent these situations is\nimplementation-dependent.\n\nA gesture may be cancelled by the compositor or the hardware.\nClients should not consider performing permanent or irreversible\nactions until the end of a gesture has been received."] -pub mod zwp_pointer_gesture_swipe_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pointer swipe gesture object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "multi-finger swipe begin\n\nThis event is sent when a multi-finger swipe gesture is detected\non the device."] - Begin { - serial: u32, - time: u32, - surface: super::wl_surface::WlSurface, - fingers: u32, - }, - #[doc = "multi-finger swipe motion\n\nThis event is sent when a multi-finger swipe gesture changes the\nposition of the logical center.\n\nThe dx and dy coordinates are relative coordinates of the logical\ncenter of the gesture compared to the previous event."] - Update { time: u32, dx: f64, dy: f64 }, - #[doc = "multi-finger swipe end\n\nThis event is sent when a multi-finger swipe gesture ceases to\nbe valid. This may happen when one or more fingers are lifted or\nthe gesture is cancelled.\n\nWhen a gesture is cancelled, the client should undo state changes\ncaused by this gesture. What causes a gesture to be cancelled is\nimplementation-dependent."] - End { - serial: u32, - time: u32, - cancelled: i32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "begin", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "update", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "end", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Int, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Begin { .. } => 0, - Event::Update { .. } => 1, - Event::End { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Begin { .. } => 1, - Event::Update { .. } => 1, - Event::End { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Begin { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - fingers: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Update { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - dx: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::End { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - cancelled: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Begin { - serial: _args[0].u, - time: _args[1].u, - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - fingers: _args[3].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Update { - time: _args[0].u, - dx: (_args[1].f as f64) / 256., - dy: (_args[2].f as f64) / 256., - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::End { - serial: _args[0].u, - time: _args[1].u, - cancelled: _args[2].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerGestureSwipeV1(Proxy); - impl AsRef> for ZwpPointerGestureSwipeV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerGestureSwipeV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerGestureSwipeV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerGestureSwipeV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerGestureSwipeV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerGestureSwipeV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_gesture_swipe_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_gesture_swipe_v1_interface } - } - } - impl ZwpPointerGestureSwipeV1 { - #[doc = "destroy the pointer swipe gesture object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BEGIN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UPDATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_END_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_swipe_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_pointer_gesture_swipe_v1_events_begin_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_swipe_v1_events: [wl_message; 3] = [ - wl_message { - name: b"begin\0" as *const u8 as *const c_char, - signature: b"uuou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gesture_swipe_v1_events_begin_types as *const _ }, - }, - wl_message { - name: b"update\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"end\0" as *const u8 as *const c_char, - signature: b"uui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_gesture_swipe_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_gesture_swipe_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 1, - requests: unsafe { &zwp_pointer_gesture_swipe_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwp_pointer_gesture_swipe_v1_events as *const _ }, - }; -} -#[doc = "a pinch gesture object\n\nA pinch gesture object notifies a client about a multi-finger pinch\ngesture detected on an indirect input device such as a touchpad.\nThe gesture is usually initiated by multiple fingers moving towards\neach other or away from each other, or by two or more fingers rotating\naround a logical center of gravity. The precise conditions of when\nsuch a gesture is detected are implementation-dependent.\n\nA gesture consists of three stages: begin, update (optional) and end.\nThere cannot be multiple simultaneous pinch or swipe gestures on a\nsame pointer/seat, how compositors prevent these situations is\nimplementation-dependent.\n\nA gesture may be cancelled by the compositor or the hardware.\nClients should not consider performing permanent or irreversible\nactions until the end of a gesture has been received."] -pub mod zwp_pointer_gesture_pinch_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pinch gesture object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "multi-finger pinch begin\n\nThis event is sent when a multi-finger pinch gesture is detected\non the device."] - Begin { - serial: u32, - time: u32, - surface: super::wl_surface::WlSurface, - fingers: u32, - }, - #[doc = "multi-finger pinch motion\n\nThis event is sent when a multi-finger pinch gesture changes the\nposition of the logical center, the rotation or the relative scale.\n\nThe dx and dy coordinates are relative coordinates in the\nsurface coordinate space of the logical center of the gesture.\n\nThe scale factor is an absolute scale compared to the\npointer_gesture_pinch.begin event, e.g. a scale of 2 means the fingers\nare now twice as far apart as on pointer_gesture_pinch.begin.\n\nThe rotation is the relative angle in degrees clockwise compared to the previous\npointer_gesture_pinch.begin or pointer_gesture_pinch.update event."] - Update { - time: u32, - dx: f64, - dy: f64, - scale: f64, - rotation: f64, - }, - #[doc = "multi-finger pinch end\n\nThis event is sent when a multi-finger pinch gesture ceases to\nbe valid. This may happen when one or more fingers are lifted or\nthe gesture is cancelled.\n\nWhen a gesture is cancelled, the client should undo state changes\ncaused by this gesture. What causes a gesture to be cancelled is\nimplementation-dependent."] - End { - serial: u32, - time: u32, - cancelled: i32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "begin", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "update", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "end", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Int, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Begin { .. } => 0, - Event::Update { .. } => 1, - Event::End { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Begin { .. } => 1, - Event::Update { .. } => 1, - Event::End { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Begin { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - fingers: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Update { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - dx: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - scale: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - rotation: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::End { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - cancelled: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Begin { - serial: _args[0].u, - time: _args[1].u, - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - fingers: _args[3].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Update { - time: _args[0].u, - dx: (_args[1].f as f64) / 256., - dy: (_args[2].f as f64) / 256., - scale: (_args[3].f as f64) / 256., - rotation: (_args[4].f as f64) / 256., - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::End { - serial: _args[0].u, - time: _args[1].u, - cancelled: _args[2].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerGesturePinchV1(Proxy); - impl AsRef> for ZwpPointerGesturePinchV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerGesturePinchV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerGesturePinchV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerGesturePinchV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerGesturePinchV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerGesturePinchV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_gesture_pinch_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_gesture_pinch_v1_interface } - } - } - impl ZwpPointerGesturePinchV1 { - #[doc = "destroy the pinch gesture object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BEGIN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UPDATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_END_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_pinch_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_pointer_gesture_pinch_v1_events_begin_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_pinch_v1_events: [wl_message; 3] = [ - wl_message { - name: b"begin\0" as *const u8 as *const c_char, - signature: b"uuou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gesture_pinch_v1_events_begin_types as *const _ }, - }, - wl_message { - name: b"update\0" as *const u8 as *const c_char, - signature: b"uffff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"end\0" as *const u8 as *const c_char, - signature: b"uui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_gesture_pinch_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_gesture_pinch_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 1, - requests: unsafe { &zwp_pointer_gesture_pinch_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwp_pointer_gesture_pinch_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs deleted file mode 100644 index 47a25f5..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs +++ /dev/null @@ -1,633 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 7] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "timed presentation related wl_surface requests\n\nThe main feature of this interface is accurate presentation\ntiming feedback to ensure smooth video playback while maintaining\naudio/video synchronization. Some features use the concept of a\npresentation clock, which is defined in the\npresentation.clock_id event.\n\nA content update for a wl_surface is submitted by a\nwl_surface.commit request. Request 'feedback' associates with\nthe wl_surface.commit and provides feedback on the content\nupdate, particularly the final realized presentation time.\n\n\n\nWhen the final realized presentation time is available, e.g.\nafter a framebuffer flip completes, the requested\npresentation_feedback.presented events are sent. The final\npresentation time can differ from the compositor's predicted\ndisplay update time and the update's target time, especially\nwhen the compositor misses its target vertical blanking period."] -pub mod wp_presentation { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "fatal presentation errors\n\nThese fatal protocol errors may be emitted in response to\nillegal presentation requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid value in tv_nsec"] - InvalidTimestamp = 0, - #[doc = "invalid flag"] - InvalidFlag = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidTimestamp), - 1 => Some(Error::InvalidFlag), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind from the presentation interface\n\nInforms the server that the client will no longer be using\nthis protocol object. Existing objects created by this object\nare not affected.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "request presentation feedback information\n\nRequest presentation feedback for the current content submission\non the given surface. This creates a new presentation_feedback\nobject, which will deliver the feedback information once. If\nmultiple presentation_feedback objects are created for the same\nsubmission, they will all deliver the same information.\n\nFor details on what information is returned, see the\npresentation_feedback interface."] - Feedback { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "feedback", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Feedback { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Feedback { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::wp_presentation_feedback::WpPresentationFeedback, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Feedback { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(surface.as_ref().id()), Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Feedback { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - _args_array[1].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "clock ID for timestamps\n\nThis event tells the client in which clock domain the\ncompositor interprets the timestamps used by the presentation\nextension. This clock is called the presentation clock.\n\nThe compositor sends this event when the client binds to the\npresentation interface. The presentation clock does not change\nduring the lifetime of the client connection.\n\nThe clock identifier is platform dependent. On Linux/glibc,\nthe identifier value is one of the clockid_t values accepted\nby clock_gettime(). clock_gettime() is defined by\nPOSIX.1-2001.\n\nTimestamps in this clock domain are expressed as tv_sec_hi,\ntv_sec_lo, tv_nsec triples, each component being an unsigned\n32-bit value. Whole seconds are in tv_sec which is a 64-bit\nvalue combined from tv_sec_hi and tv_sec_lo, and the\nadditional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999].\n\nNote that clock_id applies only to the presentation clock,\nand implies nothing about e.g. the timestamps used in the\nWayland core protocol input events.\n\nCompositors should prefer a clock which does not jump and is\nnot slewed e.g. by NTP. The absolute value of the clock is\nirrelevant. Precision of one millisecond or better is\nrecommended. Clients must be able to query the current clock\nvalue directly, not by asking the compositor."] - ClockId { clk_id: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "clock_id", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::ClockId { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::ClockId { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::ClockId { - clk_id: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ClockId { clk_id: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpPresentation(Proxy); - impl AsRef> for WpPresentation { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpPresentation { - #[inline] - fn from(value: Proxy) -> Self { - WpPresentation(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpPresentation) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpPresentation { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpPresentation { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_presentation"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_presentation_interface } - } - } - impl WpPresentation { - #[doc = "unbind from the presentation interface\n\nInforms the server that the client will no longer be using\nthis protocol object. Existing objects created by this object\nare not affected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "request presentation feedback information\n\nRequest presentation feedback for the current content submission\non the given surface. This creates a new presentation_feedback\nobject, which will deliver the feedback information once. If\nmultiple presentation_feedback objects are created for the same\nsubmission, they will all deliver the same information.\n\nFor details on what information is returned, see the\npresentation_feedback interface."] - pub fn feedback( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::Feedback { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOCK_ID_SINCE: u32 = 1u32; - static mut wp_presentation_requests_feedback_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { - &super::wp_presentation_feedback::wp_presentation_feedback_interface - as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_presentation_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"feedback\0" as *const u8 as *const c_char, - signature: b"on\0" as *const u8 as *const c_char, - types: unsafe { &wp_presentation_requests_feedback_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_presentation_events: [wl_message; 1] = [wl_message { - name: b"clock_id\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_presentation_interface: wl_interface = wl_interface { - name: b"wp_presentation\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wp_presentation_requests as *const _ }, - event_count: 1, - events: unsafe { &wp_presentation_events as *const _ }, - }; -} -#[doc = "presentation time feedback event\n\nA presentation_feedback object returns an indication that a\nwl_surface content update has become visible to the user.\nOne object corresponds to one content update submission\n(wl_surface.commit). There are two possible outcomes: the\ncontent update is presented to the user, and a presentation\ntimestamp delivered; or, the user did not see the content\nupdate because it was superseded or its surface destroyed,\nand the content update is discarded.\n\nOnce a presentation_feedback object has delivered a 'presented'\nor 'discarded' event it is automatically destroyed."] -pub mod wp_presentation_feedback { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "bitmask of flags in presented event\n\nThese flags provide information about how the presentation of\nthe related content update was done. The intent is to help\nclients assess the reliability of the feedback and the visual\nquality with respect to possible tearing and timings. The\nflags are:\n\nVSYNC:\nThe presentation was synchronized to the \"vertical retrace\" by\nthe display hardware such that tearing does not happen.\nRelying on user space scheduling is not acceptable for this\nflag. If presentation is done by a copy to the active\nfrontbuffer, then it must guarantee that tearing cannot\nhappen.\n\nHW_CLOCK:\nThe display hardware provided measurements that the hardware\ndriver converted into a presentation timestamp. Sampling a\nclock in user space is not acceptable for this flag.\n\nHW_COMPLETION:\nThe display hardware signalled that it started using the new\nimage content. The opposite of this is e.g. a timer being used\nto guess when the display hardware has switched to the new\nimage content.\n\nZERO_COPY:\nThe presentation of this update was done zero-copy. This means\nthe buffer from the client was given to display hardware as\nis, without copying it. Compositing with OpenGL counts as\ncopying, even if textured directly from the client buffer.\nPossible zero-copy cases include direct scanout of a\nfullscreen surface and a surface on a hardware overlay."] pub struct Kind : u32 { # [doc = "presentation was vsync'd"] const Vsync = 1 ; # [doc = "hardware provided the presentation timestamp"] const HwClock = 2 ; # [doc = "hardware signalled the start of the presentation"] const HwCompletion = 4 ; # [doc = "presentation was done zero-copy"] const ZeroCopy = 8 ; } } - impl Kind { - pub fn from_raw(n: u32) -> Option { - Some(Kind::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "presentation synchronized to this output\n\nAs presentation can be synchronized to only one output at a\ntime, this event tells which output it was. This event is only\nsent prior to the presented event.\n\nAs clients may bind to the same global wl_output multiple\ntimes, this event is sent for each bound instance that matches\nthe synchronized output. If a client has not bound to the\nright wl_output global at all, this event is not sent."] - SyncOutput { output: super::wl_output::WlOutput }, - #[doc = "the content update was displayed\n\nThe associated content update was displayed to the user at the\nindicated time (tv_sec_hi/lo, tv_nsec). For the interpretation of\nthe timestamp, see presentation.clock_id event.\n\nThe timestamp corresponds to the time when the content update\nturned into light the first time on the surface's main output.\nCompositors may approximate this from the framebuffer flip\ncompletion events from the system, and the latency of the\nphysical display path if known.\n\nThis event is preceded by all related sync_output events\ntelling which output's refresh cycle the feedback corresponds\nto, i.e. the main output for the surface. Compositors are\nrecommended to choose the output containing the largest part\nof the wl_surface, or keeping the output they previously\nchose. Having a stable presentation output association helps\nclients predict future output refreshes (vblank).\n\nThe 'refresh' argument gives the compositor's prediction of how\nmany nanoseconds after tv_sec, tv_nsec the very next output\nrefresh may occur. This is to further aid clients in\npredicting future refreshes, i.e., estimating the timestamps\ntargeting the next few vblanks. If such prediction cannot\nusefully be done, the argument is zero.\n\nIf the output does not have a constant refresh rate, explicit\nvideo mode switches excluded, then the refresh argument must\nbe zero.\n\nThe 64-bit value combined from seq_hi and seq_lo is the value\nof the output's vertical retrace counter when the content\nupdate was first scanned out to the display. This value must\nbe compatible with the definition of MSC in\nGLX_OML_sync_control specification. Note, that if the display\npath has a non-zero latency, the time instant specified by\nthis counter may differ from the timestamp's.\n\nIf the output does not have a concept of vertical retrace or a\nrefresh cycle, or the output device is self-refreshing without\na way to query the refresh count, then the arguments seq_hi\nand seq_lo must be zero."] - Presented { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - refresh: u32, - seq_hi: u32, - seq_lo: u32, - flags: Kind, - }, - #[doc = "the content update was not displayed\n\nThe content update was never displayed to the user."] - Discarded, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "sync_output", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "presented", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "discarded", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::SyncOutput { .. } => 0, - Event::Presented { .. } => 1, - Event::Discarded => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::SyncOutput { .. } => 1, - Event::Presented { .. } => 1, - Event::Discarded => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::SyncOutput { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Presented { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - refresh: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - seq_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - seq_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Kind::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Discarded), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::SyncOutput { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 7); - Ok(Event::Presented { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - refresh: _args[3].u, - seq_hi: _args[4].u, - seq_lo: _args[5].u, - flags: Kind::from_raw(_args[6].u).ok_or(())?, - }) - } - 2 => Ok(Event::Discarded), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpPresentationFeedback(Proxy); - impl AsRef> for WpPresentationFeedback { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpPresentationFeedback { - #[inline] - fn from(value: Proxy) -> Self { - WpPresentationFeedback(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpPresentationFeedback) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpPresentationFeedback { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpPresentationFeedback { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_presentation_feedback"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_presentation_feedback_interface } - } - } - impl WpPresentationFeedback {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SYNC_OUTPUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESENTED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DISCARDED_SINCE: u32 = 1u32; - static mut wp_presentation_feedback_events_sync_output_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_presentation_feedback_events: [wl_message; 3] = [ - wl_message { - name: b"sync_output\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wp_presentation_feedback_events_sync_output_types as *const _ }, - }, - wl_message { - name: b"presented\0" as *const u8 as *const c_char, - signature: b"uuuuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"discarded\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_presentation_feedback_interface: wl_interface = wl_interface { - name: b"wp_presentation_feedback\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 3, - events: unsafe { &wp_presentation_feedback_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs deleted file mode 100644 index 51f9214..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs +++ /dev/null @@ -1,1228 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "X primary selection emulation\n\nThe primary selection device manager is a singleton global object that\nprovides access to the primary selection. It allows to create\nwp_primary_selection_source objects, as well as retrieving the per-seat\nwp_primary_selection_device objects."] -pub mod zwp_primary_selection_device_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - CreateSource {}, - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - GetDevice { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateSource { .. } => 0, - Request::GetDevice { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateSource { .. } => 1, - Request::GetDevice { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_primary_selection_source_v1::ZwpPrimarySelectionSourceV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwp_primary_selection_device_v1::ZwpPrimarySelectionDeviceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionDeviceManagerV1(Proxy); - impl AsRef> for ZwpPrimarySelectionDeviceManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionDeviceManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionDeviceManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionDeviceManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionDeviceManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionDeviceManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_device_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_device_manager_v1_interface } - } - } - impl ZwpPrimarySelectionDeviceManagerV1 { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - pub fn create_source( - &self, - ) -> Main { - let msg = Request::CreateSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - pub fn get_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DEVICE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_primary_selection_device_manager_v1_requests_create_source_types: - [*const wl_interface; 1] = [unsafe { - &super::zwp_primary_selection_source_v1::zwp_primary_selection_source_v1_interface - as *const wl_interface - }]; - static mut zwp_primary_selection_device_manager_v1_requests_get_device_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_primary_selection_device_v1::zwp_primary_selection_device_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_device_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"create_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_primary_selection_device_manager_v1_requests_create_source_types as *const _ - }, - }, - wl_message { - name: b"get_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_primary_selection_device_manager_v1_requests_get_device_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_device_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_device_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_primary_selection_device_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -pub mod zwp_primary_selection_device_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary\nselection will receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - serial: u32, - }, - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSelection { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSelection { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSelection { source, serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSelection { source, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wp_primary_selection_offer\n\nIntroduces a new wp_primary_selection_offer object that may be used\nto receive the current primary selection. Immediately following this\nevent, the new wp_primary_selection_offer object will send\nwp_primary_selection_offer.offer events to describe the offered mime\ntypes."] - DataOffer { - offer: Main, - }, - #[doc = "advertise a new primary selection\n\nThe wp_primary_selection_device.selection event is sent to notify the\nclient of a new primary selection. This event is sent after the\nwp_primary_selection.data_offer event introducing this object, and after\nthe offer has announced its mimetypes through\nwp_primary_selection_offer.offer.\n\nThe data_offer is valid until a new offer or NULL is received\nor until the client loses keyboard focus. The client must destroy the\nprevious selection data_offer, if any, upon receiving this event."] - Selection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Selection { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Selection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_primary_selection_offer_v1::ZwpPrimarySelectionOfferV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - offer: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DataOffer { - offer: Main::< - super::zwp_primary_selection_offer_v1::ZwpPrimarySelectionOfferV1, - >::from_c_ptr(_args[0].o as *mut _), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwp_primary_selection_offer_v1 :: ZwpPrimarySelectionOfferV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionDeviceV1(Proxy); - impl AsRef> for ZwpPrimarySelectionDeviceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionDeviceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionDeviceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionDeviceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionDeviceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionDeviceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_device_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_device_v1_interface } - } - } - impl ZwpPrimarySelectionDeviceV1 { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary\nselection will receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::zwp_primary_selection_source_v1::ZwpPrimarySelectionSourceV1>, - serial: u32, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - static mut zwp_primary_selection_device_v1_requests_set_selection_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwp_primary_selection_source_v1::zwp_primary_selection_source_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_device_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?ou\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_primary_selection_device_v1_requests_set_selection_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_primary_selection_device_v1_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_primary_selection_offer_v1::zwp_primary_selection_offer_v1_interface - as *const wl_interface - }]; - static mut zwp_primary_selection_device_v1_events_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_primary_selection_offer_v1::zwp_primary_selection_offer_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_device_v1_events: [wl_message; 2] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_primary_selection_device_v1_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_primary_selection_device_v1_events_selection_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_device_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_device_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_primary_selection_device_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_primary_selection_device_v1_events as *const _ }, - }; -} -#[doc = "offer to transfer primary selection contents\n\nA wp_primary_selection_offer represents an offer to transfer the contents\nof the primary selection clipboard to the client. Similar to\nwl_data_offer, the offer also describes the mime types that the data can\nbe converted to and provides the mechanisms for transferring the data\ndirectly to the client."] -pub mod zwp_primary_selection_offer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Receive { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Receive { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered mime type\n\nSent immediately after creating announcing the\nwp_primary_selection_offer through\nwp_primary_selection_device.data_offer. One event is sent per offered\nmime type."] - Offer { mime_type: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionOfferV1(Proxy); - impl AsRef> for ZwpPrimarySelectionOfferV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionOfferV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionOfferV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionOfferV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionOfferV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionOfferV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_offer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_offer_v1_interface } - } - } - impl ZwpPrimarySelectionOfferV1 { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_offer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_offer_v1_events: [wl_message; 1] = [wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_offer_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_offer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_primary_selection_offer_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_primary_selection_offer_v1_events as *const _ }, - }; -} -#[doc = "offer to replace the contents of the primary selection\n\nThe source side of a wp_primary_selection_offer, it provides a way to\ndescribe the offered data and respond to requests to transfer the\nrequested contents of the primary selection clipboard."] -pub mod zwp_primary_selection_source_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - Offer { mime_type: String }, - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "send the primary selection contents\n\nRequest for the current primary selection contents from the client.\nSend the specified mime type over the passed file descriptor, then\nclose it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "request for primary selection contents was canceled\n\nThis primary selection source is no longer valid. The client should\nclean up and destroy this primary selection source."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Send { .. } => 0, - Event::Cancelled => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Send { .. } => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 1 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionSourceV1(Proxy); - impl AsRef> for ZwpPrimarySelectionSourceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionSourceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionSourceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionSourceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionSourceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionSourceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_source_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_source_v1_interface } - } - } - impl ZwpPrimarySelectionSourceV1 { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_source_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_source_v1_events: [wl_message; 2] = [ - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_source_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_source_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_primary_selection_source_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_primary_selection_source_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs deleted file mode 100644 index 177d77f..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs +++ /dev/null @@ -1,532 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 6] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "get relative pointer objects\n\nA global interface used for getting the relative pointer object for a\ngiven pointer."] -pub mod zwp_relative_pointer_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the relative pointer manager object\n\nUsed by the client to notify the server that it will no longer use this\nrelative pointer manager object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "get a relative pointer object\n\nCreate a relative pointer interface given a wl_pointer object. See the\nwp_relative_pointer interface for more details."] - GetRelativePointer { - pointer: super::wl_pointer::WlPointer, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_relative_pointer", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetRelativePointer { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetRelativePointer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_relative_pointer_v1::ZwpRelativePointerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetRelativePointer { pointer } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetRelativePointer { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpRelativePointerManagerV1(Proxy); - impl AsRef> for ZwpRelativePointerManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpRelativePointerManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpRelativePointerManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpRelativePointerManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpRelativePointerManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpRelativePointerManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_relative_pointer_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_relative_pointer_manager_v1_interface } - } - } - impl ZwpRelativePointerManagerV1 { - #[doc = "destroy the relative pointer manager object\n\nUsed by the client to notify the server that it will no longer use this\nrelative pointer manager object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "get a relative pointer object\n\nCreate a relative pointer interface given a wl_pointer object. See the\nwp_relative_pointer interface for more details."] - pub fn get_relative_pointer( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetRelativePointer { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_RELATIVE_POINTER_SINCE: u32 = 1u32; - static mut zwp_relative_pointer_manager_v1_requests_get_relative_pointer_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_relative_pointer_v1::zwp_relative_pointer_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_relative_pointer_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_relative_pointer\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_relative_pointer_manager_v1_requests_get_relative_pointer_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_relative_pointer_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_relative_pointer_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_relative_pointer_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "relative pointer object\n\nA wp_relative_pointer object is an extension to the wl_pointer interface\nused for emitting relative pointer events. It shares the same focus as\nwl_pointer objects of the same seat and will only emit events when it has\nfocus."] -pub mod zwp_relative_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the relative pointer object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "relative pointer motion\n\nRelative x/y pointer motion from the pointer of the seat associated with\nthis object.\n\nA relative motion is in the same dimension as regular wl_pointer motion\nevents, except they do not represent an absolute position. For example,\nmoving a pointer from (x, y) to (x', y') would have the equivalent\nrelative motion (x' - x, y' - y). If a pointer motion caused the\nabsolute pointer position to be clipped by for example the edge of the\nmonitor, the relative motion is unaffected by the clipping and will\nrepresent the unclipped motion.\n\nThis event also contains non-accelerated motion deltas. The\nnon-accelerated delta is, when applicable, the regular pointer motion\ndelta as it was before having applied motion acceleration and other\ntransformations such as normalization.\n\nNote that the non-accelerated delta does not represent 'raw' events as\nthey were read from some device. Pointer motion acceleration is device-\nand configuration-specific and non-accelerated deltas and accelerated\ndeltas may have the same value on some devices.\n\nRelative motions are not coupled to wl_pointer.motion events, and can be\nsent in combination with such events, but also independently. There may\nalso be scenarios where wl_pointer.motion is sent, but there is no\nrelative motion. The order of an absolute and relative motion event\noriginating from the same physical motion is not guaranteed.\n\nIf the client needs button events or focus state, it can receive them\nfrom a wl_pointer object of the same seat that the wp_relative_pointer\nobject is associated with."] - RelativeMotion { - utime_hi: u32, - utime_lo: u32, - dx: f64, - dy: f64, - dx_unaccel: f64, - dy_unaccel: f64, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "relative_motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::RelativeMotion { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::RelativeMotion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::RelativeMotion { - utime_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - utime_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - dx: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dx_unaccel: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy_unaccel: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 6); - Ok(Event::RelativeMotion { - utime_hi: _args[0].u, - utime_lo: _args[1].u, - dx: (_args[2].f as f64) / 256., - dy: (_args[3].f as f64) / 256., - dx_unaccel: (_args[4].f as f64) / 256., - dy_unaccel: (_args[5].f as f64) / 256., - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpRelativePointerV1(Proxy); - impl AsRef> for ZwpRelativePointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpRelativePointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpRelativePointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpRelativePointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpRelativePointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpRelativePointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_relative_pointer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_relative_pointer_v1_interface } - } - } - impl ZwpRelativePointerV1 { - #[doc = "release the relative pointer object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RELATIVE_MOTION_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_relative_pointer_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_relative_pointer_v1_events: [wl_message; 1] = [wl_message { - name: b"relative_motion\0" as *const u8 as *const c_char, - signature: b"uuffff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_relative_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwp_relative_pointer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_relative_pointer_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_relative_pointer_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs deleted file mode 100644 index 34ff7bf..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs +++ /dev/null @@ -1,563 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "Server side window decoration manager\n\nThis interface allows to coordinate whether the server should create\na server-side window decoration around a wl_surface representing a\nshell surface (wl_shell_surface or similar). By announcing support\nfor this interface the server indicates that it supports server\nside decorations.\n\nUse in conjunction with zxdg_decoration_manager_v1 is undefined."] -pub mod org_kde_kwin_server_decoration_manager { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "Possible values to use in request_mode and the event mode."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "Undecorated: The surface is not decorated at all, neither server nor client-side. An example is a popup surface which should not be decorated."] - None = 0, - #[doc = "Client-side decoration: The decoration is part of the surface and the client."] - Client = 1, - #[doc = "Server-side decoration: The server embeds the surface into a decoration frame."] - Server = 2, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Mode::None), - 1 => Some(Mode::Client), - 2 => Some(Mode::Server), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Create a server-side decoration object for a given surface\n\nWhen a client creates a server-side decoration object it indicates\nthat it supports the protocol. The client is supposed to tell the\nserver whether it wants server-side decorations or will provide\nclient-side decorations.\n\nIf the client does not create a server-side decoration object for\na surface the server interprets this as lack of support for this\nprotocol and considers it as client-side decorated. Nevertheless a\nclient-side decorated surface should use this protocol to indicate\nto the server that it does not want a server-side deco."] - Create { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "create", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Create { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Create { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::org_kde_kwin_server_decoration::OrgKdeKwinServerDecoration, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Create { surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Create { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "The default mode used on the server\n\nThis event is emitted directly after binding the interface. It contains\nthe default mode for the decoration. When a new server decoration object\nis created this new object will be in the default mode until the first\nrequest_mode is requested.\n\nThe server may change the default mode at any time."] - DefaultMode { mode: Mode }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "default_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DefaultMode { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::DefaultMode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DefaultMode { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DefaultMode { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct OrgKdeKwinServerDecorationManager(Proxy); - impl AsRef> for OrgKdeKwinServerDecorationManager { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for OrgKdeKwinServerDecorationManager { - #[inline] - fn from(value: Proxy) -> Self { - OrgKdeKwinServerDecorationManager(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: OrgKdeKwinServerDecorationManager) -> Self { - value.0 - } - } - impl std::fmt::Debug for OrgKdeKwinServerDecorationManager { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for OrgKdeKwinServerDecorationManager { - type Request = Request; - type Event = Event; - const NAME: &'static str = "org_kde_kwin_server_decoration_manager"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &org_kde_kwin_server_decoration_manager_interface } - } - } - impl OrgKdeKwinServerDecorationManager { - #[doc = "Create a server-side decoration object for a given surface\n\nWhen a client creates a server-side decoration object it indicates\nthat it supports the protocol. The client is supposed to tell the\nserver whether it wants server-side decorations or will provide\nclient-side decorations.\n\nIf the client does not create a server-side decoration object for\na surface the server interprets this as lack of support for this\nprotocol and considers it as client-side decorated. Nevertheless a\nclient-side decorated surface should use this protocol to indicate\nto the server that it does not want a server-side deco."] - pub fn create( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::Create { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DEFAULT_MODE_SINCE: u32 = 1u32; - static mut org_kde_kwin_server_decoration_manager_requests_create_types: [*const wl_interface; - 2] = [ - unsafe { - &super::org_kde_kwin_server_decoration::org_kde_kwin_server_decoration_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_manager_requests: [wl_message; 1] = - [wl_message { - name: b"create\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &org_kde_kwin_server_decoration_manager_requests_create_types as *const _ - }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_manager_events: [wl_message; 1] = [wl_message { - name: b"default_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_manager_interface: wl_interface = wl_interface { - name: b"org_kde_kwin_server_decoration_manager\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &org_kde_kwin_server_decoration_manager_requests as *const _ }, - event_count: 1, - events: unsafe { &org_kde_kwin_server_decoration_manager_events as *const _ }, - }; -} -pub mod org_kde_kwin_server_decoration { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "Possible values to use in request_mode and the event mode."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "Undecorated: The surface is not decorated at all, neither server nor client-side. An example is a popup surface which should not be decorated."] - None = 0, - #[doc = "Client-side decoration: The decoration is part of the surface and the client."] - Client = 1, - #[doc = "Server-side decoration: The server embeds the surface into a decoration frame."] - Server = 2, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Mode::None), - 1 => Some(Mode::Client), - 2 => Some(Mode::Server), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the server decoration object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Release, - #[doc = "The decoration mode the surface wants to use."] - RequestMode { mode: Mode }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "request_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - Request::RequestMode { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 1, - Request::RequestMode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::RequestMode { mode } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Uint(mode.to_raw()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::RequestMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = mode.to_raw(); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "The new decoration mode applied by the server\n\nThis event is emitted directly after the decoration is created and\nrepresents the base decoration policy by the server. E.g. a server\nwhich wants all surfaces to be client-side decorated will send Client,\na server which wants server-side decoration will send Server.\n\nThe client can request a different mode through the decoration request.\nThe server will acknowledge this by another event with the same mode. So\neven if a server prefers server-side decoration it's possible to force a\nclient-side decoration.\n\nThe server may emit this event at any time. In this case the client can\nagain request a different mode. It's the responsibility of the server to\nprevent a feedback loop."] - Mode { mode: Mode }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Mode { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Mode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Mode { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct OrgKdeKwinServerDecoration(Proxy); - impl AsRef> for OrgKdeKwinServerDecoration { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for OrgKdeKwinServerDecoration { - #[inline] - fn from(value: Proxy) -> Self { - OrgKdeKwinServerDecoration(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: OrgKdeKwinServerDecoration) -> Self { - value.0 - } - } - impl std::fmt::Debug for OrgKdeKwinServerDecoration { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for OrgKdeKwinServerDecoration { - type Request = Request; - type Event = Event; - const NAME: &'static str = "org_kde_kwin_server_decoration"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &org_kde_kwin_server_decoration_interface } - } - } - impl OrgKdeKwinServerDecoration { - #[doc = "release the server decoration object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - #[doc = "The decoration mode the surface wants to use."] - pub fn request_mode(&self, mode: Mode) -> () { - let msg = Request::RequestMode { mode: mode }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_REQUEST_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_requests: [wl_message; 2] = [ - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"request_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_events: [wl_message; 1] = [wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_interface: wl_interface = wl_interface { - name: b"org_kde_kwin_server_decoration\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &org_kde_kwin_server_decoration_requests as *const _ }, - event_count: 1, - events: unsafe { &org_kde_kwin_server_decoration_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs deleted file mode 100644 index 68e7b9a..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs +++ /dev/null @@ -1,1973 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "controller object for graphic tablet devices\n\nAn object that provides access to the graphics tablets available on this\nsystem. All tablets are associated with a seat, to get access to the\nactual tablets, use wp_tablet_manager.get_tablet_seat."] -pub mod zwp_tablet_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - GetTabletSeat { seat: super::wl_seat::WlSeat }, - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_tablet_seat", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetTabletSeat { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetTabletSeat { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_tablet_seat_v1::ZwpTabletSeatV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetTabletSeat { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetTabletSeat { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletManagerV1(Proxy); - impl AsRef> for ZwpTabletManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_manager_v1_interface } - } - } - impl ZwpTabletManagerV1 { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - pub fn get_tablet_seat( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetTabletSeat { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TABLET_SEAT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_tablet_manager_v1_requests_get_tablet_seat_types: [*const wl_interface; 2] = [ - unsafe { &super::zwp_tablet_seat_v1::zwp_tablet_seat_v1_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_tablet_seat\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_manager_v1_requests_get_tablet_seat_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "controller object for graphic tablet devices of a seat\n\nAn object that provides access to the graphics tablets available on this\nseat. After binding to this interface, the compositor sends a set of\nwp_tablet_seat.tablet_added and wp_tablet_seat.tool_added events."] -pub mod zwp_tablet_seat_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "new device notification\n\nThis event is sent whenever a new tablet becomes available on this\nseat. This event only provides the object id of the tablet, any\nstatic information about the tablet (device name, vid/pid, etc.) is\nsent through the wp_tablet interface."] - TabletAdded { - id: Main, - }, - #[doc = "a new tool has been used with a tablet\n\nThis event is sent whenever a tool that has not previously been used\nwith a tablet comes into use. This event only provides the object id\nof the tool; any static information about the tool (capabilities,\ntype, etc.) is sent through the wp_tablet_tool interface."] - ToolAdded { - id: Main, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "tablet_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "tool_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::TabletAdded { .. } => 0, - Event::ToolAdded { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::TabletAdded { .. } => 1, - Event::ToolAdded { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::< - super::zwp_tablet_tool_v1::ZwpTabletToolV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::TabletAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::ToolAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::TabletAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ToolAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletSeatV1(Proxy); - impl AsRef> for ZwpTabletSeatV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletSeatV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletSeatV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletSeatV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletSeatV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletSeatV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_seat_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_seat_v1_interface } - } - } - impl ZwpTabletSeatV1 { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TABLET_ADDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TOOL_ADDED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_tablet_seat_v1_events_tablet_added_types: [*const wl_interface; 1] = - [unsafe { &super::zwp_tablet_v1::zwp_tablet_v1_interface as *const wl_interface }]; - static mut zwp_tablet_seat_v1_events_tool_added_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_tool_v1::zwp_tablet_tool_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v1_events: [wl_message; 2] = [ - wl_message { - name: b"tablet_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v1_events_tablet_added_types as *const _ }, - }, - wl_message { - name: b"tool_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v1_events_tool_added_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_seat_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_seat_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_seat_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_tablet_seat_v1_events as *const _ }, - }; -} -#[doc = "a physical tablet tool\n\nAn object that represents a physical tool that has been, or is\ncurrently in use with a tablet in this seat. Each wp_tablet_tool\nobject stays valid until the client destroys it; the compositor\nreuses the wp_tablet_tool object to indicate that the object's\nrespective physical tool has come into proximity of a tablet again.\n\nA wp_tablet_tool object's relation to a physical tool depends on the\ntablet's ability to report serial numbers. If the tablet supports\nthis capability, then the object represents a specific physical tool\nand can be identified even when used on multiple tablets.\n\nA tablet tool has a number of static characteristics, e.g. tool type,\nhardware_serial and capabilities. These capabilities are sent in an\nevent sequence after the wp_tablet_seat.tool_added event before any\nactual events from this tool. This initial event sequence is\nterminated by a wp_tablet_tool.done event.\n\nTablet tool events are grouped by wp_tablet_tool.frame events.\nAny events received before a wp_tablet_tool.frame event should be\nconsidered part of the same hardware state change."] -pub mod zwp_tablet_tool_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "a physical tool type\n\nDescribes the physical type of a tool. The physical type of a tool\ngenerally defines its base usage.\n\nThe mouse tool represents a mouse-shaped tool that is not a relative\ndevice but bound to the tablet's surface, providing absolute\ncoordinates.\n\nThe lens tool is a mouse-shaped tool with an attached lens to\nprovide precision focus."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Type { - #[doc = "Pen"] - Pen = 320, - #[doc = "Eraser"] - Eraser = 321, - #[doc = "Brush"] - Brush = 322, - #[doc = "Pencil"] - Pencil = 323, - #[doc = "Airbrush"] - Airbrush = 324, - #[doc = "Finger"] - Finger = 325, - #[doc = "Mouse"] - Mouse = 326, - #[doc = "Lens"] - Lens = 327, - } - impl Type { - pub fn from_raw(n: u32) -> Option { - match n { - 320 => Some(Type::Pen), - 321 => Some(Type::Eraser), - 322 => Some(Type::Brush), - 323 => Some(Type::Pencil), - 324 => Some(Type::Airbrush), - 325 => Some(Type::Finger), - 326 => Some(Type::Mouse), - 327 => Some(Type::Lens), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "capability flags for a tool\n\nDescribes extra capabilities on a tablet.\n\nAny tool must provide x and y values, extra axes are\ndevice-specific."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Capability { - #[doc = "Tilt axes"] - Tilt = 1, - #[doc = "Pressure axis"] - Pressure = 2, - #[doc = "Distance axis"] - Distance = 3, - #[doc = "Z-rotation axis"] - Rotation = 4, - #[doc = "Slider axis"] - Slider = 5, - #[doc = "Wheel axis"] - Wheel = 6, - } - impl Capability { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Capability::Tilt), - 2 => Some(Capability::Pressure), - 3 => Some(Capability::Distance), - 4 => Some(Capability::Rotation), - 5 => Some(Capability::Slider), - 6 => Some(Capability::Wheel), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical button state\n\nDescribes the physical state of a button that produced the button event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "button is not pressed"] - Released = 0, - #[doc = "button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a cursor. The role\nassigned by this request is the same as assigned by\nwl_pointer.set_cursor meaning the same surface can be\nused both as a wl_pointer cursor and a wp_tablet cursor. If the\nsurface already has another role, it raises a protocol error.\nThe surface may be used on multiple tablets and across multiple\nseats."] - SetCursor { - serial: u32, - surface: Option, - hotspot_x: i32, - hotspot_y: i32, - }, - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_cursor", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetCursor { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetCursor { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(hotspot_x), - Argument::Int(hotspot_y), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].i = hotspot_x; - _args_array[3].i = hotspot_y; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tool type\n\nThe tool type is the high-level type of the tool and usually decides\nthe interaction expected from this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Type { tool_type: Type }, - #[doc = "unique hardware serial number of the tool\n\nIf the physical tool can be identified by a unique 64-bit serial\nnumber, this event notifies the client of this serial number.\n\nIf multiple tablets are available in the same seat and the tool is\nuniquely identifiable by the serial number, that tool may move\nbetween tablets.\n\nOtherwise, if the tool has no serial number and this event is\nmissing, the tool is tied to the tablet it first comes into\nproximity with. Even if the physical tool is used on multiple\ntablets, separate wp_tablet_tool objects will be created, one per\ntablet.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareSerial { - hardware_serial_hi: u32, - hardware_serial_lo: u32, - }, - #[doc = "hardware id notification in Wacom's format\n\nThis event notifies the client of a hardware id available on this tool.\n\nThe hardware id is a device-specific 64-bit id that provides extra\ninformation about the tool in use, beyond the wl_tool.type\nenumeration. The format of the id is specific to tablets made by\nWacom Inc. For example, the hardware id of a Wacom Grip\nPen (a stylus) is 0x802.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareIdWacom { - hardware_id_hi: u32, - hardware_id_lo: u32, - }, - #[doc = "tool capability notification\n\nThis event notifies the client of any capabilities of this tool,\nbeyond the main set of x/y axes and tip up/down detection.\n\nOne event is sent for each extra capability available on this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Capability { capability: Capability }, - #[doc = "tool description events sequence complete\n\nThis event signals the end of the initial burst of descriptive\nevents. A client may consider the static description of the tool to\nbe complete and finalize initialization of the tool."] - Done, - #[doc = "tool removed\n\nThis event is sent when the tool is removed from the system and will\nsend no further events. Should the physical tool come back into\nproximity later, a new wp_tablet_tool object will be created.\n\nIt is compositor-dependent when a tool is removed. A compositor may\nremove a tool on proximity out, tablet removal or any other reason.\nA compositor may also keep a tool alive until shutdown.\n\nIf the tool is currently in proximity, a proximity_out event will be\nsent before the removed event. See wp_tablet_tool.proximity_out for\nthe handling of any buttons logically down.\n\nWhen this event is received, the client must wp_tablet_tool.destroy\nthe object."] - Removed, - #[doc = "proximity in event\n\nNotification that this tool is focused on a certain surface.\n\nThis event can be received when the tool has moved from one surface to\nanother, or when the tool has come back into proximity above the\nsurface.\n\nIf any button is logically down when the tool comes into proximity,\nthe respective button event is sent after the proximity_in event but\nwithin the same frame as the proximity_in event."] - ProximityIn { - serial: u32, - tablet: super::zwp_tablet_v1::ZwpTabletV1, - surface: super::wl_surface::WlSurface, - }, - #[doc = "proximity out event\n\nNotification that this tool has either left proximity, or is no\nlonger focused on a certain surface.\n\nWhen the tablet tool leaves proximity of the tablet, button release\nevents are sent for each button that was held down at the time of\nleaving proximity. These events are sent before the proximity_out\nevent but within the same wp_tablet.frame.\n\nIf the tool stays within proximity of the tablet, but the focus\nchanges from one surface to another, a button release event may not\nbe sent until the button is actually released or the tool leaves the\nproximity of the tablet."] - ProximityOut, - #[doc = "tablet tool is making contact\n\nSent whenever the tablet tool comes in contact with the surface of the\ntablet.\n\nIf the tool is already in contact with the tablet when entering the\ninput region, the client owning said region will receive a\nwp_tablet.proximity_in event, followed by a wp_tablet.down\nevent and a wp_tablet.frame event.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool in\nlogical contact until a minimum physical pressure threshold is\nexceeded."] - Down { serial: u32 }, - #[doc = "tablet tool is no longer making contact\n\nSent whenever the tablet tool stops making contact with the surface of\nthe tablet, or when the tablet tool moves out of the input region\nand the compositor grab (if any) is dismissed.\n\nIf the tablet tool moves out of the input region while in contact\nwith the surface of the tablet and the compositor does not have an\nongoing grab on the surface, the client owning said region will\nreceive a wp_tablet.up event, followed by a wp_tablet.proximity_out\nevent and a wp_tablet.frame event. If the compositor has an ongoing\ngrab on this device, this event sequence is sent whenever the grab\nis dismissed in the future.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool out\nof logical contact until physical pressure falls below a specific\nthreshold."] - Up, - #[doc = "motion event\n\nSent whenever a tablet tool moves."] - Motion { x: f64, y: f64 }, - #[doc = "pressure change event\n\nSent whenever the pressure axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that pressure may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Pressure { pressure: u32 }, - #[doc = "distance change event\n\nSent whenever the distance axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that distance may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Distance { distance: u32 }, - #[doc = "tilt change event\n\nSent whenever one or both of the tilt axes on a tool change. Each tilt\nvalue is in 0.01 of a degree, relative to the z-axis of the tablet.\nThe angle is positive when the top of a tool tilts along the\npositive x or y axis."] - Tilt { tilt_x: i32, tilt_y: i32 }, - #[doc = "z-rotation change event\n\nSent whenever the z-rotation axis on the tool changes. The\nrotation value is in 0.01 of a degree clockwise from the tool's\nlogical neutral position."] - Rotation { degrees: i32 }, - #[doc = "Slider position change event\n\nSent whenever the slider position on the tool changes. The\nvalue is normalized between -65535 and 65535, with 0 as the logical\nneutral position of the slider.\n\nThe slider is available on e.g. the Wacom Airbrush tool."] - Slider { position: i32 }, - #[doc = "Wheel delta event\n\nSent whenever the wheel on the tool emits an event. This event\ncontains two values for the same axis change. The degrees value is\nin 0.01 of a degree in the same orientation as the\nwl_pointer.vertical_scroll axis. The clicks value is in discrete\nlogical clicks of the mouse wheel. This value may be zero if the\nmovement of the wheel was less than one logical click.\n\nClients should choose either value and avoid mixing degrees and\nclicks. The compositor may accumulate values smaller than a logical\nclick and emulate click events when a certain threshold is met.\nThus, wl_tablet_tool.wheel events with non-zero clicks values may\nhave different degrees values."] - Wheel { degrees: i32, clicks: i32 }, - #[doc = "button event\n\nSent whenever a button on the tool is pressed or released.\n\nIf a button is held down when the tool moves in or out of proximity,\nbutton events are generated by the compositor. See\nwp_tablet_tool.proximity_in and wp_tablet_tool.proximity_out for\ndetails."] - Button { - serial: u32, - button: u32, - state: ButtonState, - }, - #[doc = "frame event\n\nMarks the end of a series of axis and/or button updates from the\ntablet. The Wayland protocol requires axis updates to be sent\nsequentially, however all events within a frame should be considered\none hardware event."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "type", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_serial", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_id_wacom", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "capability", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "proximity_in", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "proximity_out", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "down", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "up", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "pressure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "distance", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "tilt", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "rotation", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "slider", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "wheel", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Type { .. } => 0, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 2, - Event::Capability { .. } => 3, - Event::Done => 4, - Event::Removed => 5, - Event::ProximityIn { .. } => 6, - Event::ProximityOut => 7, - Event::Down { .. } => 8, - Event::Up => 9, - Event::Motion { .. } => 10, - Event::Pressure { .. } => 11, - Event::Distance { .. } => 12, - Event::Tilt { .. } => 13, - Event::Rotation { .. } => 14, - Event::Slider { .. } => 15, - Event::Wheel { .. } => 16, - Event::Button { .. } => 17, - Event::Frame { .. } => 18, - } - } - fn since(&self) -> u32 { - match *self { - Event::Type { .. } => 1, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 1, - Event::Capability { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - Event::ProximityIn { .. } => 1, - Event::ProximityOut => 1, - Event::Down { .. } => 1, - Event::Up => 1, - Event::Motion { .. } => 1, - Event::Pressure { .. } => 1, - Event::Distance { .. } => 1, - Event::Tilt { .. } => 1, - Event::Rotation { .. } => 1, - Event::Slider { .. } => 1, - Event::Wheel { .. } => 1, - Event::Button { .. } => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Type { - tool_type: { - if let Some(Argument::Uint(val)) = args.next() { - Type::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareSerial { - hardware_serial_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_serial_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareIdWacom { - hardware_id_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_id_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capability { - capability: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::ProximityIn { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tablet: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::Down { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 9 => Ok(Event::Up), - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Pressure { - pressure: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::Distance { - distance: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 13 => { - let mut args = msg.args.into_iter(); - Ok(Event::Tilt { - tilt_x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tilt_y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 14 => { - let mut args = msg.args.into_iter(); - Ok(Event::Rotation { - degrees: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 15 => { - let mut args = msg.args.into_iter(); - Ok(Event::Slider { - position: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 16 => { - let mut args = msg.args.into_iter(); - Ok(Event::Wheel { - degrees: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - clicks: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 17 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 18 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Type { - tool_type: Type::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareSerial { - hardware_serial_hi: _args[0].u, - hardware_serial_lo: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareIdWacom { - hardware_id_hi: _args[0].u, - hardware_id_lo: _args[1].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capability { - capability: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::ProximityIn { - serial: _args[0].u, - tablet: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Down { serial: _args[0].u }) - } - 9 => Ok(Event::Up), - 10 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Motion { - x: (_args[0].f as f64) / 256., - y: (_args[1].f as f64) / 256., - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Pressure { - pressure: _args[0].u, - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Distance { - distance: _args[0].u, - }) - } - 13 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Tilt { - tilt_x: _args[0].i, - tilt_y: _args[1].i, - }) - } - 14 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Rotation { - degrees: _args[0].i, - }) - } - 15 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Slider { - position: _args[0].i, - }) - } - 16 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Wheel { - degrees: _args[0].i, - clicks: _args[1].i, - }) - } - 17 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Button { - serial: _args[0].u, - button: _args[1].u, - state: ButtonState::from_raw(_args[2].u).ok_or(())?, - }) - } - 18 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletToolV1(Proxy); - impl AsRef> for ZwpTabletToolV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletToolV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletToolV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletToolV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletToolV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletToolV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_tool_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_tool_v1_interface } - } - } - impl ZwpTabletToolV1 { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a cursor. The role\nassigned by this request is the same as assigned by\nwl_pointer.set_cursor meaning the same surface can be\nused both as a wl_pointer cursor and a wp_tablet cursor. If the\nsurface already has another role, it raises a protocol error.\nThe surface may be used on multiple tablets and across multiple\nseats."] - pub fn set_cursor( - &self, - serial: u32, - surface: Option<&super::wl_surface::WlSurface>, - hotspot_x: i32, - hotspot_y: i32, - ) -> () { - let msg = Request::SetCursor { - serial: serial, - surface: surface.map(|o| o.clone()), - hotspot_x: hotspot_x, - hotspot_y: hotspot_y, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_SERIAL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_ID_WACOM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_IN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_OUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DOWN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESSURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DISTANCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TILT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ROTATION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SLIDER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_WHEEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - static mut zwp_tablet_tool_v1_requests_set_cursor_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_cursor\0" as *const u8 as *const c_char, - signature: b"u?oii\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v1_requests_set_cursor_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_tablet_tool_v1_events_proximity_in_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::zwp_tablet_v1::zwp_tablet_v1_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v1_events: [wl_message; 19] = [ - wl_message { - name: b"type\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_serial\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_id_wacom\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"capability\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"proximity_in\0" as *const u8 as *const c_char, - signature: b"uoo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v1_events_proximity_in_types as *const _ }, - }, - wl_message { - name: b"proximity_out\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"down\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"up\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"pressure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"distance\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"tilt\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"rotation\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"slider\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"wheel\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_tool_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_tool_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_tool_v1_requests as *const _ }, - event_count: 19, - events: unsafe { &zwp_tablet_tool_v1_events as *const _ }, - }; -} -#[doc = "graphics tablet device\n\nThe wp_tablet interface represents one graphics tablet device. The\ntablet interface itself does not generate events; all events are\ngenerated by wp_tablet_tool objects when in proximity above a tablet.\n\nA tablet has a number of static characteristics, e.g. device name and\npid/vid. These capabilities are sent in an event sequence after the\nwp_tablet_seat.tablet_added event. This initial event sequence is\nterminated by a wp_tablet.done event."] -pub mod zwp_tablet_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tablet device name\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Name { name: String }, - #[doc = "tablet device USB vendor/product id\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Id { vid: u32, pid: u32 }, - #[doc = "path to the device\n\nA system-specific device path that indicates which device is behind\nthis wp_tablet. This information may be used to gather additional\ninformation about the device, e.g. through libwacom.\n\nA device may have more than one device path. If so, multiple\nwp_tablet.path events are sent. A device may be emulated and not\nhave a device path, and in that case this event will not be sent.\n\nThe format of the path is unspecified, it may be a device node, a\nsysfs path, or some other identifier. It is up to the client to\nidentify the string provided.\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Path { path: String }, - #[doc = "tablet description events sequence complete\n\nThis event is sent immediately to signal the end of the initial\nburst of descriptive events. A client may consider the static\ndescription of the tablet to be complete and finalize initialization\nof the tablet."] - Done, - #[doc = "tablet removed event\n\nSent when the tablet has been removed from the system. When a tablet\nis removed, some tools may be removed.\n\nWhen this event is received, the client must wp_tablet.destroy\nthe object."] - Removed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "name", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "id", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "path", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Name { .. } => 0, - Event::Id { .. } => 1, - Event::Path { .. } => 2, - Event::Done => 3, - Event::Removed => 4, - } - } - fn since(&self) -> u32 { - match *self { - Event::Name { .. } => 1, - Event::Id { .. } => 1, - Event::Path { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Id { - vid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - pid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Path { - path: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Id { - vid: _args[0].u, - pid: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Path { - path: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletV1(Proxy); - impl AsRef> for ZwpTabletV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_v1_interface } - } - } - impl ZwpTabletV1 { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PATH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v1_events: [wl_message; 5] = [ - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"id\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"path\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_v1_requests as *const _ }, - event_count: 5, - events: unsafe { &zwp_tablet_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs deleted file mode 100644 index f1d378a..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs +++ /dev/null @@ -1,3851 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "controller object for graphic tablet devices\n\nAn object that provides access to the graphics tablets available on this\nsystem. All tablets are associated with a seat, to get access to the\nactual tablets, use wp_tablet_manager.get_tablet_seat."] -pub mod zwp_tablet_manager_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - GetTabletSeat { seat: super::wl_seat::WlSeat }, - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_tablet_seat", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetTabletSeat { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetTabletSeat { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_tablet_seat_v2::ZwpTabletSeatV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetTabletSeat { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetTabletSeat { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletManagerV2(Proxy); - impl AsRef> for ZwpTabletManagerV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletManagerV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletManagerV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletManagerV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletManagerV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletManagerV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_manager_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_manager_v2_interface } - } - } - impl ZwpTabletManagerV2 { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - pub fn get_tablet_seat( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetTabletSeat { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TABLET_SEAT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_tablet_manager_v2_requests_get_tablet_seat_types: [*const wl_interface; 2] = [ - unsafe { &super::zwp_tablet_seat_v2::zwp_tablet_seat_v2_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_manager_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"get_tablet_seat\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_manager_v2_requests_get_tablet_seat_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_manager_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_manager_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_manager_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "controller object for graphic tablet devices of a seat\n\nAn object that provides access to the graphics tablets available on this\nseat. After binding to this interface, the compositor sends a set of\nwp_tablet_seat.tablet_added and wp_tablet_seat.tool_added events."] -pub mod zwp_tablet_seat_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "new device notification\n\nThis event is sent whenever a new tablet becomes available on this\nseat. This event only provides the object id of the tablet, any\nstatic information about the tablet (device name, vid/pid, etc.) is\nsent through the wp_tablet interface."] - TabletAdded { - id: Main, - }, - #[doc = "a new tool has been used with a tablet\n\nThis event is sent whenever a tool that has not previously been used\nwith a tablet comes into use. This event only provides the object id\nof the tool; any static information about the tool (capabilities,\ntype, etc.) is sent through the wp_tablet_tool interface."] - ToolAdded { - id: Main, - }, - #[doc = "new pad notification\n\nThis event is sent whenever a new pad is known to the system. Typically,\npads are physically attached to tablets and a pad_added event is\nsent immediately after the wp_tablet_seat.tablet_added.\nHowever, some standalone pad devices logically attach to tablets at\nruntime, and the client must wait for wp_tablet_pad.enter to know\nthe tablet a pad is attached to.\n\nThis event only provides the object id of the pad. All further\nfeatures (buttons, strips, rings) are sent through the wp_tablet_pad\ninterface."] - PadAdded { - id: Main, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "tablet_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "tool_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "pad_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::TabletAdded { .. } => 0, - Event::ToolAdded { .. } => 1, - Event::PadAdded { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::TabletAdded { .. } => 1, - Event::ToolAdded { .. } => 1, - Event::PadAdded { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::< - super::zwp_tablet_tool_v2::ZwpTabletToolV2, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_tablet_pad_v2::ZwpTabletPadV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::TabletAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::ToolAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::PadAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::TabletAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ToolAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PadAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletSeatV2(Proxy); - impl AsRef> for ZwpTabletSeatV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletSeatV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletSeatV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletSeatV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletSeatV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletSeatV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_seat_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_seat_v2_interface } - } - } - impl ZwpTabletSeatV2 { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TABLET_ADDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TOOL_ADDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PAD_ADDED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_tablet_seat_v2_events_tablet_added_types: [*const wl_interface; 1] = - [unsafe { &super::zwp_tablet_v2::zwp_tablet_v2_interface as *const wl_interface }]; - static mut zwp_tablet_seat_v2_events_tool_added_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_tool_v2::zwp_tablet_tool_v2_interface as *const wl_interface - }]; - static mut zwp_tablet_seat_v2_events_pad_added_types: [*const wl_interface; 1] = - [ - unsafe { - &super::zwp_tablet_pad_v2::zwp_tablet_pad_v2_interface as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v2_events: [wl_message; 3] = [ - wl_message { - name: b"tablet_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v2_events_tablet_added_types as *const _ }, - }, - wl_message { - name: b"tool_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v2_events_tool_added_types as *const _ }, - }, - wl_message { - name: b"pad_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v2_events_pad_added_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_seat_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_seat_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_seat_v2_requests as *const _ }, - event_count: 3, - events: unsafe { &zwp_tablet_seat_v2_events as *const _ }, - }; -} -#[doc = "a physical tablet tool\n\nAn object that represents a physical tool that has been, or is\ncurrently in use with a tablet in this seat. Each wp_tablet_tool\nobject stays valid until the client destroys it; the compositor\nreuses the wp_tablet_tool object to indicate that the object's\nrespective physical tool has come into proximity of a tablet again.\n\nA wp_tablet_tool object's relation to a physical tool depends on the\ntablet's ability to report serial numbers. If the tablet supports\nthis capability, then the object represents a specific physical tool\nand can be identified even when used on multiple tablets.\n\nA tablet tool has a number of static characteristics, e.g. tool type,\nhardware_serial and capabilities. These capabilities are sent in an\nevent sequence after the wp_tablet_seat.tool_added event before any\nactual events from this tool. This initial event sequence is\nterminated by a wp_tablet_tool.done event.\n\nTablet tool events are grouped by wp_tablet_tool.frame events.\nAny events received before a wp_tablet_tool.frame event should be\nconsidered part of the same hardware state change."] -pub mod zwp_tablet_tool_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "a physical tool type\n\nDescribes the physical type of a tool. The physical type of a tool\ngenerally defines its base usage.\n\nThe mouse tool represents a mouse-shaped tool that is not a relative\ndevice but bound to the tablet's surface, providing absolute\ncoordinates.\n\nThe lens tool is a mouse-shaped tool with an attached lens to\nprovide precision focus."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Type { - #[doc = "Pen"] - Pen = 320, - #[doc = "Eraser"] - Eraser = 321, - #[doc = "Brush"] - Brush = 322, - #[doc = "Pencil"] - Pencil = 323, - #[doc = "Airbrush"] - Airbrush = 324, - #[doc = "Finger"] - Finger = 325, - #[doc = "Mouse"] - Mouse = 326, - #[doc = "Lens"] - Lens = 327, - } - impl Type { - pub fn from_raw(n: u32) -> Option { - match n { - 320 => Some(Type::Pen), - 321 => Some(Type::Eraser), - 322 => Some(Type::Brush), - 323 => Some(Type::Pencil), - 324 => Some(Type::Airbrush), - 325 => Some(Type::Finger), - 326 => Some(Type::Mouse), - 327 => Some(Type::Lens), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "capability flags for a tool\n\nDescribes extra capabilities on a tablet.\n\nAny tool must provide x and y values, extra axes are\ndevice-specific."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Capability { - #[doc = "Tilt axes"] - Tilt = 1, - #[doc = "Pressure axis"] - Pressure = 2, - #[doc = "Distance axis"] - Distance = 3, - #[doc = "Z-rotation axis"] - Rotation = 4, - #[doc = "Slider axis"] - Slider = 5, - #[doc = "Wheel axis"] - Wheel = 6, - } - impl Capability { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Capability::Tilt), - 2 => Some(Capability::Pressure), - 3 => Some(Capability::Distance), - 4 => Some(Capability::Rotation), - 5 => Some(Capability::Slider), - 6 => Some(Capability::Wheel), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical button state\n\nDescribes the physical state of a button that produced the button event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "button is not pressed"] - Released = 0, - #[doc = "button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a wp_tablet_tool cursor. A\nsurface may only ever be used as the cursor surface for one\nwp_tablet_tool. If the surface already has another role or has\npreviously been used as cursor surface for a different tool, a\nprotocol error is raised."] - SetCursor { - serial: u32, - surface: Option, - hotspot_x: i32, - hotspot_y: i32, - }, - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_cursor", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetCursor { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetCursor { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(hotspot_x), - Argument::Int(hotspot_y), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].i = hotspot_x; - _args_array[3].i = hotspot_y; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tool type\n\nThe tool type is the high-level type of the tool and usually decides\nthe interaction expected from this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Type { tool_type: Type }, - #[doc = "unique hardware serial number of the tool\n\nIf the physical tool can be identified by a unique 64-bit serial\nnumber, this event notifies the client of this serial number.\n\nIf multiple tablets are available in the same seat and the tool is\nuniquely identifiable by the serial number, that tool may move\nbetween tablets.\n\nOtherwise, if the tool has no serial number and this event is\nmissing, the tool is tied to the tablet it first comes into\nproximity with. Even if the physical tool is used on multiple\ntablets, separate wp_tablet_tool objects will be created, one per\ntablet.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareSerial { - hardware_serial_hi: u32, - hardware_serial_lo: u32, - }, - #[doc = "hardware id notification in Wacom's format\n\nThis event notifies the client of a hardware id available on this tool.\n\nThe hardware id is a device-specific 64-bit id that provides extra\ninformation about the tool in use, beyond the wl_tool.type\nenumeration. The format of the id is specific to tablets made by\nWacom Inc. For example, the hardware id of a Wacom Grip\nPen (a stylus) is 0x802.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareIdWacom { - hardware_id_hi: u32, - hardware_id_lo: u32, - }, - #[doc = "tool capability notification\n\nThis event notifies the client of any capabilities of this tool,\nbeyond the main set of x/y axes and tip up/down detection.\n\nOne event is sent for each extra capability available on this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Capability { capability: Capability }, - #[doc = "tool description events sequence complete\n\nThis event signals the end of the initial burst of descriptive\nevents. A client may consider the static description of the tool to\nbe complete and finalize initialization of the tool."] - Done, - #[doc = "tool removed\n\nThis event is sent when the tool is removed from the system and will\nsend no further events. Should the physical tool come back into\nproximity later, a new wp_tablet_tool object will be created.\n\nIt is compositor-dependent when a tool is removed. A compositor may\nremove a tool on proximity out, tablet removal or any other reason.\nA compositor may also keep a tool alive until shutdown.\n\nIf the tool is currently in proximity, a proximity_out event will be\nsent before the removed event. See wp_tablet_tool.proximity_out for\nthe handling of any buttons logically down.\n\nWhen this event is received, the client must wp_tablet_tool.destroy\nthe object."] - Removed, - #[doc = "proximity in event\n\nNotification that this tool is focused on a certain surface.\n\nThis event can be received when the tool has moved from one surface to\nanother, or when the tool has come back into proximity above the\nsurface.\n\nIf any button is logically down when the tool comes into proximity,\nthe respective button event is sent after the proximity_in event but\nwithin the same frame as the proximity_in event."] - ProximityIn { - serial: u32, - tablet: super::zwp_tablet_v2::ZwpTabletV2, - surface: super::wl_surface::WlSurface, - }, - #[doc = "proximity out event\n\nNotification that this tool has either left proximity, or is no\nlonger focused on a certain surface.\n\nWhen the tablet tool leaves proximity of the tablet, button release\nevents are sent for each button that was held down at the time of\nleaving proximity. These events are sent before the proximity_out\nevent but within the same wp_tablet.frame.\n\nIf the tool stays within proximity of the tablet, but the focus\nchanges from one surface to another, a button release event may not\nbe sent until the button is actually released or the tool leaves the\nproximity of the tablet."] - ProximityOut, - #[doc = "tablet tool is making contact\n\nSent whenever the tablet tool comes in contact with the surface of the\ntablet.\n\nIf the tool is already in contact with the tablet when entering the\ninput region, the client owning said region will receive a\nwp_tablet.proximity_in event, followed by a wp_tablet.down\nevent and a wp_tablet.frame event.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool in\nlogical contact until a minimum physical pressure threshold is\nexceeded."] - Down { serial: u32 }, - #[doc = "tablet tool is no longer making contact\n\nSent whenever the tablet tool stops making contact with the surface of\nthe tablet, or when the tablet tool moves out of the input region\nand the compositor grab (if any) is dismissed.\n\nIf the tablet tool moves out of the input region while in contact\nwith the surface of the tablet and the compositor does not have an\nongoing grab on the surface, the client owning said region will\nreceive a wp_tablet.up event, followed by a wp_tablet.proximity_out\nevent and a wp_tablet.frame event. If the compositor has an ongoing\ngrab on this device, this event sequence is sent whenever the grab\nis dismissed in the future.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool out\nof logical contact until physical pressure falls below a specific\nthreshold."] - Up, - #[doc = "motion event\n\nSent whenever a tablet tool moves."] - Motion { x: f64, y: f64 }, - #[doc = "pressure change event\n\nSent whenever the pressure axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that pressure may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Pressure { pressure: u32 }, - #[doc = "distance change event\n\nSent whenever the distance axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that distance may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Distance { distance: u32 }, - #[doc = "tilt change event\n\nSent whenever one or both of the tilt axes on a tool change. Each tilt\nvalue is in degrees, relative to the z-axis of the tablet.\nThe angle is positive when the top of a tool tilts along the\npositive x or y axis."] - Tilt { tilt_x: f64, tilt_y: f64 }, - #[doc = "z-rotation change event\n\nSent whenever the z-rotation axis on the tool changes. The\nrotation value is in degrees clockwise from the tool's\nlogical neutral position."] - Rotation { degrees: f64 }, - #[doc = "Slider position change event\n\nSent whenever the slider position on the tool changes. The\nvalue is normalized between -65535 and 65535, with 0 as the logical\nneutral position of the slider.\n\nThe slider is available on e.g. the Wacom Airbrush tool."] - Slider { position: i32 }, - #[doc = "Wheel delta event\n\nSent whenever the wheel on the tool emits an event. This event\ncontains two values for the same axis change. The degrees value is\nin the same orientation as the wl_pointer.vertical_scroll axis. The\nclicks value is in discrete logical clicks of the mouse wheel. This\nvalue may be zero if the movement of the wheel was less\nthan one logical click.\n\nClients should choose either value and avoid mixing degrees and\nclicks. The compositor may accumulate values smaller than a logical\nclick and emulate click events when a certain threshold is met.\nThus, wl_tablet_tool.wheel events with non-zero clicks values may\nhave different degrees values."] - Wheel { degrees: f64, clicks: i32 }, - #[doc = "button event\n\nSent whenever a button on the tool is pressed or released.\n\nIf a button is held down when the tool moves in or out of proximity,\nbutton events are generated by the compositor. See\nwp_tablet_tool.proximity_in and wp_tablet_tool.proximity_out for\ndetails."] - Button { - serial: u32, - button: u32, - state: ButtonState, - }, - #[doc = "frame event\n\nMarks the end of a series of axis and/or button updates from the\ntablet. The Wayland protocol requires axis updates to be sent\nsequentially, however all events within a frame should be considered\none hardware event."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "type", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_serial", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_id_wacom", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "capability", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "proximity_in", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "proximity_out", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "down", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "up", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "pressure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "distance", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "tilt", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "rotation", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "slider", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "wheel", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Type { .. } => 0, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 2, - Event::Capability { .. } => 3, - Event::Done => 4, - Event::Removed => 5, - Event::ProximityIn { .. } => 6, - Event::ProximityOut => 7, - Event::Down { .. } => 8, - Event::Up => 9, - Event::Motion { .. } => 10, - Event::Pressure { .. } => 11, - Event::Distance { .. } => 12, - Event::Tilt { .. } => 13, - Event::Rotation { .. } => 14, - Event::Slider { .. } => 15, - Event::Wheel { .. } => 16, - Event::Button { .. } => 17, - Event::Frame { .. } => 18, - } - } - fn since(&self) -> u32 { - match *self { - Event::Type { .. } => 1, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 1, - Event::Capability { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - Event::ProximityIn { .. } => 1, - Event::ProximityOut => 1, - Event::Down { .. } => 1, - Event::Up => 1, - Event::Motion { .. } => 1, - Event::Pressure { .. } => 1, - Event::Distance { .. } => 1, - Event::Tilt { .. } => 1, - Event::Rotation { .. } => 1, - Event::Slider { .. } => 1, - Event::Wheel { .. } => 1, - Event::Button { .. } => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Type { - tool_type: { - if let Some(Argument::Uint(val)) = args.next() { - Type::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareSerial { - hardware_serial_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_serial_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareIdWacom { - hardware_id_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_id_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capability { - capability: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::ProximityIn { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tablet: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::Down { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 9 => Ok(Event::Up), - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Pressure { - pressure: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::Distance { - distance: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 13 => { - let mut args = msg.args.into_iter(); - Ok(Event::Tilt { - tilt_x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - tilt_y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 14 => { - let mut args = msg.args.into_iter(); - Ok(Event::Rotation { - degrees: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 15 => { - let mut args = msg.args.into_iter(); - Ok(Event::Slider { - position: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 16 => { - let mut args = msg.args.into_iter(); - Ok(Event::Wheel { - degrees: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - clicks: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 17 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 18 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Type { - tool_type: Type::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareSerial { - hardware_serial_hi: _args[0].u, - hardware_serial_lo: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareIdWacom { - hardware_id_hi: _args[0].u, - hardware_id_lo: _args[1].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capability { - capability: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::ProximityIn { - serial: _args[0].u, - tablet: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Down { serial: _args[0].u }) - } - 9 => Ok(Event::Up), - 10 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Motion { - x: (_args[0].f as f64) / 256., - y: (_args[1].f as f64) / 256., - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Pressure { - pressure: _args[0].u, - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Distance { - distance: _args[0].u, - }) - } - 13 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Tilt { - tilt_x: (_args[0].f as f64) / 256., - tilt_y: (_args[1].f as f64) / 256., - }) - } - 14 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Rotation { - degrees: (_args[0].f as f64) / 256., - }) - } - 15 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Slider { - position: _args[0].i, - }) - } - 16 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Wheel { - degrees: (_args[0].f as f64) / 256., - clicks: _args[1].i, - }) - } - 17 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Button { - serial: _args[0].u, - button: _args[1].u, - state: ButtonState::from_raw(_args[2].u).ok_or(())?, - }) - } - 18 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletToolV2(Proxy); - impl AsRef> for ZwpTabletToolV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletToolV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletToolV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletToolV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletToolV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletToolV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_tool_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_tool_v2_interface } - } - } - impl ZwpTabletToolV2 { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a wp_tablet_tool cursor. A\nsurface may only ever be used as the cursor surface for one\nwp_tablet_tool. If the surface already has another role or has\npreviously been used as cursor surface for a different tool, a\nprotocol error is raised."] - pub fn set_cursor( - &self, - serial: u32, - surface: Option<&super::wl_surface::WlSurface>, - hotspot_x: i32, - hotspot_y: i32, - ) -> () { - let msg = Request::SetCursor { - serial: serial, - surface: surface.map(|o| o.clone()), - hotspot_x: hotspot_x, - hotspot_y: hotspot_y, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_SERIAL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_ID_WACOM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_IN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_OUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DOWN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESSURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DISTANCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TILT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ROTATION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SLIDER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_WHEEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - static mut zwp_tablet_tool_v2_requests_set_cursor_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_cursor\0" as *const u8 as *const c_char, - signature: b"u?oii\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v2_requests_set_cursor_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_tablet_tool_v2_events_proximity_in_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::zwp_tablet_v2::zwp_tablet_v2_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v2_events: [wl_message; 19] = [ - wl_message { - name: b"type\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_serial\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_id_wacom\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"capability\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"proximity_in\0" as *const u8 as *const c_char, - signature: b"uoo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v2_events_proximity_in_types as *const _ }, - }, - wl_message { - name: b"proximity_out\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"down\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"up\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"pressure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"distance\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"tilt\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"rotation\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"slider\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"wheel\0" as *const u8 as *const c_char, - signature: b"fi\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_tool_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_tool_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_tool_v2_requests as *const _ }, - event_count: 19, - events: unsafe { &zwp_tablet_tool_v2_events as *const _ }, - }; -} -#[doc = "graphics tablet device\n\nThe wp_tablet interface represents one graphics tablet device. The\ntablet interface itself does not generate events; all events are\ngenerated by wp_tablet_tool objects when in proximity above a tablet.\n\nA tablet has a number of static characteristics, e.g. device name and\npid/vid. These capabilities are sent in an event sequence after the\nwp_tablet_seat.tablet_added event. This initial event sequence is\nterminated by a wp_tablet.done event."] -pub mod zwp_tablet_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tablet device name\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Name { name: String }, - #[doc = "tablet device USB vendor/product id\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Id { vid: u32, pid: u32 }, - #[doc = "path to the device\n\nA system-specific device path that indicates which device is behind\nthis wp_tablet. This information may be used to gather additional\ninformation about the device, e.g. through libwacom.\n\nA device may have more than one device path. If so, multiple\nwp_tablet.path events are sent. A device may be emulated and not\nhave a device path, and in that case this event will not be sent.\n\nThe format of the path is unspecified, it may be a device node, a\nsysfs path, or some other identifier. It is up to the client to\nidentify the string provided.\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Path { path: String }, - #[doc = "tablet description events sequence complete\n\nThis event is sent immediately to signal the end of the initial\nburst of descriptive events. A client may consider the static\ndescription of the tablet to be complete and finalize initialization\nof the tablet."] - Done, - #[doc = "tablet removed event\n\nSent when the tablet has been removed from the system. When a tablet\nis removed, some tools may be removed.\n\nWhen this event is received, the client must wp_tablet.destroy\nthe object."] - Removed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "name", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "id", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "path", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Name { .. } => 0, - Event::Id { .. } => 1, - Event::Path { .. } => 2, - Event::Done => 3, - Event::Removed => 4, - } - } - fn since(&self) -> u32 { - match *self { - Event::Name { .. } => 1, - Event::Id { .. } => 1, - Event::Path { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Id { - vid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - pid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Path { - path: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Id { - vid: _args[0].u, - pid: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Path { - path: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletV2(Proxy); - impl AsRef> for ZwpTabletV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_v2_interface } - } - } - impl ZwpTabletV2 { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PATH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v2_events: [wl_message; 5] = [ - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"id\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"path\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_v2_requests as *const _ }, - event_count: 5, - events: unsafe { &zwp_tablet_v2_events as *const _ }, - }; -} -#[doc = "pad ring\n\nA circular interaction area, such as the touch ring on the Wacom Intuos\nPro series tablets.\n\nEvents on a ring are logically grouped by the wl_tablet_pad_ring.frame\nevent."] -pub mod zwp_tablet_pad_ring_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "ring axis source\n\nDescribes the source types for ring events. This indicates to the\nclient how a ring event was physically generated; a client may\nadjust the user interface accordingly. For example, events\nfrom a \"finger\" source may trigger kinetic scrolling."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Source { - #[doc = "finger"] - Finger = 1, - } - impl Source { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Source::Finger), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set compositor feedback\n\nRequest that the compositor use the provided feedback string\nassociated with this ring. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the ring is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the ring; compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nring. Requests providing other serials than the most recent one will be\nignored."] - SetFeedback { description: String, serial: u32 }, - #[doc = "destroy the ring object\n\nThis destroys the client's resource for this ring object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_feedback", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetFeedback { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetFeedback { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetFeedback { - description, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(description.into()) - })), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetFeedback { - description, - serial, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(description).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "ring event source\n\nSource information for ring events.\n\nThis event does not occur on its own. It is sent before a\nwp_tablet_pad_ring.frame event and carries the source information\nfor all events within that frame.\n\nThe source specifies how this event was generated. If the source is\nwp_tablet_pad_ring.source.finger, a wp_tablet_pad_ring.stop event\nwill be sent when the user lifts the finger off the device.\n\nThis event is optional. If the source is unknown for an interaction,\nno event is sent."] - Source { source: Source }, - #[doc = "angle changed\n\nSent whenever the angle on a ring changes.\n\nThe angle is provided in degrees clockwise from the logical\nnorth of the ring in the pad's current rotation."] - Angle { degrees: f64 }, - #[doc = "interaction stopped\n\nStop notification for ring events.\n\nFor some wp_tablet_pad_ring.source types, a wp_tablet_pad_ring.stop\nevent is sent to notify a client that the interaction with the ring\nhas terminated. This enables the client to implement kinetic scrolling.\nSee the wp_tablet_pad_ring.source documentation for information on\nwhen this event may be generated.\n\nAny wp_tablet_pad_ring.angle events with the same source after this\nevent should be considered as the start of a new interaction."] - Stop, - #[doc = "end of a ring event sequence\n\nIndicates the end of a set of ring events that logically belong\ntogether. A client is expected to accumulate the data in all events\nwithin the frame before proceeding.\n\nAll wp_tablet_pad_ring events before a wp_tablet_pad_ring.frame event belong\nlogically together. For example, on termination of a finger interaction\non a ring the compositor will send a wp_tablet_pad_ring.source event,\na wp_tablet_pad_ring.stop event and a wp_tablet_pad_ring.frame event.\n\nA wp_tablet_pad_ring.frame event is sent for every logical event\ngroup, even if the group only contains a single wp_tablet_pad_ring\nevent. Specifically, a client may get a sequence: angle, frame,\nangle, frame, etc."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "source", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "angle", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Source { .. } => 0, - Event::Angle { .. } => 1, - Event::Stop => 2, - Event::Frame { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Source { .. } => 1, - Event::Angle { .. } => 1, - Event::Stop => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Source { - source: { - if let Some(Argument::Uint(val)) = args.next() { - Source::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Angle { - degrees: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Stop), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Source { - source: Source::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Angle { - degrees: (_args[0].f as f64) / 256., - }) - } - 2 => Ok(Event::Stop), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadRingV2(Proxy); - impl AsRef> for ZwpTabletPadRingV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadRingV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadRingV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadRingV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadRingV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadRingV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_ring_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_ring_v2_interface } - } - } - impl ZwpTabletPadRingV2 { - #[doc = "set compositor feedback\n\nRequest that the compositor use the provided feedback string\nassociated with this ring. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the ring is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the ring; compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nring. Requests providing other serials than the most recent one will be\nignored."] - pub fn set_feedback(&self, description: String, serial: u32) -> () { - let msg = Request::SetFeedback { - description: description, - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the ring object\n\nThis destroys the client's resource for this ring object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_ring_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_feedback\0" as *const u8 as *const c_char, - signature: b"su\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_ring_v2_events: [wl_message; 4] = [ - wl_message { - name: b"source\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"angle\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_ring_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_ring_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_pad_ring_v2_requests as *const _ }, - event_count: 4, - events: unsafe { &zwp_tablet_pad_ring_v2_events as *const _ }, - }; -} -#[doc = "pad strip\n\nA linear interaction area, such as the strips found in Wacom Cintiq\nmodels.\n\nEvents on a strip are logically grouped by the wl_tablet_pad_strip.frame\nevent."] -pub mod zwp_tablet_pad_strip_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "strip axis source\n\nDescribes the source types for strip events. This indicates to the\nclient how a strip event was physically generated; a client may\nadjust the user interface accordingly. For example, events\nfrom a \"finger\" source may trigger kinetic scrolling."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Source { - #[doc = "finger"] - Finger = 1, - } - impl Source { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Source::Finger), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this strip. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the strip is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the strip, and compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nstrip. Requests providing other serials than the most recent one will be\nignored."] - SetFeedback { description: String, serial: u32 }, - #[doc = "destroy the strip object\n\nThis destroys the client's resource for this strip object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_feedback", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetFeedback { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetFeedback { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetFeedback { - description, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(description.into()) - })), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetFeedback { - description, - serial, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(description).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "strip event source\n\nSource information for strip events.\n\nThis event does not occur on its own. It is sent before a\nwp_tablet_pad_strip.frame event and carries the source information\nfor all events within that frame.\n\nThe source specifies how this event was generated. If the source is\nwp_tablet_pad_strip.source.finger, a wp_tablet_pad_strip.stop event\nwill be sent when the user lifts their finger off the device.\n\nThis event is optional. If the source is unknown for an interaction,\nno event is sent."] - Source { source: Source }, - #[doc = "position changed\n\nSent whenever the position on a strip changes.\n\nThe position is normalized to a range of [0, 65535], the 0-value\nrepresents the top-most and/or left-most position of the strip in\nthe pad's current rotation."] - Position { position: u32 }, - #[doc = "interaction stopped\n\nStop notification for strip events.\n\nFor some wp_tablet_pad_strip.source types, a wp_tablet_pad_strip.stop\nevent is sent to notify a client that the interaction with the strip\nhas terminated. This enables the client to implement kinetic\nscrolling. See the wp_tablet_pad_strip.source documentation for\ninformation on when this event may be generated.\n\nAny wp_tablet_pad_strip.position events with the same source after this\nevent should be considered as the start of a new interaction."] - Stop, - #[doc = "end of a strip event sequence\n\nIndicates the end of a set of events that represent one logical\nhardware strip event. A client is expected to accumulate the data\nin all events within the frame before proceeding.\n\nAll wp_tablet_pad_strip events before a wp_tablet_pad_strip.frame event belong\nlogically together. For example, on termination of a finger interaction\non a strip the compositor will send a wp_tablet_pad_strip.source event,\na wp_tablet_pad_strip.stop event and a wp_tablet_pad_strip.frame\nevent.\n\nA wp_tablet_pad_strip.frame event is sent for every logical event\ngroup, even if the group only contains a single wp_tablet_pad_strip\nevent. Specifically, a client may get a sequence: position, frame,\nposition, frame, etc."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "source", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "position", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Source { .. } => 0, - Event::Position { .. } => 1, - Event::Stop => 2, - Event::Frame { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Source { .. } => 1, - Event::Position { .. } => 1, - Event::Stop => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Source { - source: { - if let Some(Argument::Uint(val)) = args.next() { - Source::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Position { - position: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Stop), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Source { - source: Source::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Position { - position: _args[0].u, - }) - } - 2 => Ok(Event::Stop), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadStripV2(Proxy); - impl AsRef> for ZwpTabletPadStripV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadStripV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadStripV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadStripV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadStripV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadStripV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_strip_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_strip_v2_interface } - } - } - impl ZwpTabletPadStripV2 { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this strip. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the strip is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the strip, and compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nstrip. Requests providing other serials than the most recent one will be\nignored."] - pub fn set_feedback(&self, description: String, serial: u32) -> () { - let msg = Request::SetFeedback { - description: description, - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the strip object\n\nThis destroys the client's resource for this strip object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_strip_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_feedback\0" as *const u8 as *const c_char, - signature: b"su\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_strip_v2_events: [wl_message; 4] = [ - wl_message { - name: b"source\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"position\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_strip_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_strip_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_pad_strip_v2_requests as *const _ }, - event_count: 4, - events: unsafe { &zwp_tablet_pad_strip_v2_events as *const _ }, - }; -} -#[doc = "a set of buttons, rings and strips\n\nA pad group describes a distinct (sub)set of buttons, rings and strips\npresent in the tablet. The criteria of this grouping is usually positional,\neg. if a tablet has buttons on the left and right side, 2 groups will be\npresented. The physical arrangement of groups is undisclosed and may\nchange on the fly.\n\nPad groups will announce their features during pad initialization. Between\nthe corresponding wp_tablet_pad.group event and wp_tablet_pad_group.done, the\npad group will announce the buttons, rings and strips contained in it,\nplus the number of supported modes.\n\nModes are a mechanism to allow multiple groups of actions for every element\nin the pad group. The number of groups and available modes in each is\npersistent across device plugs. The current mode is user-switchable, it\nwill be announced through the wp_tablet_pad_group.mode_switch event both\nwhenever it is switched, and after wp_tablet_pad.enter.\n\nThe current mode logically applies to all elements in the pad group,\nalthough it is at clients' discretion whether to actually perform different\nactions, and/or issue the respective .set_feedback requests to notify the\ncompositor. See the wp_tablet_pad_group.mode_switch event for more details."] -pub mod zwp_tablet_pad_group_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad_group object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "buttons announced\n\nSent on wp_tablet_pad_group initialization to announce the available\nbuttons in the group. Button indices start at 0, a button may only be\nin one group at a time.\n\nThis event is first sent in the initial burst of events before the\nwp_tablet_pad_group.done event.\n\nSome buttons are reserved by the compositor. These buttons may not be\nassigned to any wp_tablet_pad_group. Compositors may broadcast this\nevent in the case of changes to the mapping of these reserved buttons.\nIf the compositor happens to reserve all buttons in a group, this event\nwill be sent with an empty array."] - Buttons { buttons: Vec }, - #[doc = "ring announced\n\nSent on wp_tablet_pad_group initialization to announce available rings.\nOne event is sent for each ring available on this pad group.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad_group.done event."] - Ring { - ring: Main, - }, - #[doc = "strip announced\n\nSent on wp_tablet_pad initialization to announce available strips.\nOne event is sent for each strip available on this pad group.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad_group.done event."] - Strip { - strip: Main, - }, - #[doc = "mode-switch ability announced\n\nSent on wp_tablet_pad_group initialization to announce that the pad\ngroup may switch between modes. A client may use a mode to store a\nspecific configuration for buttons, rings and strips and use the\nwl_tablet_pad_group.mode_switch event to toggle between these\nconfigurations. Mode indices start at 0.\n\nSwitching modes is compositor-dependent. See the\nwp_tablet_pad_group.mode_switch event for more details.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad_group.done event. This event is only sent when more than\nmore than one mode is available."] - Modes { modes: u32 }, - #[doc = "tablet group description events sequence complete\n\nThis event is sent immediately to signal the end of the initial\nburst of descriptive events. A client may consider the static\ndescription of the tablet to be complete and finalize initialization\nof the tablet group."] - Done, - #[doc = "mode switch event\n\nNotification that the mode was switched.\n\nA mode applies to all buttons, rings and strips in a group\nsimultaneously, but a client is not required to assign different actions\nfor each mode. For example, a client may have mode-specific button\nmappings but map the ring to vertical scrolling in all modes. Mode\nindices start at 0.\n\nSwitching modes is compositor-dependent. The compositor may provide\nvisual cues to the client about the mode, e.g. by toggling LEDs on\nthe tablet device. Mode-switching may be software-controlled or\ncontrolled by one or more physical buttons. For example, on a Wacom\nIntuos Pro, the button inside the ring may be assigned to switch\nbetween modes.\n\nThe compositor will also send this event after wp_tablet_pad.enter on\neach group in order to notify of the current mode. Groups that only\nfeature one mode will use mode=0 when emitting this event.\n\nIf a button action in the new mode differs from the action in the\nprevious mode, the client should immediately issue a\nwp_tablet_pad.set_feedback request for each changed button.\n\nIf a ring or strip action in the new mode differs from the action\nin the previous mode, the client should immediately issue a\nwp_tablet_ring.set_feedback or wp_tablet_strip.set_feedback request\nfor each changed ring or strip."] - ModeSwitch { time: u32, serial: u32, mode: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "buttons", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "ring", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "strip", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "modes", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "mode_switch", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Buttons { .. } => 0, - Event::Ring { .. } => 1, - Event::Strip { .. } => 2, - Event::Modes { .. } => 3, - Event::Done => 4, - Event::ModeSwitch { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Buttons { .. } => 1, - Event::Ring { .. } => 1, - Event::Strip { .. } => 1, - Event::Modes { .. } => 1, - Event::Done => 1, - Event::ModeSwitch { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_tablet_pad_ring_v2::ZwpTabletPadRingV2, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_tablet_pad_strip_v2::ZwpTabletPadStripV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Buttons { - buttons: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ring { - ring: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Strip { - strip: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modes { - modes: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Done), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::ModeSwitch { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mode: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Buttons { - buttons: { - let array = &*_args[0].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ring { - ring: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Strip { - strip: - Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Modes { modes: _args[0].u }) - } - 4 => Ok(Event::Done), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::ModeSwitch { - time: _args[0].u, - serial: _args[1].u, - mode: _args[2].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadGroupV2(Proxy); - impl AsRef> for ZwpTabletPadGroupV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadGroupV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadGroupV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadGroupV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadGroupV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadGroupV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_group_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_group_v2_interface } - } - } - impl ZwpTabletPadGroupV2 { - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad_group object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTONS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STRIP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODES_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SWITCH_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_group_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_tablet_pad_group_v2_events_ring_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_pad_ring_v2::zwp_tablet_pad_ring_v2_interface as *const wl_interface - }]; - static mut zwp_tablet_pad_group_v2_events_strip_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_pad_strip_v2::zwp_tablet_pad_strip_v2_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_group_v2_events: [wl_message; 6] = [ - wl_message { - name: b"buttons\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ring\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_group_v2_events_ring_types as *const _ }, - }, - wl_message { - name: b"strip\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_group_v2_events_strip_types as *const _ }, - }, - wl_message { - name: b"modes\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode_switch\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_group_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_group_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_pad_group_v2_requests as *const _ }, - event_count: 6, - events: unsafe { &zwp_tablet_pad_group_v2_events as *const _ }, - }; -} -#[doc = "a set of buttons, rings and strips\n\nA pad device is a set of buttons, rings and strips\nusually physically present on the tablet device itself. Some\nexceptions exist where the pad device is physically detached, e.g. the\nWacom ExpressKey Remote.\n\nPad devices have no axes that control the cursor and are generally\nauxiliary devices to the tool devices used on the tablet surface.\n\nA pad device has a number of static characteristics, e.g. the number\nof rings. These capabilities are sent in an event sequence after the\nwp_tablet_seat.pad_added event before any actual events from this pad.\nThis initial event sequence is terminated by a wp_tablet_pad.done\nevent.\n\nAll pad features (buttons, rings and strips) are logically divided into\ngroups and all pads have at least one group. The available groups are\nnotified through the wp_tablet_pad.group event; the compositor will\nemit one event per group before emitting wp_tablet_pad.done.\n\nGroups may have multiple modes. Modes allow clients to map multiple\nactions to a single pad feature. Only one mode can be active per group,\nalthough different groups may have different active modes."] -pub mod zwp_tablet_pad_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "physical button state\n\nDescribes the physical state of a button that caused the button\nevent."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "the button is not pressed"] - Released = 0, - #[doc = "the button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this button. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever a button is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with each button, and compositors may use\nthis information to offer visual feedback on the button layout\n(e.g. on-screen displays).\n\nButton indices start at 0. Setting the feedback string on a button\nthat is reserved by the compositor (i.e. not belonging to any\nwp_tablet_pad_group) does not generate an error but the compositor\nis free to ignore the request.\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nbutton. Requests providing other serials than the most recent one will\nbe ignored."] - SetFeedback { - button: u32, - description: String, - serial: u32, - }, - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_feedback", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetFeedback { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetFeedback { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetFeedback { - button, - description, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(button), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(description.into()) - })), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetFeedback { - button, - description, - serial, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = button; - let _arg_1 = ::std::ffi::CString::new(description).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - _args_array[2].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "group announced\n\nSent on wp_tablet_pad initialization to announce available groups.\nOne event is sent for each pad group available.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad.done event. At least one group will be announced."] - Group { - pad_group: Main, - }, - #[doc = "path to the device\n\nA system-specific device path that indicates which device is behind\nthis wp_tablet_pad. This information may be used to gather additional\ninformation about the device, e.g. through libwacom.\n\nThe format of the path is unspecified, it may be a device node, a\nsysfs path, or some other identifier. It is up to the client to\nidentify the string provided.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad.done event."] - Path { path: String }, - #[doc = "buttons announced\n\nSent on wp_tablet_pad initialization to announce the available\nbuttons.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad.done event. This event is only sent when at least one\nbutton is available."] - Buttons { buttons: u32 }, - #[doc = "pad description event sequence complete\n\nThis event signals the end of the initial burst of descriptive\nevents. A client may consider the static description of the pad to\nbe complete and finalize initialization of the pad."] - Done, - #[doc = "physical button state\n\nSent whenever the physical state of a button changes."] - Button { - time: u32, - button: u32, - state: ButtonState, - }, - #[doc = "enter event\n\nNotification that this pad is focused on the specified surface."] - Enter { - serial: u32, - tablet: super::zwp_tablet_v2::ZwpTabletV2, - surface: super::wl_surface::WlSurface, - }, - #[doc = "enter event\n\nNotification that this pad is no longer focused on the specified\nsurface."] - Leave { - serial: u32, - surface: super::wl_surface::WlSurface, - }, - #[doc = "pad removed event\n\nSent when the pad has been removed from the system. When a tablet\nis removed its pad(s) will be removed too.\n\nWhen this event is received, the client must destroy all rings, strips\nand groups that were offered by this pad, and issue wp_tablet_pad.destroy\nthe pad itself."] - Removed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "group", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "path", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "buttons", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Group { .. } => 0, - Event::Path { .. } => 1, - Event::Buttons { .. } => 2, - Event::Done => 3, - Event::Button { .. } => 4, - Event::Enter { .. } => 5, - Event::Leave { .. } => 6, - Event::Removed => 7, - } - } - fn since(&self) -> u32 { - match *self { - Event::Group { .. } => 1, - Event::Path { .. } => 1, - Event::Buttons { .. } => 1, - Event::Done => 1, - Event::Button { .. } => 1, - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::Removed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_tablet_pad_group_v2::ZwpTabletPadGroupV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Group { - pad_group: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Path { - path: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Buttons { - buttons: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Done), - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tablet: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 7 => Ok(Event::Removed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Group { - pad_group: - Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Path { - path: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Buttons { - buttons: _args[0].u, - }) - } - 3 => Ok(Event::Done), - 4 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Button { - time: _args[0].u, - button: _args[1].u, - state: ButtonState::from_raw(_args[2].u).ok_or(())?, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Enter { - serial: _args[0].u, - tablet: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Leave { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - }) - } - 7 => Ok(Event::Removed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadV2(Proxy); - impl AsRef> for ZwpTabletPadV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_v2_interface } - } - } - impl ZwpTabletPadV2 { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this button. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever a button is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with each button, and compositors may use\nthis information to offer visual feedback on the button layout\n(e.g. on-screen displays).\n\nButton indices start at 0. Setting the feedback string on a button\nthat is reserved by the compositor (i.e. not belonging to any\nwp_tablet_pad_group) does not generate an error but the compositor\nis free to ignore the request.\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nbutton. Requests providing other serials than the most recent one will\nbe ignored."] - pub fn set_feedback(&self, button: u32, description: String, serial: u32) -> () { - let msg = Request::SetFeedback { - button: button, - description: description, - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GROUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PATH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTONS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_feedback\0" as *const u8 as *const c_char, - signature: b"usu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_tablet_pad_v2_events_group_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_pad_group_v2::zwp_tablet_pad_group_v2_interface as *const wl_interface - }]; - static mut zwp_tablet_pad_v2_events_enter_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::zwp_tablet_v2::zwp_tablet_v2_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut zwp_tablet_pad_v2_events_leave_types: [*const wl_interface; 2] = - [NULLPTR as *const wl_interface, unsafe { - &super::wl_surface::wl_surface_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_v2_events: [wl_message; 8] = [ - wl_message { - name: b"group\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_v2_events_group_types as *const _ }, - }, - wl_message { - name: b"path\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"buttons\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_v2_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"uo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_v2_events_leave_types as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_pad_v2_requests as *const _ }, - event_count: 8, - events: unsafe { &zwp_tablet_pad_v2_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs deleted file mode 100644 index 084d96d..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs +++ /dev/null @@ -1,1542 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "text input\n\nAn object used for text input. Adds support for text input and input\nmethods to applications. A text_input object is created from a\nwl_text_input_manager and corresponds typically to a text entry in an\napplication.\n\nRequests are used to activate/deactivate the text_input object and set\nstate information like surrounding and selected text or the content type.\nThe information about entered text is sent to the text_input object via\nthe pre-edit and commit events. Using this interface removes the need\nfor applications to directly process hardware key events and compose text\nout of them.\n\nText is generally UTF-8 encoded, indices and lengths are in bytes.\n\nSerials are used to synchronize the state between the text input and\nan input method. New serials are sent by the text input in the\ncommit_state request and are used by the input method to indicate\nthe known text input state in events like preedit_string, commit_string,\nand keysym. The text input can then ignore events from the input method\nwhich are based on an outdated state (for example after a reset).\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_text_input_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "content hint\n\nContent hint is a bitmask to allow to modify the behavior of the text\ninput."] pub struct ContentHint : u32 { # [doc = "no special behaviour"] const None = 0 ; # [doc = "auto completion, correction and capitalization"] const Default = 7 ; # [doc = "hidden and sensitive text"] const Password = 192 ; # [doc = "suggest word completions"] const AutoCompletion = 1 ; # [doc = "suggest word corrections"] const AutoCorrection = 2 ; # [doc = "switch to uppercase letters at the start of a sentence"] const AutoCapitalization = 4 ; # [doc = "prefer lowercase letters"] const Lowercase = 8 ; # [doc = "prefer uppercase letters"] const Uppercase = 16 ; # [doc = "prefer casing for titles and headings (can be language dependent)"] const Titlecase = 32 ; # [doc = "characters should be hidden"] const HiddenText = 64 ; # [doc = "typed text should not be stored"] const SensitiveData = 128 ; # [doc = "just latin characters should be entered"] const Latin = 256 ; # [doc = "the text input is multiline"] const Multiline = 512 ; } } - impl ContentHint { - pub fn from_raw(n: u32) -> Option { - Some(ContentHint::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "content purpose\n\nThe content purpose allows to specify the primary purpose of a text\ninput.\n\nThis allows an input method to show special purpose input panels with\nextra characters or to disallow some characters."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ContentPurpose { - #[doc = "default input, allowing all characters"] - Normal = 0, - #[doc = "allow only alphabetic characters"] - Alpha = 1, - #[doc = "allow only digits"] - Digits = 2, - #[doc = "input a number (including decimal separator and sign)"] - Number = 3, - #[doc = "input a phone number"] - Phone = 4, - #[doc = "input an URL"] - Url = 5, - #[doc = "input an email address"] - Email = 6, - #[doc = "input a name of a person"] - Name = 7, - #[doc = "input a password (combine with password or sensitive_data hint)"] - Password = 8, - #[doc = "input a date"] - Date = 9, - #[doc = "input a time"] - Time = 10, - #[doc = "input a date and time"] - Datetime = 11, - #[doc = "input for a terminal"] - Terminal = 12, - } - impl ContentPurpose { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ContentPurpose::Normal), - 1 => Some(ContentPurpose::Alpha), - 2 => Some(ContentPurpose::Digits), - 3 => Some(ContentPurpose::Number), - 4 => Some(ContentPurpose::Phone), - 5 => Some(ContentPurpose::Url), - 6 => Some(ContentPurpose::Email), - 7 => Some(ContentPurpose::Name), - 8 => Some(ContentPurpose::Password), - 9 => Some(ContentPurpose::Date), - 10 => Some(ContentPurpose::Time), - 11 => Some(ContentPurpose::Datetime), - 12 => Some(ContentPurpose::Terminal), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum PreeditStyle { - #[doc = "default style for composing text"] - Default = 0, - #[doc = "style should be the same as in non-composing text"] - None = 1, - Active = 2, - Inactive = 3, - Highlight = 4, - Underline = 5, - Selection = 6, - Incorrect = 7, - } - impl PreeditStyle { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(PreeditStyle::Default), - 1 => Some(PreeditStyle::None), - 2 => Some(PreeditStyle::Active), - 3 => Some(PreeditStyle::Inactive), - 4 => Some(PreeditStyle::Highlight), - 5 => Some(PreeditStyle::Underline), - 6 => Some(PreeditStyle::Selection), - 7 => Some(PreeditStyle::Incorrect), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum TextDirection { - #[doc = "automatic text direction based on text and language"] - Auto = 0, - #[doc = "left-to-right"] - Ltr = 1, - #[doc = "right-to-left"] - Rtl = 2, - } - impl TextDirection { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(TextDirection::Auto), - 1 => Some(TextDirection::Ltr), - 2 => Some(TextDirection::Rtl), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request activation\n\nRequests the text_input object to be activated (typically when the\ntext entry gets focus).\n\nThe seat argument is a wl_seat which maintains the focus for this\nactivation. The surface argument is a wl_surface assigned to the\ntext_input object and tracked for focus lost. The enter event\nis emitted on successful activation."] - Activate { - seat: super::wl_seat::WlSeat, - surface: super::wl_surface::WlSurface, - }, - #[doc = "request deactivation\n\nRequests the text_input object to be deactivated (typically when the\ntext entry lost focus). The seat argument is a wl_seat which was used\nfor activation."] - Deactivate { seat: super::wl_seat::WlSeat }, - #[doc = "show input panels\n\nRequests input panels (virtual keyboard) to show."] - ShowInputPanel, - #[doc = "hide input panels\n\nRequests input panels (virtual keyboard) to hide."] - HideInputPanel, - #[doc = "reset\n\nShould be called by an editor widget when the input state should be\nreset, for example after the text was changed outside of the normal\ninput method flow."] - Reset, - #[doc = "sets the surrounding text\n\nSets the plain surrounding text around the input position. Text is\nUTF-8 encoded. Cursor is the byte offset within the\nsurrounding text. Anchor is the byte offset of the\nselection anchor within the surrounding text. If there is no selected\ntext anchor, then it is the same as cursor."] - SetSurroundingText { - text: String, - cursor: u32, - anchor: u32, - }, - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some\nof the behavior.\n\nWhen no content type is explicitly set, a normal content purpose with\ndefault hints (auto completion, auto correction, auto capitalization)\nshould be assumed."] - SetContentType { - hint: ContentHint, - purpose: ContentPurpose, - }, - #[doc = ""] - SetCursorRectangle { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "sets preferred language\n\nSets a specific language. This allows for example a virtual keyboard to\nshow a language specific layout. The \"language\" argument is an RFC-3066\nformat language tag.\n\nIt could be used for example in a word processor to indicate the\nlanguage of the currently edited document or in an instant message\napplication which tracks languages of contacts."] - SetPreferredLanguage { language: String }, - #[doc = ""] - CommitState { serial: u32 }, - #[doc = ""] - InvokeAction { button: u32, index: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "activate", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "deactivate", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "show_input_panel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "hide_input_panel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "reset", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_cursor_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_preferred_language", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "commit_state", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "invoke_action", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Activate { .. } => 0, - Request::Deactivate { .. } => 1, - Request::ShowInputPanel => 2, - Request::HideInputPanel => 3, - Request::Reset => 4, - Request::SetSurroundingText { .. } => 5, - Request::SetContentType { .. } => 6, - Request::SetCursorRectangle { .. } => 7, - Request::SetPreferredLanguage { .. } => 8, - Request::CommitState { .. } => 9, - Request::InvokeAction { .. } => 10, - } - } - fn since(&self) -> u32 { - match *self { - Request::Activate { .. } => 1, - Request::Deactivate { .. } => 1, - Request::ShowInputPanel => 1, - Request::HideInputPanel => 1, - Request::Reset => 1, - Request::SetSurroundingText { .. } => 1, - Request::SetContentType { .. } => 1, - Request::SetCursorRectangle { .. } => 1, - Request::SetPreferredLanguage { .. } => 1, - Request::CommitState { .. } => 1, - Request::InvokeAction { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Activate { seat, surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Object(surface.as_ref().id()), - ], - }, - Request::Deactivate { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()),], - }, - Request::ShowInputPanel => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::HideInputPanel => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::Reset => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - Request::SetSurroundingText { - text, - cursor, - anchor, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Uint(cursor), - Argument::Uint(anchor), - ], - }, - Request::SetContentType { hint, purpose } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Uint(hint.to_raw()), - Argument::Uint(purpose.to_raw()), - ], - }, - Request::SetCursorRectangle { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetPreferredLanguage { language } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(language.into()) - })),], - }, - Request::CommitState { serial } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::Uint(serial),], - }, - Request::InvokeAction { button, index } => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![Argument::Uint(button), Argument::Uint(index),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Activate { seat, surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Deactivate { seat } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::ShowInputPanel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::HideInputPanel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::Reset => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - Request::SetSurroundingText { - text, - cursor, - anchor, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].u = cursor; - _args_array[2].u = anchor; - f(5, &mut _args_array) - } - Request::SetContentType { hint, purpose } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = hint.to_raw(); - _args_array[1].u = purpose.to_raw(); - f(6, &mut _args_array) - } - Request::SetCursorRectangle { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(7, &mut _args_array) - } - Request::SetPreferredLanguage { language } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(language).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(8, &mut _args_array) - } - Request::CommitState { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(9, &mut _args_array) - } - Request::InvokeAction { button, index } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = button; - _args_array[1].u = index; - f(10, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "enter event\n\nNotify the text_input object when it received focus. Typically in\nresponse to an activate request."] - Enter { - surface: super::wl_surface::WlSurface, - }, - #[doc = "leave event\n\nNotify the text_input object when it lost focus. Either in response\nto a deactivate request or when the assigned surface lost focus or was\ndestroyed."] - Leave, - #[doc = "modifiers map\n\nTransfer an array of 0-terminated modifier names. The position in\nthe array is the index of the modifier as used in the modifiers\nbitmask in the keysym event."] - ModifiersMap { map: Vec }, - #[doc = "state of the input panel\n\nNotify when the visibility state of the input panel changed."] - InputPanelState { state: u32 }, - #[doc = "pre-edit\n\nNotify when a new composing text (pre-edit) should be set around the\ncurrent cursor position. Any previously set composing text should\nbe removed.\n\nThe commit text can be used to replace the preedit text on reset\n(for example on unfocus).\n\nThe text input should also handle all preedit_style and preedit_cursor\nevents occurring directly before preedit_string."] - PreeditString { - serial: u32, - text: String, - commit: String, - }, - #[doc = "pre-edit styling\n\nSets styling information on composing text. The style is applied for\nlength bytes from index relative to the beginning of the composing\ntext (as byte offset). Multiple styles can\nbe applied to a composing text by sending multiple preedit_styling\nevents.\n\nThis event is handled as part of a following preedit_string event."] - PreeditStyling { - index: u32, - length: u32, - style: PreeditStyle, - }, - #[doc = "pre-edit cursor\n\nSets the cursor position inside the composing text (as byte\noffset) relative to the start of the composing text. When index is a\nnegative number no cursor is shown.\n\nThis event is handled as part of a following preedit_string event."] - PreeditCursor { index: i32 }, - #[doc = "commit\n\nNotify when text should be inserted into the editor widget. The text to\ncommit could be either just a single character after a key press or the\nresult of some composing (pre-edit). It could also be an empty text\nwhen some text should be removed (see delete_surrounding_text) or when\nthe input cursor should be moved (see cursor_position).\n\nAny previously set composing text should be removed."] - CommitString { serial: u32, text: String }, - #[doc = "set cursor to new position\n\nNotify when the cursor or anchor position should be modified.\n\nThis event should be handled as part of a following commit_string\nevent."] - CursorPosition { index: i32, anchor: i32 }, - #[doc = "delete surrounding text\n\nNotify when the text around the current cursor position should be\ndeleted.\n\nIndex is relative to the current cursor (in bytes).\nLength is the length of deleted text (in bytes).\n\nThis event should be handled as part of a following commit_string\nevent."] - DeleteSurroundingText { index: i32, length: u32 }, - #[doc = "keysym\n\nNotify when a key event was sent. Key events should not be used\nfor normal text input operations, which should be done with\ncommit_string, delete_surrounding_text, etc. The key event follows\nthe wl_keyboard key event convention. Sym is an XKB keysym, state a\nwl_keyboard key_state. Modifiers are a mask for effective modifiers\n(where the modifier indices are set by the modifiers_map event)"] - Keysym { - serial: u32, - time: u32, - sym: u32, - state: u32, - modifiers: u32, - }, - #[doc = "language\n\nSets the language of the input text. The \"language\" argument is an\nRFC-3066 format language tag."] - Language { serial: u32, language: String }, - #[doc = "text direction\n\nSets the text direction of input text.\n\nIt is mainly needed for showing an input cursor on the correct side of\nthe editor when there is no input done yet and making sure neutral\ndirection text is laid out properly."] - TextDirection { - serial: u32, - direction: TextDirection, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "modifiers_map", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "input_panel_state", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_styling", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_cursor", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "cursor_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "keysym", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "language", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "text_direction", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave => 1, - Event::ModifiersMap { .. } => 2, - Event::InputPanelState { .. } => 3, - Event::PreeditString { .. } => 4, - Event::PreeditStyling { .. } => 5, - Event::PreeditCursor { .. } => 6, - Event::CommitString { .. } => 7, - Event::CursorPosition { .. } => 8, - Event::DeleteSurroundingText { .. } => 9, - Event::Keysym { .. } => 10, - Event::Language { .. } => 11, - Event::TextDirection { .. } => 12, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave => 1, - Event::ModifiersMap { .. } => 1, - Event::InputPanelState { .. } => 1, - Event::PreeditString { .. } => 1, - Event::PreeditStyling { .. } => 1, - Event::PreeditCursor { .. } => 1, - Event::CommitString { .. } => 1, - Event::CursorPosition { .. } => 1, - Event::DeleteSurroundingText { .. } => 1, - Event::Keysym { .. } => 1, - Event::Language { .. } => 1, - Event::TextDirection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Leave), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::ModifiersMap { - map: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::InputPanelState { - state: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditString { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - commit: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditStyling { - index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - style: { - if let Some(Argument::Uint(val)) = args.next() { - PreeditStyle::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditCursor { - index: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::CommitString { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::CursorPosition { - index: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - anchor: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 9 => { - let mut args = msg.args.into_iter(); - Ok(Event::DeleteSurroundingText { - index: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Keysym { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - sym: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - modifiers: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Language { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - language: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::TextDirection { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - direction: { - if let Some(Argument::Uint(val)) = args.next() { - TextDirection::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enter { - surface: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => Ok(Event::Leave), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ModifiersMap { - map: { - let array = &*_args[0].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::InputPanelState { state: _args[0].u }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::PreeditString { - serial: _args[0].u, - text: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - commit: ::std::ffi::CStr::from_ptr(_args[2].s) - .to_string_lossy() - .into_owned(), - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::PreeditStyling { - index: _args[0].u, - length: _args[1].u, - style: PreeditStyle::from_raw(_args[2].u).ok_or(())?, - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PreeditCursor { index: _args[0].i }) - } - 7 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::CommitString { - serial: _args[0].u, - text: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - }) - } - 8 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::CursorPosition { - index: _args[0].i, - anchor: _args[1].i, - }) - } - 9 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::DeleteSurroundingText { - index: _args[0].i, - length: _args[1].u, - }) - } - 10 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Keysym { - serial: _args[0].u, - time: _args[1].u, - sym: _args[2].u, - state: _args[3].u, - modifiers: _args[4].u, - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Language { - serial: _args[0].u, - language: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::TextDirection { - serial: _args[0].u, - direction: TextDirection::from_raw(_args[1].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputV1(Proxy); - impl AsRef> for ZwpTextInputV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_v1_interface } - } - } - impl ZwpTextInputV1 { - #[doc = "request activation\n\nRequests the text_input object to be activated (typically when the\ntext entry gets focus).\n\nThe seat argument is a wl_seat which maintains the focus for this\nactivation. The surface argument is a wl_surface assigned to the\ntext_input object and tracked for focus lost. The enter event\nis emitted on successful activation."] - pub fn activate( - &self, - seat: &super::wl_seat::WlSeat, - surface: &super::wl_surface::WlSurface, - ) -> () { - let msg = Request::Activate { - seat: seat.clone(), - surface: surface.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "request deactivation\n\nRequests the text_input object to be deactivated (typically when the\ntext entry lost focus). The seat argument is a wl_seat which was used\nfor activation."] - pub fn deactivate(&self, seat: &super::wl_seat::WlSeat) -> () { - let msg = Request::Deactivate { seat: seat.clone() }; - self.0.send::(msg, None); - } - #[doc = "show input panels\n\nRequests input panels (virtual keyboard) to show."] - pub fn show_input_panel(&self) -> () { - let msg = Request::ShowInputPanel; - self.0.send::(msg, None); - } - #[doc = "hide input panels\n\nRequests input panels (virtual keyboard) to hide."] - pub fn hide_input_panel(&self) -> () { - let msg = Request::HideInputPanel; - self.0.send::(msg, None); - } - #[doc = "reset\n\nShould be called by an editor widget when the input state should be\nreset, for example after the text was changed outside of the normal\ninput method flow."] - pub fn reset(&self) -> () { - let msg = Request::Reset; - self.0.send::(msg, None); - } - #[doc = "sets the surrounding text\n\nSets the plain surrounding text around the input position. Text is\nUTF-8 encoded. Cursor is the byte offset within the\nsurrounding text. Anchor is the byte offset of the\nselection anchor within the surrounding text. If there is no selected\ntext anchor, then it is the same as cursor."] - pub fn set_surrounding_text(&self, text: String, cursor: u32, anchor: u32) -> () { - let msg = Request::SetSurroundingText { - text: text, - cursor: cursor, - anchor: anchor, - }; - self.0.send::(msg, None); - } - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some\nof the behavior.\n\nWhen no content type is explicitly set, a normal content purpose with\ndefault hints (auto completion, auto correction, auto capitalization)\nshould be assumed."] - pub fn set_content_type(&self, hint: ContentHint, purpose: ContentPurpose) -> () { - let msg = Request::SetContentType { - hint: hint, - purpose: purpose, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn set_cursor_rectangle(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetCursorRectangle { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "sets preferred language\n\nSets a specific language. This allows for example a virtual keyboard to\nshow a language specific layout. The \"language\" argument is an RFC-3066\nformat language tag.\n\nIt could be used for example in a word processor to indicate the\nlanguage of the currently edited document or in an instant message\napplication which tracks languages of contacts."] - pub fn set_preferred_language(&self, language: String) -> () { - let msg = Request::SetPreferredLanguage { language: language }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn commit_state(&self, serial: u32) -> () { - let msg = Request::CommitState { serial: serial }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn invoke_action(&self, button: u32, index: u32) -> () { - let msg = Request::InvokeAction { - button: button, - index: index, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DEACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_INPUT_PANEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_HIDE_INPUT_PANEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PREFERRED_LANGUAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_INVOKE_ACTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIERS_MAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_INPUT_PANEL_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_STYLING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CURSOR_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEYSYM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LANGUAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TEXT_DIRECTION_SINCE: u32 = 1u32; - static mut zwp_text_input_v1_requests_activate_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut zwp_text_input_v1_requests_deactivate_types: [*const wl_interface; 1] = - [unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v1_requests: [wl_message; 11] = [ - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"oo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v1_requests_activate_types as *const _ }, - }, - wl_message { - name: b"deactivate\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v1_requests_deactivate_types as *const _ }, - }, - wl_message { - name: b"show_input_panel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hide_input_panel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"reset\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_surrounding_text\0" as *const u8 as *const c_char, - signature: b"suu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_cursor_rectangle\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_preferred_language\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_state\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"invoke_action\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_text_input_v1_events_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v1_events: [wl_message; 13] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v1_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers_map\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"input_panel_state\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_string\0" as *const u8 as *const c_char, - signature: b"uss\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_styling\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_cursor\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cursor_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"iu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"keysym\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"language\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"text_direction\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_v1_interface: wl_interface = wl_interface { - name: b"zwp_text_input_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 11, - requests: unsafe { &zwp_text_input_v1_requests as *const _ }, - event_count: 13, - events: unsafe { &zwp_text_input_v1_events as *const _ }, - }; -} -#[doc = "text input manager\n\nA factory for text_input objects. This object is a global singleton."] -pub mod zwp_text_input_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create text input\n\nCreates a new text_input object."] - CreateTextInput {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "create_text_input", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateTextInput { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateTextInput { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_text_input_v1::ZwpTextInputV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateTextInput {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateTextInput {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputManagerV1(Proxy); - impl AsRef> for ZwpTextInputManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_manager_v1_interface } - } - } - impl ZwpTextInputManagerV1 { - #[doc = "create text input\n\nCreates a new text_input object."] - pub fn create_text_input(&self) -> Main { - let msg = Request::CreateTextInput {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_TEXT_INPUT_SINCE: u32 = 1u32; - static mut zwp_text_input_manager_v1_requests_create_text_input_types: [*const wl_interface; - 1] = - [ - unsafe { - &super::zwp_text_input_v1::zwp_text_input_v1_interface as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_manager_v1_requests: [wl_message; 1] = [wl_message { - name: b"create_text_input\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_manager_v1_requests_create_text_input_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_text_input_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_text_input_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs deleted file mode 100644 index 716c617..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs +++ /dev/null @@ -1,1109 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "text input\n\nThe zwp_text_input_v3 interface represents text input and input methods\nassociated with a seat. It provides enter/leave events to follow the\ntext input focus for a seat.\n\nRequests are used to enable/disable the text-input object and set\nstate information like surrounding and selected text or the content type.\nThe information about the entered text is sent to the text-input object\nvia the preedit_string and commit_string events.\n\nText is valid UTF-8 encoded, indices and lengths are in bytes. Indices\nmust not point to middle bytes inside a code point: they must either\npoint to the first byte of a code point or to the end of the buffer.\nLengths must be measured between two valid indices.\n\nFocus moving throughout surfaces will result in the emission of\nzwp_text_input_v3.enter and zwp_text_input_v3.leave events. The focused\nsurface must commit zwp_text_input_v3.enable and\nzwp_text_input_v3.disable requests as the keyboard focus moves across\neditable and non-editable elements of the UI. Those two requests are not\nexpected to be paired with each other, the compositor must be able to\nhandle consecutive series of the same request.\n\nState is sent by the state requests (set_surrounding_text,\nset_content_type and set_cursor_rectangle) and a commit request. After an\nenter event or disable request all state information is invalidated and\nneeds to be resent by the client."] -pub mod zwp_text_input_v3 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "text change reason\n\nReason for the change of surrounding text or cursor posision."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ChangeCause { - #[doc = "input method caused the change"] - InputMethod = 0, - #[doc = "something else than the input method caused the change"] - Other = 1, - } - impl ChangeCause { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ChangeCause::InputMethod), - 1 => Some(ChangeCause::Other), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { # [doc = "content hint\n\nContent hint is a bitmask to allow to modify the behavior of the text\ninput."] pub struct ContentHint : u32 { # [doc = "no special behavior"] const None = 0 ; # [doc = "suggest word completions"] const Completion = 1 ; # [doc = "suggest word corrections"] const Spellcheck = 2 ; # [doc = "switch to uppercase letters at the start of a sentence"] const AutoCapitalization = 4 ; # [doc = "prefer lowercase letters"] const Lowercase = 8 ; # [doc = "prefer uppercase letters"] const Uppercase = 16 ; # [doc = "prefer casing for titles and headings (can be language dependent)"] const Titlecase = 32 ; # [doc = "characters should be hidden"] const HiddenText = 64 ; # [doc = "typed text should not be stored"] const SensitiveData = 128 ; # [doc = "just Latin characters should be entered"] const Latin = 256 ; # [doc = "the text input is multiline"] const Multiline = 512 ; } } - impl ContentHint { - pub fn from_raw(n: u32) -> Option { - Some(ContentHint::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "content purpose\n\nThe content purpose allows to specify the primary purpose of a text\ninput.\n\nThis allows an input method to show special purpose input panels with\nextra characters or to disallow some characters."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ContentPurpose { - #[doc = "default input, allowing all characters"] - Normal = 0, - #[doc = "allow only alphabetic characters"] - Alpha = 1, - #[doc = "allow only digits"] - Digits = 2, - #[doc = "input a number (including decimal separator and sign)"] - Number = 3, - #[doc = "input a phone number"] - Phone = 4, - #[doc = "input an URL"] - Url = 5, - #[doc = "input an email address"] - Email = 6, - #[doc = "input a name of a person"] - Name = 7, - #[doc = "input a password (combine with sensitive_data hint)"] - Password = 8, - #[doc = "input is a numeric password (combine with sensitive_data hint)"] - Pin = 9, - #[doc = "input a date"] - Date = 10, - #[doc = "input a time"] - Time = 11, - #[doc = "input a date and time"] - Datetime = 12, - #[doc = "input for a terminal"] - Terminal = 13, - } - impl ContentPurpose { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ContentPurpose::Normal), - 1 => Some(ContentPurpose::Alpha), - 2 => Some(ContentPurpose::Digits), - 3 => Some(ContentPurpose::Number), - 4 => Some(ContentPurpose::Phone), - 5 => Some(ContentPurpose::Url), - 6 => Some(ContentPurpose::Email), - 7 => Some(ContentPurpose::Name), - 8 => Some(ContentPurpose::Password), - 9 => Some(ContentPurpose::Pin), - 10 => Some(ContentPurpose::Date), - 11 => Some(ContentPurpose::Time), - 12 => Some(ContentPurpose::Datetime), - 13 => Some(ContentPurpose::Terminal), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Destroy the wp_text_input\n\nDestroy the wp_text_input object. Also disables all surfaces enabled\nthrough this wp_text_input object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "Request text input to be enabled\n\nRequests text input on the surface previously obtained from the enter\nevent.\n\nThis request must be issued every time the active text input changes\nto a new one, including within the current surface. Use\nzwp_text_input_v3.disable when there is no longer any input focus on\nthe current surface.\n\nClients must not enable more than one text input on the single seat\nand should disable the current text input before enabling the new one.\nAt most one instance of text input may be in enabled state per instance,\nRequests to enable the another text input when some text input is active\nmust be ignored by compositor.\n\nThis request resets all state associated with previous enable, disable,\nset_surrounding_text, set_text_change_cause, set_content_type, and\nset_cursor_rectangle requests, as well as the state associated with\npreedit_string, commit_string, and delete_surrounding_text events.\n\nThe set_surrounding_text, set_content_type and set_cursor_rectangle\nrequests must follow if the text input supports the necessary\nfunctionality.\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe changes must be applied by the compositor after issuing a\nzwp_text_input_v3.commit request."] - Enable, - #[doc = "Disable text input on a surface\n\nExplicitly disable text input on the current surface (typically when\nthere is no focus on any text entry inside the surface).\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request."] - Disable, - #[doc = "sets the surrounding text\n\nSets the surrounding plain text around the input, excluding the preedit\ntext.\n\nThe client should notify the compositor of any changes in any of the\nvalues carried with this request, including changes caused by handling\nincoming text-input events as well as changes caused by other\nmechanisms like keyboard typing.\n\nIf the client is unaware of the text around the cursor, it should not\nissue this request, to signify lack of support to the compositor.\n\nText is UTF-8 encoded, and should include the cursor position, the\ncomplete selection and additional characters before and after them.\nThere is a maximum length of wayland messages, so text can not be\nlonger than 4000 bytes.\n\nCursor is the byte offset of the cursor within text buffer.\n\nAnchor is the byte offset of the selection anchor within text buffer.\nIf there is no selected text, anchor is the same as cursor.\n\nIf any preedit text is present, it is replaced with a cursor for the\npurpose of this event.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial state for affected fields is empty, meaning that the text\ninput does not support sending surrounding text. If the empty values\nget applied, subsequent attempts to change them may have no effect."] - SetSurroundingText { - text: String, - cursor: i32, - anchor: i32, - }, - #[doc = "indicates the cause of surrounding text change\n\nTells the compositor why the text surrounding the cursor changed.\n\nWhenever the client detects an external change in text, cursor, or\nanchor posision, it must issue this request to the compositor. This\nrequest is intended to give the input method a chance to update the\npreedit text in an appropriate way, e.g. by removing it when the user\nstarts typing with a keyboard.\n\ncause describes the source of the change.\n\nThe value set with this request is double-buffered. It must be applied\nand reset to initial at the next zwp_text_input_v3.commit request.\n\nThe initial value of cause is input_method."] - SetTextChangeCause { cause: ChangeCause }, - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some of\nthe behavior.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request.\nSubsequent attempts to update them may have no effect. The values\nremain valid until the next committed enable or disable request.\n\nThe initial value for hint is none, and the initial value for purpose\nis normal."] - SetContentType { - hint: ContentHint, - purpose: ContentPurpose, - }, - #[doc = "set cursor position\n\nMarks an area around the cursor as a x, y, width, height rectangle in\nsurface local coordinates.\n\nAllows the compositor to put a window with word suggestions near the\ncursor, without obstructing the text being input.\n\nIf the client is unaware of the position of edited text, it should not\nissue this request, to signify lack of support to the compositor.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial values describing a cursor rectangle are empty. That means\nthe text input does not support describing the cursor area. If the\nempty values get applied, subsequent attempts to change them may have\nno effect."] - SetCursorRectangle { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "commit state\n\nAtomically applies state changes recently sent to the compositor.\n\nThe commit request establishes and updates the state of the client, and\nmust be issued after any changes to apply them.\n\nText input state (enabled status, content purpose, content hint,\nsurrounding text and change cause, cursor rectangle) is conceptually\ndouble-buffered within the context of a text input, i.e. between a\ncommitted enable request and the following committed enable or disable\nrequest.\n\nProtocol requests modify the pending state, as opposed to the current\nstate in use by the input method. A commit request atomically applies\nall pending state, replacing the current state. After commit, the new\npending state is as documented for each related request.\n\nRequests are applied in the order of arrival.\n\nNeither current nor pending state are modified unless noted otherwise.\n\nThe compositor must count the number of commit requests coming from\neach zwp_text_input_v3 object and use the count as the serial in done\nevents."] - Commit, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "enable", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "disable", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_text_change_cause", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_cursor_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "commit", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Enable => 1, - Request::Disable => 2, - Request::SetSurroundingText { .. } => 3, - Request::SetTextChangeCause { .. } => 4, - Request::SetContentType { .. } => 5, - Request::SetCursorRectangle { .. } => 6, - Request::Commit => 7, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Enable => 1, - Request::Disable => 1, - Request::SetSurroundingText { .. } => 1, - Request::SetTextChangeCause { .. } => 1, - Request::SetContentType { .. } => 1, - Request::SetCursorRectangle { .. } => 1, - Request::Commit => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Enable => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::Disable => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::SetSurroundingText { - text, - cursor, - anchor, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Int(cursor), - Argument::Int(anchor), - ], - }, - Request::SetTextChangeCause { cause } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(cause.to_raw()),], - }, - Request::SetContentType { hint, purpose } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![ - Argument::Uint(hint.to_raw()), - Argument::Uint(purpose.to_raw()), - ], - }, - Request::SetCursorRectangle { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Commit => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Enable => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::Disable => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::SetSurroundingText { - text, - cursor, - anchor, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].i = cursor; - _args_array[2].i = anchor; - f(3, &mut _args_array) - } - Request::SetTextChangeCause { cause } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = cause.to_raw(); - f(4, &mut _args_array) - } - Request::SetContentType { hint, purpose } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = hint.to_raw(); - _args_array[1].u = purpose.to_raw(); - f(5, &mut _args_array) - } - Request::SetCursorRectangle { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(6, &mut _args_array) - } - Request::Commit => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "enter event\n\nNotification that this seat's text-input focus is on a certain surface.\n\nIf client has created multiple text input objects, compositor must send\nthis event to all of them.\n\nWhen the seat has the keyboard capability the text-input focus follows\nthe keyboard focus. This event sets the current surface for the\ntext-input object."] - Enter { - surface: super::wl_surface::WlSurface, - }, - #[doc = "leave event\n\nNotification that this seat's text-input focus is no longer on a\ncertain surface. The client should reset any preedit string previously\nset.\n\nThe leave notification clears the current surface. It is sent before\nthe enter notification for the new focus. After leave event, compositor\nmust ignore requests from any text input instances until next enter\nevent.\n\nWhen the seat has the keyboard capability the text-input focus follows\nthe keyboard focus."] - Leave { - surface: super::wl_surface::WlSurface, - }, - #[doc = "pre-edit\n\nNotify when a new composing text (pre-edit) should be set at the\ncurrent cursor position. Any previously set composing text must be\nremoved. Any previously existing selected text must be removed.\n\nThe argument text contains the pre-edit string buffer.\n\nThe parameters cursor_begin and cursor_end are counted in bytes\nrelative to the beginning of the submitted text buffer. Cursor should\nbe hidden when both are equal to -1.\n\nThey could be represented by the client as a line if both values are\nthe same, or as a text highlight otherwise.\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.done event.\n\nThe initial value of text is an empty string, and cursor_begin,\ncursor_end and cursor_hidden are all 0."] - PreeditString { - text: Option, - cursor_begin: i32, - cursor_end: i32, - }, - #[doc = "text commit\n\nNotify when text should be inserted into the editor widget. The text to\ncommit could be either just a single character after a key press or the\nresult of some composing (pre-edit).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.done event.\n\nThe initial value of text is an empty string."] - CommitString { text: Option }, - #[doc = "delete surrounding text\n\nNotify when the text around the current cursor position should be\ndeleted.\n\nBefore_length and after_length are the number of bytes before and after\nthe current cursor index (excluding the selection) to delete.\n\nIf a preedit text is present, in effect before_length is counted from\nthe beginning of it, and after_length from its end (see done event\nsequence).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.done event.\n\nThe initial values of both before_length and after_length are 0."] - DeleteSurroundingText { - before_length: u32, - after_length: u32, - }, - #[doc = "apply changes\n\nInstruct the application to apply changes to state requested by the\npreedit_string, commit_string and delete_surrounding_text events. The\nstate relating to these events is double-buffered, and each one\nmodifies the pending state. This event replaces the current state with\nthe pending state.\n\nThe application must proceed by evaluating the changes in the following\norder:\n\n1. Replace existing preedit string with the cursor.\n2. Delete requested surrounding text.\n3. Insert commit string with the cursor at its end.\n4. Calculate surrounding text to send.\n5. Insert new preedit text in cursor position.\n6. Place cursor inside preedit text.\n\nThe serial number reflects the last state of the zwp_text_input_v3\nobject known to the compositor. The value of the serial argument must\nbe equal to the number of commit requests already issued on that object.\nWhen the client receives a done event with a serial different than the\nnumber of past commit requests, it must proceed as normal, except it\nshould not change the current state of the zwp_text_input_v3 object."] - Done { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave { .. } => 1, - Event::PreeditString { .. } => 2, - Event::CommitString { .. } => 3, - Event::DeleteSurroundingText { .. } => 4, - Event::Done { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::PreeditString { .. } => 1, - Event::CommitString { .. } => 1, - Event::DeleteSurroundingText { .. } => 1, - Event::Done { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditString { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - if s.len() == 0 { - None - } else { - Some(s) - } - } else { - return Err(()); - } - }, - cursor_begin: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - cursor_end: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::CommitString { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - if s.len() == 0 { - None - } else { - Some(s) - } - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::DeleteSurroundingText { - before_length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - after_length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Done { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enter { - surface: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Leave { - surface: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::PreeditString { - text: if _args[0].s.is_null() { - None - } else { - Some( - ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - ) - }, - cursor_begin: _args[1].i, - cursor_end: _args[2].i, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::CommitString { - text: if _args[0].s.is_null() { - None - } else { - Some( - ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - ) - }, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::DeleteSurroundingText { - before_length: _args[0].u, - after_length: _args[1].u, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Done { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputV3(Proxy); - impl AsRef> for ZwpTextInputV3 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputV3 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputV3(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputV3) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputV3 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputV3 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_v3"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_v3_interface } - } - } - impl ZwpTextInputV3 { - #[doc = "Destroy the wp_text_input\n\nDestroy the wp_text_input object. Also disables all surfaces enabled\nthrough this wp_text_input object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "Request text input to be enabled\n\nRequests text input on the surface previously obtained from the enter\nevent.\n\nThis request must be issued every time the active text input changes\nto a new one, including within the current surface. Use\nzwp_text_input_v3.disable when there is no longer any input focus on\nthe current surface.\n\nClients must not enable more than one text input on the single seat\nand should disable the current text input before enabling the new one.\nAt most one instance of text input may be in enabled state per instance,\nRequests to enable the another text input when some text input is active\nmust be ignored by compositor.\n\nThis request resets all state associated with previous enable, disable,\nset_surrounding_text, set_text_change_cause, set_content_type, and\nset_cursor_rectangle requests, as well as the state associated with\npreedit_string, commit_string, and delete_surrounding_text events.\n\nThe set_surrounding_text, set_content_type and set_cursor_rectangle\nrequests must follow if the text input supports the necessary\nfunctionality.\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe changes must be applied by the compositor after issuing a\nzwp_text_input_v3.commit request."] - pub fn enable(&self) -> () { - let msg = Request::Enable; - self.0.send::(msg, None); - } - #[doc = "Disable text input on a surface\n\nExplicitly disable text input on the current surface (typically when\nthere is no focus on any text entry inside the surface).\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request."] - pub fn disable(&self) -> () { - let msg = Request::Disable; - self.0.send::(msg, None); - } - #[doc = "sets the surrounding text\n\nSets the surrounding plain text around the input, excluding the preedit\ntext.\n\nThe client should notify the compositor of any changes in any of the\nvalues carried with this request, including changes caused by handling\nincoming text-input events as well as changes caused by other\nmechanisms like keyboard typing.\n\nIf the client is unaware of the text around the cursor, it should not\nissue this request, to signify lack of support to the compositor.\n\nText is UTF-8 encoded, and should include the cursor position, the\ncomplete selection and additional characters before and after them.\nThere is a maximum length of wayland messages, so text can not be\nlonger than 4000 bytes.\n\nCursor is the byte offset of the cursor within text buffer.\n\nAnchor is the byte offset of the selection anchor within text buffer.\nIf there is no selected text, anchor is the same as cursor.\n\nIf any preedit text is present, it is replaced with a cursor for the\npurpose of this event.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial state for affected fields is empty, meaning that the text\ninput does not support sending surrounding text. If the empty values\nget applied, subsequent attempts to change them may have no effect."] - pub fn set_surrounding_text(&self, text: String, cursor: i32, anchor: i32) -> () { - let msg = Request::SetSurroundingText { - text: text, - cursor: cursor, - anchor: anchor, - }; - self.0.send::(msg, None); - } - #[doc = "indicates the cause of surrounding text change\n\nTells the compositor why the text surrounding the cursor changed.\n\nWhenever the client detects an external change in text, cursor, or\nanchor posision, it must issue this request to the compositor. This\nrequest is intended to give the input method a chance to update the\npreedit text in an appropriate way, e.g. by removing it when the user\nstarts typing with a keyboard.\n\ncause describes the source of the change.\n\nThe value set with this request is double-buffered. It must be applied\nand reset to initial at the next zwp_text_input_v3.commit request.\n\nThe initial value of cause is input_method."] - pub fn set_text_change_cause(&self, cause: ChangeCause) -> () { - let msg = Request::SetTextChangeCause { cause: cause }; - self.0.send::(msg, None); - } - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some of\nthe behavior.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request.\nSubsequent attempts to update them may have no effect. The values\nremain valid until the next committed enable or disable request.\n\nThe initial value for hint is none, and the initial value for purpose\nis normal."] - pub fn set_content_type(&self, hint: ContentHint, purpose: ContentPurpose) -> () { - let msg = Request::SetContentType { - hint: hint, - purpose: purpose, - }; - self.0.send::(msg, None); - } - #[doc = "set cursor position\n\nMarks an area around the cursor as a x, y, width, height rectangle in\nsurface local coordinates.\n\nAllows the compositor to put a window with word suggestions near the\ncursor, without obstructing the text being input.\n\nIf the client is unaware of the position of edited text, it should not\nissue this request, to signify lack of support to the compositor.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial values describing a cursor rectangle are empty. That means\nthe text input does not support describing the cursor area. If the\nempty values get applied, subsequent attempts to change them may have\nno effect."] - pub fn set_cursor_rectangle(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetCursorRectangle { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "commit state\n\nAtomically applies state changes recently sent to the compositor.\n\nThe commit request establishes and updates the state of the client, and\nmust be issued after any changes to apply them.\n\nText input state (enabled status, content purpose, content hint,\nsurrounding text and change cause, cursor rectangle) is conceptually\ndouble-buffered within the context of a text input, i.e. between a\ncommitted enable request and the following committed enable or disable\nrequest.\n\nProtocol requests modify the pending state, as opposed to the current\nstate in use by the input method. A commit request atomically applies\nall pending state, replacing the current state. After commit, the new\npending state is as documented for each related request.\n\nRequests are applied in the order of arrival.\n\nNeither current nor pending state are modified unless noted otherwise.\n\nThe compositor must count the number of commit requests coming from\neach zwp_text_input_v3 object and use the count as the serial in done\nevents."] - pub fn commit(&self) -> () { - let msg = Request::Commit; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ENABLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DISABLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TEXT_CHANGE_CAUSE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v3_requests: [wl_message; 8] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"enable\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"disable\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_surrounding_text\0" as *const u8 as *const c_char, - signature: b"sii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_text_change_cause\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_cursor_rectangle\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_text_input_v3_events_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - static mut zwp_text_input_v3_events_leave_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v3_events: [wl_message; 6] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v3_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v3_events_leave_types as *const _ }, - }, - wl_message { - name: b"preedit_string\0" as *const u8 as *const c_char, - signature: b"?sii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"?s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_v3_interface: wl_interface = wl_interface { - name: b"zwp_text_input_v3\0" as *const u8 as *const c_char, - version: 1, - request_count: 8, - requests: unsafe { &zwp_text_input_v3_requests as *const _ }, - event_count: 6, - events: unsafe { &zwp_text_input_v3_events as *const _ }, - }; -} -#[doc = "text input manager\n\nA factory for text-input objects. This object is a global singleton."] -pub mod zwp_text_input_manager_v3 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Destroy the wp_text_input_manager\n\nDestroy the wp_text_input_manager object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new text input object\n\nCreates a new text-input object for a given seat."] - GetTextInput { seat: super::wl_seat::WlSeat }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_text_input", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetTextInput { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetTextInput { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_text_input_v3::ZwpTextInputV3, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetTextInput { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetTextInput { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputManagerV3(Proxy); - impl AsRef> for ZwpTextInputManagerV3 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputManagerV3 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputManagerV3(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputManagerV3) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputManagerV3 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputManagerV3 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_manager_v3"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_manager_v3_interface } - } - } - impl ZwpTextInputManagerV3 { - #[doc = "Destroy the wp_text_input_manager\n\nDestroy the wp_text_input_manager object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new text input object\n\nCreates a new text-input object for a given seat."] - pub fn get_text_input( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetTextInput { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TEXT_INPUT_SINCE: u32 = 1u32; - static mut zwp_text_input_manager_v3_requests_get_text_input_types: [*const wl_interface; 2] = [ - unsafe { &super::zwp_text_input_v3::zwp_text_input_v3_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_manager_v3_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_text_input\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_manager_v3_requests_get_text_input_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_manager_v3_interface: wl_interface = wl_interface { - name: b"zwp_text_input_manager_v3\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_text_input_manager_v3_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs deleted file mode 100644 index ab8114c..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs +++ /dev/null @@ -1,582 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "surface cropping and scaling\n\nThe global interface exposing surface cropping and scaling\ncapabilities is used to instantiate an interface extension for a\nwl_surface object. This extended interface will then allow\ncropping and scaling the surface contents, effectively\ndisconnecting the direct relationship between the buffer and the\nsurface size."] -pub mod wp_viewporter { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the surface already has a viewport object associated"] - ViewportExists = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::ViewportExists), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind from the cropping and scaling interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other objects,\nwp_viewport objects included.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "extend surface interface for crop and scale\n\nInstantiate an interface extension for the given wl_surface to\ncrop and scale its content. If the given wl_surface already has\na wp_viewport object associated, the viewport_exists\nprotocol error is raised."] - GetViewport { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_viewport", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetViewport { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetViewport { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetViewport { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetViewport { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpViewporter(Proxy); - impl AsRef> for WpViewporter { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpViewporter { - #[inline] - fn from(value: Proxy) -> Self { - WpViewporter(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpViewporter) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpViewporter { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpViewporter { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_viewporter"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_viewporter_interface } - } - } - impl WpViewporter { - #[doc = "unbind from the cropping and scaling interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other objects,\nwp_viewport objects included.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "extend surface interface for crop and scale\n\nInstantiate an interface extension for the given wl_surface to\ncrop and scale its content. If the given wl_surface already has\na wp_viewport object associated, the viewport_exists\nprotocol error is raised."] - pub fn get_viewport( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetViewport { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_VIEWPORT_SINCE: u32 = 1u32; - static mut wp_viewporter_requests_get_viewport_types: [*const wl_interface; 2] = [ - unsafe { &super::wp_viewport::wp_viewport_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_viewporter_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_viewport\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &wp_viewporter_requests_get_viewport_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_viewporter_interface: wl_interface = wl_interface { - name: b"wp_viewporter\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wp_viewporter_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "crop and scale interface to a wl_surface\n\nAn additional interface to a wl_surface object, which allows the\nclient to specify the cropping and scaling of the surface\ncontents.\n\nThis interface works with two concepts: the source rectangle (src_x,\nsrc_y, src_width, src_height), and the destination size (dst_width,\ndst_height). The contents of the source rectangle are scaled to the\ndestination size, and content outside the source rectangle is ignored.\nThis state is double-buffered, and is applied on the next\nwl_surface.commit.\n\nThe two parts of crop and scale state are independent: the source\nrectangle, and the destination size. Initially both are unset, that\nis, no scaling is applied. The whole of the current wl_buffer is\nused as the source, and the surface size is as defined in\nwl_surface.attach.\n\nIf the destination size is set, it causes the surface size to become\ndst_width, dst_height. The source (rectangle) is scaled to exactly\nthis size. This overrides whatever the attached wl_buffer size is,\nunless the wl_buffer is NULL. If the wl_buffer is NULL, the surface\nhas no content and therefore no size. Otherwise, the size is always\nat least 1x1 in surface local coordinates.\n\nIf the source rectangle is set, it defines what area of the wl_buffer is\ntaken as the source. If the source rectangle is set and the destination\nsize is not set, then src_width and src_height must be integers, and the\nsurface size becomes the source rectangle size. This results in cropping\nwithout scaling. If src_width or src_height are not integers and\ndestination size is not set, the bad_size protocol error is raised when\nthe surface state is applied.\n\nThe coordinate transformations from buffer pixel coordinates up to\nthe surface-local coordinates happen in the following order:\n1. buffer_transform (wl_surface.set_buffer_transform)\n2. buffer_scale (wl_surface.set_buffer_scale)\n3. crop and scale (wp_viewport.set*)\nThis means, that the source rectangle coordinates of crop and scale\nare given in the coordinates after the buffer transform and scale,\ni.e. in the coordinates that would be the surface-local coordinates\nif the crop and scale was not applied.\n\nIf src_x or src_y are negative, the bad_value protocol error is raised.\nOtherwise, if the source rectangle is partially or completely outside of\nthe non-NULL wl_buffer, then the out_of_buffer protocol error is raised\nwhen the surface state is applied. A NULL wl_buffer does not raise the\nout_of_buffer error.\n\nThe x, y arguments of wl_surface.attach are applied as normal to\nthe surface. They indicate how many pixels to remove from the\nsurface size from the left and the top. In other words, they are\nstill in the surface-local coordinate system, just like dst_width\nand dst_height are.\n\nIf the wl_surface associated with the wp_viewport is destroyed,\nall wp_viewport requests except 'destroy' raise the protocol error\nno_surface.\n\nIf the wp_viewport object is destroyed, the crop and scale\nstate is removed from the wl_surface. The change will be applied\non the next wl_surface.commit."] -pub mod wp_viewport { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "negative or zero values in width or height"] - BadValue = 0, - #[doc = "destination size is not integer"] - BadSize = 1, - #[doc = "source rectangle extends outside of the content area"] - OutOfBuffer = 2, - #[doc = "the wl_surface was destroyed"] - NoSurface = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::BadValue), - 1 => Some(Error::BadSize), - 2 => Some(Error::OutOfBuffer), - 3 => Some(Error::NoSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove scaling and cropping from the surface\n\nThe associated wl_surface's crop and scale state is removed.\nThe change is applied on the next wl_surface.commit.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the source rectangle for cropping\n\nSet the source rectangle of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf all of x, y, width and height are -1.0, the source rectangle is\nunset instead. Any other set of values where width or height are zero\nor negative, or x or y are negative, raise the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - SetSource { - x: f64, - y: f64, - width: f64, - height: f64, - }, - #[doc = "set the surface size for scaling\n\nSet the destination size of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf width is -1 and height is -1, the destination size is unset\ninstead. Any other pair of values for width and height that\ncontains zero or negative values raises the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - SetDestination { width: i32, height: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_source", - since: 1, - signature: &[ - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_destination", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetSource { .. } => 1, - Request::SetDestination { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetSource { .. } => 1, - Request::SetDestination { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetSource { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Fixed((x * 256.) as i32), - Argument::Fixed((y * 256.) as i32), - Argument::Fixed((width * 256.) as i32), - Argument::Fixed((height * 256.) as i32), - ], - }, - Request::SetDestination { width, height } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetSource { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].f = (x * 256.) as i32; - _args_array[1].f = (y * 256.) as i32; - _args_array[2].f = (width * 256.) as i32; - _args_array[3].f = (height * 256.) as i32; - f(1, &mut _args_array) - } - Request::SetDestination { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpViewport(Proxy); - impl AsRef> for WpViewport { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpViewport { - #[inline] - fn from(value: Proxy) -> Self { - WpViewport(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpViewport) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpViewport { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpViewport { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_viewport"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_viewport_interface } - } - } - impl WpViewport { - #[doc = "remove scaling and cropping from the surface\n\nThe associated wl_surface's crop and scale state is removed.\nThe change is applied on the next wl_surface.commit.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the source rectangle for cropping\n\nSet the source rectangle of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf all of x, y, width and height are -1.0, the source rectangle is\nunset instead. Any other set of values where width or height are zero\nor negative, or x or y are negative, raise the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - pub fn set_source(&self, x: f64, y: f64, width: f64, height: f64) -> () { - let msg = Request::SetSource { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the surface size for scaling\n\nSet the destination size of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf width is -1 and height is -1, the destination size is unset\ninstead. Any other pair of values for width and height that\ncontains zero or negative values raises the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - pub fn set_destination(&self, width: i32, height: i32) -> () { - let msg = Request::SetDestination { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_DESTINATION_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_viewport_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_source\0" as *const u8 as *const c_char, - signature: b"ffff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_destination\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_viewport_interface: wl_interface = wl_interface { - name: b"wp_viewport\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &wp_viewport_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs deleted file mode 100644 index 1127fe6..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs +++ /dev/null @@ -1,1372 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manager to control data devices\n\nThis interface is a manager that allows creating per-seat data device\ncontrols."] -pub mod zwlr_data_control_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new data source\n\nCreate a new data source."] - CreateDataSource {}, - #[doc = "get a data device for a seat\n\nCreate a data device that can be used to manage a seat's selection."] - GetDataDevice { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_data_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_data_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateDataSource { .. } => 0, - Request::GetDataDevice { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateDataSource { .. } => 1, - Request::GetDataDevice { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_data_control_source_v1::ZwlrDataControlSourceV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwlr_data_control_device_v1::ZwlrDataControlDeviceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateDataSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDataDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateDataSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDataDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlManagerV1(Proxy); - impl AsRef> for ZwlrDataControlManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_manager_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_manager_v1_interface } - } - } - impl ZwlrDataControlManagerV1 { - #[doc = "create a new data source\n\nCreate a new data source."] - pub fn create_data_source( - &self, - ) -> Main { - let msg = Request::CreateDataSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "get a data device for a seat\n\nCreate a data device that can be used to manage a seat's selection."] - pub fn get_data_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDataDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_DATA_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DATA_DEVICE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_data_control_manager_v1_requests_create_data_source_types: - [*const wl_interface; 1] = [unsafe { - &super::zwlr_data_control_source_v1::zwlr_data_control_source_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_manager_v1_requests_get_data_device_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwlr_data_control_device_v1::zwlr_data_control_device_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"create_data_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_manager_v1_requests_create_data_source_types as *const _ - }, - }, - wl_message { - name: b"get_data_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_manager_v1_requests_get_data_device_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_manager_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwlr_data_control_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "manage a data device for a seat\n\nThis interface allows a client to manage a seat's selection.\n\nWhen the seat is destroyed, this object becomes inert."] -pub mod zwlr_data_control_device_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "source given to set_selection or set_primary_selection was already used before"] - UsedSource = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::UsedSource), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection to the data from\nthe source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - }, - #[doc = "destroy this data device\n\nDestroys the data device object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "copy data to the primary selection\n\nThis request asks the compositor to set the primary selection to the\ndata from the source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the primary selection, set the source to NULL.\n\nThe compositor will ignore this request if it does not support primary\nselection.\n\nOnly available since version 2 of the interface"] - SetPrimarySelection { - source: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_primary_selection", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSelection { .. } => 0, - Request::Destroy => 1, - Request::SetPrimarySelection { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSelection { .. } => 1, - Request::Destroy => 1, - Request::SetPrimarySelection { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSelection { source } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object( - source.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::SetPrimarySelection { source } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object( - source.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSelection { source } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::SetPrimarySelection { source } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wlr_data_control_offer\n\nThe data_offer event introduces a new wlr_data_control_offer object,\nwhich will subsequently be used in either the\nwlr_data_control_device.selection event (for the regular clipboard\nselections) or the wlr_data_control_device.primary_selection event (for\nthe primary clipboard selections). Immediately following the\nwlr_data_control_device.data_offer event, the new data_offer object\nwill send out wlr_data_control_offer.offer events to describe the MIME\ntypes it offers."] - DataOffer { - id: Main, - }, - #[doc = "advertise new selection\n\nThe selection event is sent out to notify the client of a new\nwlr_data_control_offer for the selection for this device. The\nwlr_data_control_device.data_offer and the wlr_data_control_offer.offer\nevents are sent out immediately before this event to introduce the data\noffer object. The selection event is sent to a client when a new\nselection is set. The wlr_data_control_offer is valid until a new\nwlr_data_control_offer or NULL is received. The client must destroy the\nprevious selection wlr_data_control_offer, if any, upon receiving this\nevent.\n\nThe first selection event is sent upon binding the\nwlr_data_control_device object."] - Selection { - id: Option, - }, - #[doc = "this data control is no longer valid\n\nThis data control object is no longer valid and should be destroyed by\nthe client."] - Finished, - #[doc = "advertise new primary selection\n\nThe primary_selection event is sent out to notify the client of a new\nwlr_data_control_offer for the primary selection for this device. The\nwlr_data_control_device.data_offer and the wlr_data_control_offer.offer\nevents are sent out immediately before this event to introduce the data\noffer object. The primary_selection event is sent to a client when a\nnew primary selection is set. The wlr_data_control_offer is valid until\na new wlr_data_control_offer or NULL is received. The client must\ndestroy the previous primary selection wlr_data_control_offer, if any,\nupon receiving this event.\n\nIf the compositor supports primary selection, the first\nprimary_selection event is sent upon binding the\nwlr_data_control_device object.\n\nOnly available since version 2 of the interface"] - PrimarySelection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "primary_selection", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Selection { .. } => 1, - Event::Finished => 2, - Event::PrimarySelection { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Selection { .. } => 1, - Event::Finished => 1, - Event::PrimarySelection { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_data_control_offer_v1::ZwlrDataControlOfferV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Finished), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::PrimarySelection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok (Event :: DataOffer { id : Main :: < super :: zwlr_data_control_offer_v1 :: ZwlrDataControlOfferV1 > :: from_c_ptr (_args [0] . o as * mut _) , }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwlr_data_control_offer_v1 :: ZwlrDataControlOfferV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - 2 => Ok(Event::Finished), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PrimarySelection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwlr_data_control_offer_v1 :: ZwlrDataControlOfferV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlDeviceV1(Proxy); - impl AsRef> for ZwlrDataControlDeviceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlDeviceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlDeviceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlDeviceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlDeviceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlDeviceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_device_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_device_v1_interface } - } - } - impl ZwlrDataControlDeviceV1 { - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection to the data from\nthe source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::zwlr_data_control_source_v1::ZwlrDataControlSourceV1>, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "destroy this data device\n\nDestroys the data device object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "copy data to the primary selection\n\nThis request asks the compositor to set the primary selection to the\ndata from the source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the primary selection, set the source to NULL.\n\nThe compositor will ignore this request if it does not support primary\nselection.\n\nOnly available since version 2 of the interface."] - pub fn set_primary_selection( - &self, - source: Option<&super::zwlr_data_control_source_v1::ZwlrDataControlSourceV1>, - ) -> () { - let msg = Request::SetPrimarySelection { - source: source.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PRIMARY_SELECTION_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRIMARY_SELECTION_SINCE: u32 = 2u32; - static mut zwlr_data_control_device_v1_requests_set_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_data_control_source_v1::zwlr_data_control_source_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_device_v1_requests_set_primary_selection_types: - [*const wl_interface; 1] = [unsafe { - &super::zwlr_data_control_source_v1::zwlr_data_control_source_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_device_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_data_control_device_v1_requests_set_selection_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_primary_selection\0" as *const u8 as *const c_char, - signature: b"2?o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_device_v1_requests_set_primary_selection_types as *const _ - }, - }, - ]; - static mut zwlr_data_control_device_v1_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_data_control_offer_v1::zwlr_data_control_offer_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_device_v1_events_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_data_control_offer_v1::zwlr_data_control_offer_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_device_v1_events_primary_selection_types: [*const wl_interface; - 1] = [unsafe { - &super::zwlr_data_control_offer_v1::zwlr_data_control_offer_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_device_v1_events: [wl_message; 4] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_data_control_device_v1_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_data_control_device_v1_events_selection_types as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"primary_selection\0" as *const u8 as *const c_char, - signature: b"2?o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_device_v1_events_primary_selection_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_device_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_device_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwlr_data_control_device_v1_requests as *const _ }, - event_count: 4, - events: unsafe { &zwlr_data_control_device_v1_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nThe wlr_data_control_source object is the source side of a\nwlr_data_control_offer. It is created by the source client in a data\ntransfer and provides a way to describe the offered data and a way to\nrespond to requests to transfer the data."] -pub mod zwlr_data_control_source_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "offer sent after wlr_data_control_device.set_selection"] - InvalidOffer = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::InvalidOffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered MIME type\n\nThis request adds a MIME type to the set of MIME types advertised to\ntargets. Can be called several times to offer multiple types.\n\nCalling this after wlr_data_control_device.set_selection is a protocol\nerror."] - Offer { mime_type: String }, - #[doc = "destroy this source\n\nDestroys the data source object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "send the data\n\nRequest for data from the client. Send the data as the specified MIME\ntype over the passed file descriptor, then close it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "selection was cancelled\n\nThis data source is no longer valid. The data source has been replaced\nby another data source.\n\nThe client should clean up and destroy this data source."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Send { .. } => 0, - Event::Cancelled => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Send { .. } => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 1 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlSourceV1(Proxy); - impl AsRef> for ZwlrDataControlSourceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlSourceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlSourceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlSourceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlSourceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlSourceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_source_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_source_v1_interface } - } - } - impl ZwlrDataControlSourceV1 { - #[doc = "add an offered MIME type\n\nThis request adds a MIME type to the set of MIME types advertised to\ntargets. Can be called several times to offer multiple types.\n\nCalling this after wlr_data_control_device.set_selection is a protocol\nerror."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy this source\n\nDestroys the data source object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_source_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_source_v1_events: [wl_message; 2] = [ - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_source_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_source_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_data_control_source_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_data_control_source_v1_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nA wlr_data_control_offer represents a piece of data offered for transfer\nby another client (the source client). The offer describes the different\nMIME types that the data can be converted to and provides the mechanism\nfor transferring the data directly from the source client."] -pub mod zwlr_data_control_offer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request and\nindicates the MIME type it wants to receive. The transfer happens\nthrough the passed file descriptor (typically created with the pipe\nsystem call). The source client writes the data in the MIME type\nrepresentation requested and then closes the file descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\nthen closes its end, at which point the transfer is complete.\n\nThis request may happen multiple times for different MIME types."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy this offer\n\nDestroys the data offer object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Receive { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Receive { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered MIME type\n\nSent immediately after creating the wlr_data_control_offer object.\nOne event per offered MIME type."] - Offer { mime_type: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlOfferV1(Proxy); - impl AsRef> for ZwlrDataControlOfferV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlOfferV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlOfferV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlOfferV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlOfferV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlOfferV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_offer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_offer_v1_interface } - } - } - impl ZwlrDataControlOfferV1 { - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request and\nindicates the MIME type it wants to receive. The transfer happens\nthrough the passed file descriptor (typically created with the pipe\nsystem call). The source client writes the data in the MIME type\nrepresentation requested and then closes the file descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\nthen closes its end, at which point the transfer is complete.\n\nThis request may happen multiple times for different MIME types."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy this offer\n\nDestroys the data offer object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_offer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_offer_v1_events: [wl_message; 1] = [wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_offer_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_offer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_data_control_offer_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwlr_data_control_offer_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs deleted file mode 100644 index 53dbf62..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs +++ /dev/null @@ -1,826 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 10] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manager to inform clients and begin capturing\n\nThis object is a manager with which to start capturing from sources."] -pub mod zwlr_export_dmabuf_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "capture a frame from an output\n\nCapture the next frame of an entire output."] - CaptureOutput { - overlay_cursor: i32, - output: super::wl_output::WlOutput, - }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "capture_output", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CaptureOutput { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CaptureOutput { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_export_dmabuf_frame_v1::ZwlrExportDmabufFrameV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Int(overlay_cursor), - Argument::Object(output.as_ref().id()), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = overlay_cursor; - _args_array[2].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrExportDmabufManagerV1(Proxy); - impl AsRef> for ZwlrExportDmabufManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrExportDmabufManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrExportDmabufManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrExportDmabufManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrExportDmabufManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrExportDmabufManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_export_dmabuf_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_export_dmabuf_manager_v1_interface } - } - } - impl ZwlrExportDmabufManagerV1 { - #[doc = "capture a frame from an output\n\nCapture the next frame of an entire output."] - pub fn capture_output( - &self, - overlay_cursor: i32, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::CaptureOutput { - overlay_cursor: overlay_cursor, - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CAPTURE_OUTPUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_export_dmabuf_manager_v1_requests_capture_output_types: [*const wl_interface; - 3] = [ - unsafe { - &super::zwlr_export_dmabuf_frame_v1::zwlr_export_dmabuf_frame_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_export_dmabuf_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"capture_output\0" as *const u8 as *const c_char, - signature: b"nio\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_export_dmabuf_manager_v1_requests_capture_output_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_export_dmabuf_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_export_dmabuf_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_export_dmabuf_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a DMA-BUF frame\n\nThis object represents a single DMA-BUF frame.\n\nIf the capture is successful, the compositor will first send a \"frame\"\nevent, followed by one or several \"object\". When the frame is available\nfor readout, the \"ready\" event is sent.\n\nIf the capture failed, the \"cancel\" event is sent. This can happen anytime\nbefore the \"ready\" event.\n\nOnce either a \"ready\" or a \"cancel\" event is received, the client should\ndestroy the frame. Once an \"object\" event is received, the client is\nresponsible for closing the associated file descriptor.\n\nAll frames are read-only and may not be written into or altered."] -pub mod zwlr_export_dmabuf_frame_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "frame flags\n\nSpecial flags that should be respected by the client."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Flags { - #[doc = "clients should copy frame before processing"] - Transient = 1, - } - impl Flags { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Flags::Transient), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "cancel reason\n\nIndicates reason for cancelling the frame."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum CancelReason { - #[doc = "temporary error, source will produce more frames"] - Temporary = 0, - #[doc = "fatal error, source will not produce frames"] - Permanent = 1, - #[doc = "temporary error, source will produce more frames"] - Resizing = 2, - } - impl CancelReason { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(CancelReason::Temporary), - 1 => Some(CancelReason::Permanent), - 2 => Some(CancelReason::Resizing), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "delete this object, used or not\n\nUnreferences the frame. This request must be called as soon as its no\nlonger used.\n\nIt can be called at any time by the client. The client will still have\nto close any FDs it has been given.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "a frame description\n\nMain event supplying the client with information about the frame. If the\ncapture didn't fail, this event is always emitted first before any other\nevents.\n\nThis event is followed by a number of \"object\" as specified by the\n\"num_objects\" argument."] - Frame { - width: u32, - height: u32, - offset_x: u32, - offset_y: u32, - buffer_flags: u32, - flags: Flags, - format: u32, - mod_high: u32, - mod_low: u32, - num_objects: u32, - }, - #[doc = "an object description\n\nEvent which serves to supply the client with the file descriptors\ncontaining the data for each object.\n\nAfter receiving this event, the client must always close the file\ndescriptor as soon as they're done with it and even if the frame fails."] - Object { - index: u32, - fd: ::std::os::unix::io::RawFd, - size: u32, - offset: u32, - stride: u32, - plane_index: u32, - }, - #[doc = "indicates frame is available for reading\n\nThis event is sent as soon as the frame is presented, indicating it is\navailable for reading. This event includes the time at which\npresentation happened at.\n\nThe timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples,\neach component being an unsigned 32-bit value. Whole seconds are in\ntv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo,\nand the additional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999]. The seconds part\nmay have an arbitrary offset at start.\n\nAfter receiving this event, the client should destroy this object."] - Ready { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - }, - #[doc = "indicates the frame is no longer valid\n\nIf the capture failed or if the frame is no longer valid after the\n\"frame\" event has been emitted, this event will be used to inform the\nclient to scrap the frame.\n\nIf the failure is temporary, the client may capture again the same\nsource. If the failure is permanent, any further attempts to capture the\nsame source will fail again.\n\nAfter receiving this event, the client should destroy this object."] - Cancel { reason: CancelReason }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "frame", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "object", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fd, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "ready", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "cancel", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Frame { .. } => 0, - Event::Object { .. } => 1, - Event::Ready { .. } => 2, - Event::Cancel { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Frame { .. } => 1, - Event::Object { .. } => 1, - Event::Ready { .. } => 1, - Event::Cancel { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - offset_x: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - offset_y: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - buffer_flags: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Flags::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mod_high: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mod_low: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - num_objects: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Object { - index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - offset: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - stride: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - plane_index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ready { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Cancel { - reason: { - if let Some(Argument::Uint(val)) = args.next() { - CancelReason::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 10); - Ok(Event::Frame { - width: _args[0].u, - height: _args[1].u, - offset_x: _args[2].u, - offset_y: _args[3].u, - buffer_flags: _args[4].u, - flags: Flags::from_raw(_args[5].u).ok_or(())?, - format: _args[6].u, - mod_high: _args[7].u, - mod_low: _args[8].u, - num_objects: _args[9].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 6); - Ok(Event::Object { - index: _args[0].u, - fd: _args[1].h, - size: _args[2].u, - offset: _args[3].u, - stride: _args[4].u, - plane_index: _args[5].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Ready { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Cancel { - reason: CancelReason::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrExportDmabufFrameV1(Proxy); - impl AsRef> for ZwlrExportDmabufFrameV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrExportDmabufFrameV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrExportDmabufFrameV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrExportDmabufFrameV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrExportDmabufFrameV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrExportDmabufFrameV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_export_dmabuf_frame_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_export_dmabuf_frame_v1_interface } - } - } - impl ZwlrExportDmabufFrameV1 { - #[doc = "delete this object, used or not\n\nUnreferences the frame. This request must be called as soon as its no\nlonger used.\n\nIt can be called at any time by the client. The client will still have\nto close any FDs it has been given.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OBJECT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_READY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCEL_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_export_dmabuf_frame_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_export_dmabuf_frame_v1_events: [wl_message; 4] = [ - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"uuuuuuuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"object\0" as *const u8 as *const c_char, - signature: b"uhuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ready\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancel\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_export_dmabuf_frame_v1_interface: wl_interface = wl_interface { - name: b"zwlr_export_dmabuf_frame_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwlr_export_dmabuf_frame_v1_requests as *const _ }, - event_count: 4, - events: unsafe { &zwlr_export_dmabuf_frame_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs deleted file mode 100644 index 7e22741..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs +++ /dev/null @@ -1,1154 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "list and control opened apps\n\nThe purpose of this protocol is to enable the creation of taskbars\nand docks by providing them with a list of opened applications and\nletting them request certain actions on them, like maximizing, etc.\n\nAfter a client binds the zwlr_foreign_toplevel_manager_v1, each opened\ntoplevel window will be sent via the toplevel event"] -pub mod zwlr_foreign_toplevel_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for new toplevels.\nHowever the compositor may emit further toplevel_created events, until\nthe finished event is emitted.\n\nThe client must not send any more requests after this one."] - Stop, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Stop => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Stop => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Stop => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Stop => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "a toplevel has been created\n\nThis event is emitted whenever a new toplevel window is created. It\nis emitted for all toplevels, regardless of the app that has created\nthem.\n\nAll initial details of the toplevel(title, app_id, states, etc.) will\nbe sent immediately after this event via the corresponding events in\nzwlr_foreign_toplevel_handle_v1."] - Toplevel { - toplevel: Main, - }, - #[doc = "the compositor has finished with the toplevel manager\n\nThis event indicates that the compositor is done sending events to the\nzwlr_foreign_toplevel_manager_v1. The server will destroy the object\nimmediately after sending this request, so it will become invalid and\nthe client should free any resources associated with it."] - Finished, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "toplevel", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Toplevel { .. } => 0, - Event::Finished => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Toplevel { .. } => 1, - Event::Finished => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_foreign_toplevel_handle_v1::ZwlrForeignToplevelHandleV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Toplevel { - toplevel: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Finished), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Toplevel { - toplevel: Main::< - super::zwlr_foreign_toplevel_handle_v1::ZwlrForeignToplevelHandleV1, - >::from_c_ptr(_args[0].o as *mut _), - }) - } - 1 => Ok(Event::Finished), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrForeignToplevelManagerV1(Proxy); - impl AsRef> for ZwlrForeignToplevelManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrForeignToplevelManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrForeignToplevelManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrForeignToplevelManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrForeignToplevelManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrForeignToplevelManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_foreign_toplevel_manager_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_foreign_toplevel_manager_v1_interface } - } - } - impl ZwlrForeignToplevelManagerV1 { - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for new toplevels.\nHowever the compositor may emit further toplevel_created events, until\nthe finished event is emitted.\n\nThe client must not send any more requests after this one."] - pub fn stop(&self) -> () { - let msg = Request::Stop; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_manager_v1_requests: [wl_message; 1] = [wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwlr_foreign_toplevel_manager_v1_events_toplevel_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_foreign_toplevel_handle_v1::zwlr_foreign_toplevel_handle_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_manager_v1_events: [wl_message; 2] = [ - wl_message { - name: b"toplevel\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_foreign_toplevel_manager_v1_events_toplevel_types as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_foreign_toplevel_manager_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 1, - requests: unsafe { &zwlr_foreign_toplevel_manager_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_foreign_toplevel_manager_v1_events as *const _ }, - }; -} -#[doc = "an opened toplevel\n\nA zwlr_foreign_toplevel_handle_v1 object represents an opened toplevel\nwindow. Each app may have multiple opened toplevels.\n\nEach toplevel has a list of outputs it is visible on, conveyed to the\nclient with the output_enter and output_leave events."] -pub mod zwlr_foreign_toplevel_handle_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "types of states on the toplevel\n\nThe different states that a toplevel can have. These have the same meaning\nas the states with the same names defined in xdg-toplevel"] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the toplevel is maximized"] - Maximized = 0, - #[doc = "the toplevel is minimized"] - Minimized = 1, - #[doc = "the toplevel is active"] - Activated = 2, - #[doc = "the toplevel is fullscreen"] - Fullscreen = 3, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(State::Maximized), - 1 => Some(State::Minimized), - 2 => Some(State::Activated), - 3 => Some(State::Fullscreen), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the provided rectangle is invalid"] - InvalidRectangle = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidRectangle), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "requests that the toplevel be maximized\n\nRequests that the toplevel be maximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - SetMaximized, - #[doc = "requests that the toplevel be unmaximized\n\nRequests that the toplevel be unmaximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - UnsetMaximized, - #[doc = "requests that the toplevel be minimized\n\nRequests that the toplevel be minimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - SetMinimized, - #[doc = "requests that the toplevel be unminimized\n\nRequests that the toplevel be unminimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - UnsetMinimized, - #[doc = "activate the toplevel\n\nRequest that this toplevel be activated on the given seat.\nThere is no guarantee the toplevel will be actually activated."] - Activate { seat: super::wl_seat::WlSeat }, - #[doc = "request that the toplevel be closed\n\nSend a request to the toplevel to close itself. The compositor would\ntypically use a shell-specific method to carry out this request, for\nexample by sending the xdg_toplevel.close event. However, this gives\nno guarantees the toplevel will actually be destroyed. If and when\nthis happens, the zwlr_foreign_toplevel_handle_v1.closed event will\nbe emitted."] - Close, - #[doc = "the rectangle which represents the toplevel\n\nThe rectangle of the surface specified in this request corresponds to\nthe place where the app using this protocol represents the given toplevel.\nIt can be used by the compositor as a hint for some operations, e.g\nminimizing. The client is however not required to set this, in which\ncase the compositor is free to decide some default value.\n\nIf the client specifies more than one rectangle, only the last one is\nconsidered.\n\nThe dimensions are given in surface-local coordinates.\nSetting width=height=0 removes the already-set rectangle."] - SetRectangle { - surface: super::wl_surface::WlSurface, - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "destroy the zwlr_foreign_toplevel_handle_v1 object\n\nDestroys the zwlr_foreign_toplevel_handle_v1 object.\n\nThis request should be called either when the client does not want to\nuse the toplevel anymore or after the closed event to finalize the\ndestruction of the object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "request that the toplevel be fullscreened\n\nRequests that the toplevel be fullscreened on the given output. If the\nfullscreen state and/or the outputs the toplevel is visible on actually\nchange, this will be indicated by the state and output_enter/leave\nevents.\n\nThe output parameter is only a hint to the compositor. Also, if output\nis NULL, the compositor should decide which output the toplevel will be\nfullscreened on, if at all.\n\nOnly available since version 2 of the interface"] - SetFullscreen { - output: Option, - }, - #[doc = "request that the toplevel be unfullscreened\n\nRequests that the toplevel be unfullscreened. If the fullscreen state\nactually changes, this will be indicated by the state event.\n\nOnly available since version 2 of the interface"] - UnsetFullscreen, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_minimized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "activate", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 2, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetMaximized => 0, - Request::UnsetMaximized => 1, - Request::SetMinimized => 2, - Request::UnsetMinimized => 3, - Request::Activate { .. } => 4, - Request::Close => 5, - Request::SetRectangle { .. } => 6, - Request::Destroy => 7, - Request::SetFullscreen { .. } => 8, - Request::UnsetFullscreen => 9, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetMinimized => 1, - Request::UnsetMinimized => 1, - Request::Activate { .. } => 1, - Request::Close => 1, - Request::SetRectangle { .. } => 1, - Request::Destroy => 1, - Request::SetFullscreen { .. } => 2, - Request::UnsetFullscreen => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::UnsetMinimized => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::Activate { seat } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Object(seat.as_ref().id()),], - }, - Request::Close => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![], - }, - Request::SetRectangle { - surface, - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(surface.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::UnsetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::Activate { seat } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - f(4, &mut _args_array) - } - Request::Close => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(5, &mut _args_array) - } - Request::SetRectangle { - surface, - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - _args_array[1].i = x; - _args_array[2].i = y; - _args_array[3].i = width; - _args_array[4].i = height; - f(6, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(8, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "title change\n\nThis event is emitted whenever the title of the toplevel changes."] - Title { title: String }, - #[doc = "app-id change\n\nThis event is emitted whenever the app-id of the toplevel changes."] - AppId { app_id: String }, - #[doc = "toplevel entered an output\n\nThis event is emitted whenever the toplevel becomes visible on\nthe given output. A toplevel may be visible on multiple outputs."] - OutputEnter { output: super::wl_output::WlOutput }, - #[doc = "toplevel left an output\n\nThis event is emitted whenever the toplevel stops being visible on\nthe given output. It is guaranteed that an entered-output event\nwith the same output has been emitted before this event."] - OutputLeave { output: super::wl_output::WlOutput }, - #[doc = "the toplevel state changed\n\nThis event is emitted immediately after the zlw_foreign_toplevel_handle_v1\nis created and each time the toplevel state changes, either because of a\ncompositor action or because of a request in this protocol."] - State { state: Vec }, - #[doc = "all information about the toplevel has been sent\n\nThis event is sent after all changes in the toplevel state have been\nsent.\n\nThis allows changes to the zwlr_foreign_toplevel_handle_v1 properties\nto be seen as atomic, even if they happen via multiple events."] - Done, - #[doc = "this toplevel has been destroyed\n\nThis event means the toplevel has been destroyed. It is guaranteed there\nwon't be any more events for this zwlr_foreign_toplevel_handle_v1. The\ntoplevel itself becomes inert so any requests will be ignored except the\ndestroy request."] - Closed, - #[doc = "parent change\n\nThis event is emitted whenever the parent of the toplevel changes.\n\nNo event is emitted when the parent handle is destroyed by the client.\n\nOnly available since version 3 of the interface"] - Parent { - parent: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "output_enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "output_leave", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "state", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "closed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "parent", - since: 3, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Title { .. } => 0, - Event::AppId { .. } => 1, - Event::OutputEnter { .. } => 2, - Event::OutputLeave { .. } => 3, - Event::State { .. } => 4, - Event::Done => 5, - Event::Closed => 6, - Event::Parent { .. } => 7, - } - } - fn since(&self) -> u32 { - match *self { - Event::Title { .. } => 1, - Event::AppId { .. } => 1, - Event::OutputEnter { .. } => 1, - Event::OutputLeave { .. } => 1, - Event::State { .. } => 1, - Event::Done => 1, - Event::Closed => 1, - Event::Parent { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Title { - title: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::AppId { - app_id: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::OutputEnter { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::OutputLeave { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::State { - state: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Closed), - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::Parent { - parent: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Title { - title: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::AppId { - app_id: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::OutputEnter { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::OutputLeave { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::State { - state: { - let array = &*_args[0].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Closed), - 7 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Parent { - parent: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwlr_foreign_toplevel_handle_v1 :: ZwlrForeignToplevelHandleV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrForeignToplevelHandleV1(Proxy); - impl AsRef> for ZwlrForeignToplevelHandleV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrForeignToplevelHandleV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrForeignToplevelHandleV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrForeignToplevelHandleV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrForeignToplevelHandleV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrForeignToplevelHandleV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_foreign_toplevel_handle_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_foreign_toplevel_handle_v1_interface } - } - } - impl ZwlrForeignToplevelHandleV1 { - #[doc = "requests that the toplevel be maximized\n\nRequests that the toplevel be maximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "requests that the toplevel be unmaximized\n\nRequests that the toplevel be unmaximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "requests that the toplevel be minimized\n\nRequests that the toplevel be minimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - #[doc = "requests that the toplevel be unminimized\n\nRequests that the toplevel be unminimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - pub fn unset_minimized(&self) -> () { - let msg = Request::UnsetMinimized; - self.0.send::(msg, None); - } - #[doc = "activate the toplevel\n\nRequest that this toplevel be activated on the given seat.\nThere is no guarantee the toplevel will be actually activated."] - pub fn activate(&self, seat: &super::wl_seat::WlSeat) -> () { - let msg = Request::Activate { seat: seat.clone() }; - self.0.send::(msg, None); - } - #[doc = "request that the toplevel be closed\n\nSend a request to the toplevel to close itself. The compositor would\ntypically use a shell-specific method to carry out this request, for\nexample by sending the xdg_toplevel.close event. However, this gives\nno guarantees the toplevel will actually be destroyed. If and when\nthis happens, the zwlr_foreign_toplevel_handle_v1.closed event will\nbe emitted."] - pub fn close(&self) -> () { - let msg = Request::Close; - self.0.send::(msg, None); - } - #[doc = "the rectangle which represents the toplevel\n\nThe rectangle of the surface specified in this request corresponds to\nthe place where the app using this protocol represents the given toplevel.\nIt can be used by the compositor as a hint for some operations, e.g\nminimizing. The client is however not required to set this, in which\ncase the compositor is free to decide some default value.\n\nIf the client specifies more than one rectangle, only the last one is\nconsidered.\n\nThe dimensions are given in surface-local coordinates.\nSetting width=height=0 removes the already-set rectangle."] - pub fn set_rectangle( - &self, - surface: &super::wl_surface::WlSurface, - x: i32, - y: i32, - width: i32, - height: i32, - ) -> () { - let msg = Request::SetRectangle { - surface: surface.clone(), - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the zwlr_foreign_toplevel_handle_v1 object\n\nDestroys the zwlr_foreign_toplevel_handle_v1 object.\n\nThis request should be called either when the client does not want to\nuse the toplevel anymore or after the closed event to finalize the\ndestruction of the object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "request that the toplevel be fullscreened\n\nRequests that the toplevel be fullscreened on the given output. If the\nfullscreen state and/or the outputs the toplevel is visible on actually\nchange, this will be indicated by the state and output_enter/leave\nevents.\n\nThe output parameter is only a hint to the compositor. Also, if output\nis NULL, the compositor should decide which output the toplevel will be\nfullscreened on, if at all.\n\nOnly available since version 2 of the interface."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "request that the toplevel be unfullscreened\n\nRequests that the toplevel be unfullscreened. If the fullscreen state\nactually changes, this will be indicated by the state event.\n\nOnly available since version 2 of the interface."] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CLOSE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OUTPUT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OUTPUT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PARENT_SINCE: u32 = 3u32; - static mut zwlr_foreign_toplevel_handle_v1_requests_activate_types: [*const wl_interface; 1] = - [unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }]; - static mut zwlr_foreign_toplevel_handle_v1_requests_set_rectangle_types: [*const wl_interface; - 5] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut zwlr_foreign_toplevel_handle_v1_requests_set_fullscreen_types: - [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_handle_v1_requests: [wl_message; 10] = [ - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_foreign_toplevel_handle_v1_requests_activate_types as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_rectangle\0" as *const u8 as *const c_char, - signature: b"oiiii\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_requests_set_rectangle_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"2?o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_requests_set_fullscreen_types as *const _ - }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwlr_foreign_toplevel_handle_v1_events_output_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - static mut zwlr_foreign_toplevel_handle_v1_events_output_leave_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - static mut zwlr_foreign_toplevel_handle_v1_events_parent_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_foreign_toplevel_handle_v1::zwlr_foreign_toplevel_handle_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_handle_v1_events: [wl_message; 8] = [ - wl_message { - name: b"title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"output_enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_events_output_enter_types as *const _ - }, - }, - wl_message { - name: b"output_leave\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_events_output_leave_types as *const _ - }, - }, - wl_message { - name: b"state\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"closed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"parent\0" as *const u8 as *const c_char, - signature: b"3?o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_foreign_toplevel_handle_v1_events_parent_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_handle_v1_interface: wl_interface = wl_interface { - name: b"zwlr_foreign_toplevel_handle_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 10, - requests: unsafe { &zwlr_foreign_toplevel_handle_v1_requests as *const _ }, - event_count: 8, - events: unsafe { &zwlr_foreign_toplevel_handle_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs deleted file mode 100644 index 511fee7..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs +++ /dev/null @@ -1,545 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "manager to create per-output gamma controls\n\nThis interface is a manager that allows creating per-output gamma\ncontrols."] -pub mod zwlr_gamma_control_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get a gamma control for an output\n\nCreate a gamma control that can be used to adjust gamma tables for the\nprovided output."] - GetGammaControl { output: super::wl_output::WlOutput }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_gamma_control", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetGammaControl { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetGammaControl { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_gamma_control_v1::ZwlrGammaControlV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetGammaControl { output } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(output.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetGammaControl { output } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrGammaControlManagerV1(Proxy); - impl AsRef> for ZwlrGammaControlManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrGammaControlManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrGammaControlManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrGammaControlManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrGammaControlManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrGammaControlManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_gamma_control_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_gamma_control_manager_v1_interface } - } - } - impl ZwlrGammaControlManagerV1 { - #[doc = "get a gamma control for an output\n\nCreate a gamma control that can be used to adjust gamma tables for the\nprovided output."] - pub fn get_gamma_control( - &self, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::GetGammaControl { - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_GAMMA_CONTROL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_gamma_control_manager_v1_requests_get_gamma_control_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwlr_gamma_control_v1::zwlr_gamma_control_v1_interface as *const wl_interface - }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_gamma_control_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_gamma_control\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_gamma_control_manager_v1_requests_get_gamma_control_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_gamma_control_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_gamma_control_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_gamma_control_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "adjust gamma tables for an output\n\nThis interface allows a client to adjust gamma tables for a particular\noutput.\n\nThe client will receive the gamma size, and will then be able to set gamma\ntables. At any time the compositor can send a failed event indicating that\nthis object is no longer valid.\n\nThere can only be at most one gamma control object per output, which\nhas exclusive access to this particular output. When the gamma control\nobject is destroyed, the gamma table is restored to its original value."] -pub mod zwlr_gamma_control_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid gamma tables"] - InvalidGamma = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::InvalidGamma), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the gamma table\n\nSet the gamma table. The file descriptor can be memory-mapped to provide\nthe raw gamma table, which contains successive gamma ramps for the red,\ngreen and blue channels. Each gamma ramp is an array of 16-byte unsigned\nintegers which has the same length as the gamma size.\n\nThe file descriptor data must have the same length as three times the\ngamma size."] - SetGamma { fd: ::std::os::unix::io::RawFd }, - #[doc = "destroy this control\n\nDestroys the gamma control object. If the object is still valid, this\nrestores the original gamma tables.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_gamma", - since: 1, - signature: &[super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetGamma { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetGamma { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetGamma { fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Fd(fd),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetGamma { fd } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "size of gamma ramps\n\nAdvertise the size of each gamma ramp.\n\nThis event is sent immediately when the gamma control object is created."] - GammaSize { size: u32 }, - #[doc = "object no longer valid\n\nThis event indicates that the gamma control is no longer valid. This\ncan happen for a number of reasons, including:\n- The output doesn't support gamma tables\n- Setting the gamma tables failed\n- Another client already has exclusive gamma control for this output\n- The compositor has transferred gamma control to another client\n\nUpon receiving this event, the client should destroy this object."] - Failed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "gamma_size", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::GammaSize { .. } => 0, - Event::Failed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::GammaSize { .. } => 1, - Event::Failed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::GammaSize { - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Failed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::GammaSize { size: _args[0].u }) - } - 1 => Ok(Event::Failed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrGammaControlV1(Proxy); - impl AsRef> for ZwlrGammaControlV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrGammaControlV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrGammaControlV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrGammaControlV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrGammaControlV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrGammaControlV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_gamma_control_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_gamma_control_v1_interface } - } - } - impl ZwlrGammaControlV1 { - #[doc = "set the gamma table\n\nSet the gamma table. The file descriptor can be memory-mapped to provide\nthe raw gamma table, which contains successive gamma ramps for the red,\ngreen and blue channels. Each gamma ramp is an array of 16-byte unsigned\nintegers which has the same length as the gamma size.\n\nThe file descriptor data must have the same length as three times the\ngamma size."] - pub fn set_gamma(&self, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::SetGamma { fd: fd }; - self.0.send::(msg, None); - } - #[doc = "destroy this control\n\nDestroys the gamma control object. If the object is still valid, this\nrestores the original gamma tables.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_GAMMA_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GAMMA_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_gamma_control_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_gamma\0" as *const u8 as *const c_char, - signature: b"h\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_gamma_control_v1_events: [wl_message; 2] = [ - wl_message { - name: b"gamma_size\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_gamma_control_v1_interface: wl_interface = wl_interface { - name: b"zwlr_gamma_control_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_gamma_control_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_gamma_control_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs deleted file mode 100644 index 0e5e353..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs +++ /dev/null @@ -1,399 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "inhibits input events to other clients\n\nClients can use this interface to prevent input events from being sent to\nany surfaces but its own, which is useful for example in lock screen\nsoftware. It is assumed that access to this interface will be locked down\nto whitelisted clients by the compositor."] -pub mod zwlr_input_inhibit_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "an input inhibitor is already in use on the compositor"] - AlreadyInhibited = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyInhibited), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "inhibit input to other clients\n\nActivates the input inhibitor. As long as the inhibitor is active, the\ncompositor will not send input events to other clients."] - GetInhibitor {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "get_inhibitor", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetInhibitor { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetInhibitor { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_input_inhibitor_v1::ZwlrInputInhibitorV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetInhibitor {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetInhibitor {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrInputInhibitManagerV1(Proxy); - impl AsRef> for ZwlrInputInhibitManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrInputInhibitManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrInputInhibitManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrInputInhibitManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrInputInhibitManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrInputInhibitManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_input_inhibit_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_input_inhibit_manager_v1_interface } - } - } - impl ZwlrInputInhibitManagerV1 { - #[doc = "inhibit input to other clients\n\nActivates the input inhibitor. As long as the inhibitor is active, the\ncompositor will not send input events to other clients."] - pub fn get_inhibitor(&self) -> Main { - let msg = Request::GetInhibitor {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INHIBITOR_SINCE: u32 = 1u32; - static mut zwlr_input_inhibit_manager_v1_requests_get_inhibitor_types: [*const wl_interface; - 1] = [unsafe { - &super::zwlr_input_inhibitor_v1::zwlr_input_inhibitor_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_input_inhibit_manager_v1_requests: [wl_message; 1] = [wl_message { - name: b"get_inhibitor\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_input_inhibit_manager_v1_requests_get_inhibitor_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_input_inhibit_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_input_inhibit_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwlr_input_inhibit_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "inhibits input to other clients\n\nWhile this resource exists, input to clients other than the owner of the\ninhibitor resource will not receive input events. Any client which\npreviously had focus will receive a leave event and will not be given\nfocus again. The client that owns this resource will receive all input\nevents normally. The compositor will also disable all of its own input\nprocessing (such as keyboard shortcuts) while the inhibitor is active.\n\nThe compositor may continue to send input events to selected clients,\nsuch as an on-screen keyboard (via the input-method protocol)."] -pub mod zwlr_input_inhibitor_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the input inhibitor object\n\nDestroy the inhibitor and allow other clients to receive input.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrInputInhibitorV1(Proxy); - impl AsRef> for ZwlrInputInhibitorV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrInputInhibitorV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrInputInhibitorV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrInputInhibitorV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrInputInhibitorV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrInputInhibitorV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_input_inhibitor_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_input_inhibitor_v1_interface } - } - } - impl ZwlrInputInhibitorV1 { - #[doc = "destroy the input inhibitor object\n\nDestroy the inhibitor and allow other clients to receive input.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_input_inhibitor_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_input_inhibitor_v1_interface: wl_interface = wl_interface { - name: b"zwlr_input_inhibitor_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwlr_input_inhibitor_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs deleted file mode 100644 index c08e126..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs +++ /dev/null @@ -1,985 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create surfaces that are layers of the desktop\n\nClients can use this interface to assign the surface_layer role to\nwl_surfaces. Such surfaces are assigned to a \"layer\" of the output and\nrendered with a defined z-depth respective to each other. They may also be\nanchored to the edges and corners of a screen and specify input handling\nsemantics. This interface should be suitable for the implementation of\nmany desktop shell components, and a broad number of other applications\nthat interact with the desktop."] -pub mod zwlr_layer_shell_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "wl_surface has another role"] - Role = 0, - #[doc = "layer value is invalid"] - InvalidLayer = 1, - #[doc = "wl_surface has a buffer attached or committed"] - AlreadyConstructed = 2, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::InvalidLayer), - 2 => Some(Error::AlreadyConstructed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "available layers for surfaces\n\nThese values indicate which layers a surface can be rendered in. They\nare ordered by z depth, bottom-most first. Traditional shell surfaces\nwill typically be rendered between the bottom and top layers.\nFullscreen shell surfaces are typically rendered at the top layer.\nMultiple surfaces can share a single layer, and ordering within a\nsingle layer is undefined."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Layer { - Background = 0, - Bottom = 1, - Top = 2, - Overlay = 3, - } - impl Layer { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Layer::Background), - 1 => Some(Layer::Bottom), - 2 => Some(Layer::Top), - 3 => Some(Layer::Overlay), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a layer_surface from a surface\n\nCreate a layer surface for an existing surface. This assigns the role of\nlayer_surface, or raises a protocol error if another role is already\nassigned.\n\nCreating a layer surface from a wl_surface which has a buffer attached\nor committed is a client error, and any attempts by a client to attach\nor manipulate a buffer prior to the first layer_surface.configure call\nmust also be treated as errors.\n\nAfter creating a layer_surface object and setting it up, the client\nmust perform an initial commit without any buffer attached.\nThe compositor will reply with a layer_surface.configure event.\nThe client must acknowledge it and is then allowed to attach a buffer\nto map the surface.\n\nYou may pass NULL for output to allow the compositor to decide which\noutput to use. Generally this will be the one that the user most\nrecently interacted with.\n\nClients can specify a namespace that defines the purpose of the layer\nsurface."] - GetLayerSurface { - surface: super::wl_surface::WlSurface, - output: Option, - layer: Layer, - namespace: String, - }, - #[doc = "destroy the layer_shell object\n\nThis request indicates that the client will not use the layer_shell\nobject any more. Objects that have been created through this instance\nare not affected.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_layer_surface", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 3, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetLayerSurface { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetLayerSurface { .. } => 1, - Request::Destroy => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_layer_surface_v1::ZwlrLayerSurfaceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetLayerSurface { - surface, - output, - layer, - namespace, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(layer.to_raw()), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(namespace.into()) - })), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetLayerSurface { - surface, - output, - layer, - namespace, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[3].u = layer.to_raw(); - let _arg_4 = ::std::ffi::CString::new(namespace).unwrap(); - _args_array[4].s = _arg_4.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrLayerShellV1(Proxy); - impl AsRef> for ZwlrLayerShellV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrLayerShellV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrLayerShellV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrLayerShellV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrLayerShellV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrLayerShellV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_layer_shell_v1"; - const VERSION: u32 = 4; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_layer_shell_v1_interface } - } - } - impl ZwlrLayerShellV1 { - #[doc = "create a layer_surface from a surface\n\nCreate a layer surface for an existing surface. This assigns the role of\nlayer_surface, or raises a protocol error if another role is already\nassigned.\n\nCreating a layer surface from a wl_surface which has a buffer attached\nor committed is a client error, and any attempts by a client to attach\nor manipulate a buffer prior to the first layer_surface.configure call\nmust also be treated as errors.\n\nAfter creating a layer_surface object and setting it up, the client\nmust perform an initial commit without any buffer attached.\nThe compositor will reply with a layer_surface.configure event.\nThe client must acknowledge it and is then allowed to attach a buffer\nto map the surface.\n\nYou may pass NULL for output to allow the compositor to decide which\noutput to use. Generally this will be the one that the user most\nrecently interacted with.\n\nClients can specify a namespace that defines the purpose of the layer\nsurface."] - pub fn get_layer_surface( - &self, - surface: &super::wl_surface::WlSurface, - output: Option<&super::wl_output::WlOutput>, - layer: Layer, - namespace: String, - ) -> Main { - let msg = Request::GetLayerSurface { - surface: surface.clone(), - output: output.map(|o| o.clone()), - layer: layer, - namespace: namespace, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the layer_shell object\n\nThis request indicates that the client will not use the layer_shell\nobject any more. Objects that have been created through this instance\nare not affected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_LAYER_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 3u32; - static mut zwlr_layer_shell_v1_requests_get_layer_surface_types: [*const wl_interface; 5] = [ - unsafe { - &super::zwlr_layer_surface_v1::zwlr_layer_surface_v1_interface as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_layer_shell_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_layer_surface\0" as *const u8 as *const c_char, - signature: b"no?ous\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_layer_shell_v1_requests_get_layer_surface_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_layer_shell_v1_interface: wl_interface = wl_interface { - name: b"zwlr_layer_shell_v1\0" as *const u8 as *const c_char, - version: 4, - request_count: 2, - requests: unsafe { &zwlr_layer_shell_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "layer metadata interface\n\nAn interface that may be implemented by a wl_surface, for surfaces that\nare designed to be rendered as a layer of a stacked desktop-like\nenvironment.\n\nLayer surface state (layer, size, anchor, exclusive zone,\nmargin, interactivity) is double-buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nAttaching a null buffer to a layer surface unmaps it.\n\nUnmapping a layer_surface means that the surface cannot be shown by the\ncompositor until it is explicitly mapped again. The layer_surface\nreturns to the state it had right after layer_shell.get_layer_surface.\nThe client can re-map the surface by performing a commit without any\nbuffer attached, waiting for a configure event and handling it as usual."] -pub mod zwlr_layer_surface_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "types of keyboard interaction possible for a layer shell surface\n\nTypes of keyboard interaction possible for layer shell surfaces. The\nrationale for this is twofold: (1) some applications are not interested\nin keyboard events and not allowing them to be focused can improve the\ndesktop experience; (2) some applications will want to take exclusive\nkeyboard focus."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum KeyboardInteractivity { - #[doc = "no keyboard focus is possible\n\nThis value indicates that this surface is not interested in keyboard\nevents and the compositor should never assign it the keyboard focus.\n\nThis is the default value, set for newly created layer shell surfaces.\n\nThis is useful for e.g. desktop widgets that display information or\nonly have interaction with non-keyboard input devices."] - None = 0, - #[doc = "request exclusive keyboard focus\n\nRequest exclusive keyboard focus if this surface is above the shell surface layer.\n\nFor the top and overlay layers, the seat will always give\nexclusive keyboard focus to the top-most layer which has keyboard\ninteractivity set to exclusive. If this layer contains multiple\nsurfaces with keyboard interactivity set to exclusive, the compositor\ndetermines the one receiving keyboard events in an implementation-\ndefined manner. In this case, no guarantee is made when this surface\nwill receive keyboard focus (if ever).\n\nFor the bottom and background layers, the compositor is allowed to use\nnormal focus semantics.\n\nThis setting is mainly intended for applications that need to ensure\nthey receive all keyboard events, such as a lock screen or a password\nprompt."] - Exclusive = 1, - #[doc = "request regular keyboard focus semantics\n\nThis requests the compositor to allow this surface to be focused and\nunfocused by the user in an implementation-defined manner. The user\nshould be able to unfocus this surface even regardless of the layer\nit is on.\n\nTypically, the compositor will want to use its normal mechanism to\nmanage keyboard focus between layer shell surfaces with this setting\nand regular toplevels on the desktop layer (e.g. click to focus).\nNevertheless, it is possible for a compositor to require a special\ninteraction to focus or unfocus layer shell surfaces (e.g. requiring\na click even if focus follows the mouse normally, or providing a\nkeybinding to switch focus between layers).\n\nThis setting is mainly intended for desktop shell components (e.g.\npanels) that allow keyboard interaction. Using this option can allow\nimplementing a desktop shell that can be fully usable without the\nmouse."] - OnDemand = 2, - } - impl KeyboardInteractivity { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(KeyboardInteractivity::None), - 1 => Some(KeyboardInteractivity::Exclusive), - 2 => Some(KeyboardInteractivity::OnDemand), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "provided surface state is invalid"] - InvalidSurfaceState = 0, - #[doc = "size is invalid"] - InvalidSize = 1, - #[doc = "anchor bitfield is invalid"] - InvalidAnchor = 2, - #[doc = "keyboard interactivity is invalid"] - InvalidKeyboardInteractivity = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidSurfaceState), - 1 => Some(Error::InvalidSize), - 2 => Some(Error::InvalidAnchor), - 3 => Some(Error::InvalidKeyboardInteractivity), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Anchor : u32 { # [doc = "the top edge of the anchor rectangle"] const Top = 1 ; # [doc = "the bottom edge of the anchor rectangle"] const Bottom = 2 ; # [doc = "the left edge of the anchor rectangle"] const Left = 4 ; # [doc = "the right edge of the anchor rectangle"] const Right = 8 ; } } - impl Anchor { - pub fn from_raw(n: u32) -> Option { - Some(Anchor::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "sets the size of the surface\n\nSets the size of the surface in surface-local coordinates. The\ncompositor will display the surface centered with respect to its\nanchors.\n\nIf you pass 0 for either value, the compositor will assign it and\ninform you of the assignment in the configure event. You must set your\nanchor to opposite edges in the dimensions you omit; not doing so is a\nprotocol error. Both values are 0 by default.\n\nSize is double-buffered, see wl_surface.commit."] - SetSize { width: u32, height: u32 }, - #[doc = "configures the anchor point of the surface\n\nRequests that the compositor anchor the surface to the specified edges\nand corners. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left corner of the output); otherwise the anchor point\nwill be centered on that edge, or in the center if none is specified.\n\nAnchor is double-buffered, see wl_surface.commit."] - SetAnchor { anchor: Anchor }, - #[doc = "configures the exclusive geometry of this surface\n\nRequests that the compositor avoids occluding an area with other\nsurfaces. The compositor's use of this information is\nimplementation-dependent - do not assume that this region will not\nactually be occluded.\n\nA positive value is only meaningful if the surface is anchored to one\nedge or an edge and both perpendicular edges. If the surface is not\nanchored, anchored to only two perpendicular edges (a corner), anchored\nto only two parallel edges or anchored to all edges, a positive value\nwill be treated the same as zero.\n\nA positive zone is the distance from the edge in surface-local\ncoordinates to consider exclusive.\n\nSurfaces that do not wish to have an exclusive zone may instead specify\nhow they should interact with surfaces that do. If set to zero, the\nsurface indicates that it would like to be moved to avoid occluding\nsurfaces with a positive exclusive zone. If set to -1, the surface\nindicates that it would not like to be moved to accommodate for other\nsurfaces, and the compositor should extend it all the way to the edges\nit is anchored to.\n\nFor example, a panel might set its exclusive zone to 10, so that\nmaximized shell surfaces are not shown on top of it. A notification\nmight set its exclusive zone to 0, so that it is moved to avoid\noccluding the panel, but shell surfaces are shown underneath it. A\nwallpaper or lock screen might set their exclusive zone to -1, so that\nthey stretch below or over the panel.\n\nThe default value is 0.\n\nExclusive zone is double-buffered, see wl_surface.commit."] - SetExclusiveZone { zone: i32 }, - #[doc = "sets a margin from the anchor point\n\nRequests that the surface be placed some distance away from the anchor\npoint on the output, in surface-local coordinates. Setting this value\nfor edges you are not anchored to has no effect.\n\nThe exclusive zone includes the margin.\n\nMargin is double-buffered, see wl_surface.commit."] - SetMargin { - top: i32, - right: i32, - bottom: i32, - left: i32, - }, - #[doc = "requests keyboard events\n\nSet how keyboard events are delivered to this surface. By default,\nlayer shell surfaces do not receive keyboard events; this request can\nbe used to change this.\n\nThis setting is inherited by child surfaces set by the get_popup\nrequest.\n\nLayer surfaces receive pointer, touch, and tablet events normally. If\nyou do not want to receive them, set the input region on your surface\nto an empty region.\n\nKeyboard interactivity is double-buffered, see wl_surface.commit."] - SetKeyboardInteractivity { - keyboard_interactivity: KeyboardInteractivity, - }, - #[doc = "assign this layer_surface as an xdg_popup parent\n\nThis assigns an xdg_popup's parent to this layer_surface. This popup\nshould have been created via xdg_surface::get_popup with the parent set\nto NULL, and this request must be invoked before committing the popup's\ninitial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetPopup { popup: super::xdg_popup::XdgPopup }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - AckConfigure { serial: u32 }, - #[doc = "destroy the layer_surface\n\nThis request destroys the layer surface.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "change the layer of the surface\n\nChange the layer that the surface is rendered on.\n\nLayer is double-buffered, see wl_surface.commit.\n\nOnly available since version 2 of the interface"] - SetLayer { - layer: super::zwlr_layer_shell_v1::Layer, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_size", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_exclusive_zone", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_margin", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_keyboard_interactivity", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "get_popup", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_layer", - since: 2, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSize { .. } => 0, - Request::SetAnchor { .. } => 1, - Request::SetExclusiveZone { .. } => 2, - Request::SetMargin { .. } => 3, - Request::SetKeyboardInteractivity { .. } => 4, - Request::GetPopup { .. } => 5, - Request::AckConfigure { .. } => 6, - Request::Destroy => 7, - Request::SetLayer { .. } => 8, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSize { .. } => 1, - Request::SetAnchor { .. } => 1, - Request::SetExclusiveZone { .. } => 1, - Request::SetMargin { .. } => 1, - Request::SetKeyboardInteractivity { .. } => 1, - Request::GetPopup { .. } => 1, - Request::AckConfigure { .. } => 1, - Request::Destroy => 1, - Request::SetLayer { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSize { width, height } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Uint(width), Argument::Uint(height),], - }, - Request::SetAnchor { anchor } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Uint(anchor.to_raw()),], - }, - Request::SetExclusiveZone { zone } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(zone),], - }, - Request::SetMargin { - top, - right, - bottom, - left, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Int(top), - Argument::Int(right), - Argument::Int(bottom), - Argument::Int(left), - ], - }, - Request::SetKeyboardInteractivity { - keyboard_interactivity, - } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(keyboard_interactivity.to_raw()),], - }, - Request::GetPopup { popup } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(popup.as_ref().id()),], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Uint(serial),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - Request::SetLayer { layer } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Uint(layer.to_raw()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = width; - _args_array[1].u = height; - f(0, &mut _args_array) - } - Request::SetAnchor { anchor } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = anchor.to_raw(); - f(1, &mut _args_array) - } - Request::SetExclusiveZone { zone } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = zone; - f(2, &mut _args_array) - } - Request::SetMargin { - top, - right, - bottom, - left, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = top; - _args_array[1].i = right; - _args_array[2].i = bottom; - _args_array[3].i = left; - f(3, &mut _args_array) - } - Request::SetKeyboardInteractivity { - keyboard_interactivity, - } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = keyboard_interactivity.to_raw(); - f(4, &mut _args_array) - } - Request::GetPopup { popup } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = popup.as_ref().c_ptr() as *mut _; - f(5, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(6, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - Request::SetLayer { layer } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = layer.to_raw(); - f(8, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event asks the client to resize its surface.\n\nClients should arrange their surface for the new states, and then send\nan ack_configure request with the serial sent in this configure event at\nsome point before committing the new surface.\n\nThe client is free to dismiss all but the last configure event it\nreceived.\n\nThe width and height arguments specify the size of the window in\nsurface-local coordinates.\n\nThe size is a hint, in the sense that the client is free to ignore it if\nit doesn't resize, pick a smaller size (to satisfy aspect ratio or\nresize in steps of NxM pixels). If the client picks a smaller size and\nis anchored to two opposite anchors (e.g. 'top' and 'bottom'), the\nsurface will be centered on this axis.\n\nIf the width or height arguments are zero, it means the client should\ndecide its own window dimension."] - Configure { - serial: u32, - width: u32, - height: u32, - }, - #[doc = "surface should be closed\n\nThe closed event is sent by the compositor when the surface will no\nlonger be shown. The output may have been destroyed or the user may\nhave asked for it to be removed. Further changes to the surface will be\nignored. The client should destroy the resource after receiving this\nevent, and create a new surface if they so choose."] - Closed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "closed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Closed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Closed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Closed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - serial: _args[0].u, - width: _args[1].u, - height: _args[2].u, - }) - } - 1 => Ok(Event::Closed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrLayerSurfaceV1(Proxy); - impl AsRef> for ZwlrLayerSurfaceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrLayerSurfaceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrLayerSurfaceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrLayerSurfaceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrLayerSurfaceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrLayerSurfaceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_layer_surface_v1"; - const VERSION: u32 = 4; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_layer_surface_v1_interface } - } - } - impl ZwlrLayerSurfaceV1 { - #[doc = "sets the size of the surface\n\nSets the size of the surface in surface-local coordinates. The\ncompositor will display the surface centered with respect to its\nanchors.\n\nIf you pass 0 for either value, the compositor will assign it and\ninform you of the assignment in the configure event. You must set your\nanchor to opposite edges in the dimensions you omit; not doing so is a\nprotocol error. Both values are 0 by default.\n\nSize is double-buffered, see wl_surface.commit."] - pub fn set_size(&self, width: u32, height: u32) -> () { - let msg = Request::SetSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "configures the anchor point of the surface\n\nRequests that the compositor anchor the surface to the specified edges\nand corners. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left corner of the output); otherwise the anchor point\nwill be centered on that edge, or in the center if none is specified.\n\nAnchor is double-buffered, see wl_surface.commit."] - pub fn set_anchor(&self, anchor: Anchor) -> () { - let msg = Request::SetAnchor { anchor: anchor }; - self.0.send::(msg, None); - } - #[doc = "configures the exclusive geometry of this surface\n\nRequests that the compositor avoids occluding an area with other\nsurfaces. The compositor's use of this information is\nimplementation-dependent - do not assume that this region will not\nactually be occluded.\n\nA positive value is only meaningful if the surface is anchored to one\nedge or an edge and both perpendicular edges. If the surface is not\nanchored, anchored to only two perpendicular edges (a corner), anchored\nto only two parallel edges or anchored to all edges, a positive value\nwill be treated the same as zero.\n\nA positive zone is the distance from the edge in surface-local\ncoordinates to consider exclusive.\n\nSurfaces that do not wish to have an exclusive zone may instead specify\nhow they should interact with surfaces that do. If set to zero, the\nsurface indicates that it would like to be moved to avoid occluding\nsurfaces with a positive exclusive zone. If set to -1, the surface\nindicates that it would not like to be moved to accommodate for other\nsurfaces, and the compositor should extend it all the way to the edges\nit is anchored to.\n\nFor example, a panel might set its exclusive zone to 10, so that\nmaximized shell surfaces are not shown on top of it. A notification\nmight set its exclusive zone to 0, so that it is moved to avoid\noccluding the panel, but shell surfaces are shown underneath it. A\nwallpaper or lock screen might set their exclusive zone to -1, so that\nthey stretch below or over the panel.\n\nThe default value is 0.\n\nExclusive zone is double-buffered, see wl_surface.commit."] - pub fn set_exclusive_zone(&self, zone: i32) -> () { - let msg = Request::SetExclusiveZone { zone: zone }; - self.0.send::(msg, None); - } - #[doc = "sets a margin from the anchor point\n\nRequests that the surface be placed some distance away from the anchor\npoint on the output, in surface-local coordinates. Setting this value\nfor edges you are not anchored to has no effect.\n\nThe exclusive zone includes the margin.\n\nMargin is double-buffered, see wl_surface.commit."] - pub fn set_margin(&self, top: i32, right: i32, bottom: i32, left: i32) -> () { - let msg = Request::SetMargin { - top: top, - right: right, - bottom: bottom, - left: left, - }; - self.0.send::(msg, None); - } - #[doc = "requests keyboard events\n\nSet how keyboard events are delivered to this surface. By default,\nlayer shell surfaces do not receive keyboard events; this request can\nbe used to change this.\n\nThis setting is inherited by child surfaces set by the get_popup\nrequest.\n\nLayer surfaces receive pointer, touch, and tablet events normally. If\nyou do not want to receive them, set the input region on your surface\nto an empty region.\n\nKeyboard interactivity is double-buffered, see wl_surface.commit."] - pub fn set_keyboard_interactivity( - &self, - keyboard_interactivity: KeyboardInteractivity, - ) -> () { - let msg = Request::SetKeyboardInteractivity { - keyboard_interactivity: keyboard_interactivity, - }; - self.0.send::(msg, None); - } - #[doc = "assign this layer_surface as an xdg_popup parent\n\nThis assigns an xdg_popup's parent to this layer_surface. This popup\nshould have been created via xdg_surface::get_popup with the parent set\nto NULL, and this request must be invoked before committing the popup's\ninitial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_popup(&self, popup: &super::xdg_popup::XdgPopup) -> () { - let msg = Request::GetPopup { - popup: popup.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "destroy the layer_surface\n\nThis request destroys the layer surface.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "change the layer of the surface\n\nChange the layer that the surface is rendered on.\n\nLayer is double-buffered, see wl_surface.commit.\n\nOnly available since version 2 of the interface."] - pub fn set_layer(&self, layer: super::zwlr_layer_shell_v1::Layer) -> () { - let msg = Request::SetLayer { layer: layer }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_EXCLUSIVE_ZONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MARGIN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_KEYBOARD_INTERACTIVITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_LAYER_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSED_SINCE: u32 = 1u32; - static mut zwlr_layer_surface_v1_requests_get_popup_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_popup::xdg_popup_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_layer_surface_v1_requests: [wl_message; 9] = [ - wl_message { - name: b"set_size\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_exclusive_zone\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_margin\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_keyboard_interactivity\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_popup\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_layer_surface_v1_requests_get_popup_types as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_layer\0" as *const u8 as *const c_char, - signature: b"2u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_layer_surface_v1_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"closed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_layer_surface_v1_interface: wl_interface = wl_interface { - name: b"zwlr_layer_surface_v1\0" as *const u8 as *const c_char, - version: 4, - request_count: 9, - requests: unsafe { &zwlr_layer_surface_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_layer_surface_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs deleted file mode 100644 index 925214a..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs +++ /dev/null @@ -1,2095 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "output device configuration manager\n\nThis interface is a manager that allows reading and writing the current\noutput device configuration.\n\nOutput devices that display pixels (e.g. a physical monitor or a virtual\noutput in a window) are represented as heads. Heads cannot be created nor\ndestroyed by the client, but they can be enabled or disabled and their\nproperties can be changed. Each head may have one or more available modes.\n\nWhenever a head appears (e.g. a monitor is plugged in), it will be\nadvertised via the head event. Immediately after the output manager is\nbound, all current heads are advertised.\n\nWhenever a head's properties change, the relevant wlr_output_head events\nwill be sent. Not all head properties will be sent: only properties that\nhave changed need to.\n\nWhenever a head disappears (e.g. a monitor is unplugged), a\nwlr_output_head.finished event will be sent.\n\nAfter one or more heads appear, change or disappear, the done event will\nbe sent. It carries a serial which can be used in a create_configuration\nrequest to update heads properties.\n\nThe information obtained from this protocol should only be used for output\nconfiguration purposes. This protocol is not designed to be a generic\noutput property advertisement protocol for regular clients. Instead,\nprotocols such as xdg-output should be used."] -pub mod zwlr_output_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new output configuration object\n\nCreate a new output configuration object. This allows to update head\nproperties."] - CreateConfiguration { serial: u32 }, - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for output\nconfiguration changes. However the compositor may emit further events,\nuntil the finished event is emitted.\n\nThe client must not send any more requests after this one."] - Stop, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_configuration", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateConfiguration { .. } => 0, - Request::Stop => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateConfiguration { .. } => 1, - Request::Stop => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_configuration_v1::ZwlrOutputConfigurationV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateConfiguration { serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Uint(serial),], - }, - Request::Stop => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateConfiguration { serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Stop => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new head\n\nThis event introduces a new head. This happens whenever a new head\nappears (e.g. a monitor is plugged in) or after the output manager is\nbound."] - Head { - head: Main, - }, - #[doc = "sent all information about current configuration\n\nThis event is sent after all information has been sent after binding to\nthe output manager object and after any subsequent changes. This applies\nto child head and mode objects as well. In other words, this event is\nsent whenever a head or mode is created or destroyed and whenever one of\ntheir properties has been changed. Not all state is re-sent each time\nthe current configuration changes: only the actual changes are sent.\n\nThis allows changes to the output configuration to be seen as atomic,\neven if they happen via multiple events.\n\nA serial is sent to be used in a future create_configuration request."] - Done { serial: u32 }, - #[doc = "the compositor has finished with the manager\n\nThis event indicates that the compositor is done sending manager events.\nThe compositor will destroy the object immediately after sending this\nevent, so it will become invalid and the client should release any\nresources associated with it."] - Finished, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "head", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Head { .. } => 0, - Event::Done { .. } => 1, - Event::Finished => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Head { .. } => 1, - Event::Done { .. } => 1, - Event::Finished => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_head_v1::ZwlrOutputHeadV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Head { - head: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Done { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Finished), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Head { - head: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Done { serial: _args[0].u }) - } - 2 => Ok(Event::Finished), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputManagerV1(Proxy); - impl AsRef> for ZwlrOutputManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_manager_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_manager_v1_interface } - } - } - impl ZwlrOutputManagerV1 { - #[doc = "create a new output configuration object\n\nCreate a new output configuration object. This allows to update head\nproperties."] - pub fn create_configuration( - &self, - serial: u32, - ) -> Main { - let msg = Request::CreateConfiguration { serial: serial }; - self.0.send(msg, None).unwrap() - } - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for output\nconfiguration changes. However the compositor may emit further events,\nuntil the finished event is emitted.\n\nThe client must not send any more requests after this one."] - pub fn stop(&self) -> () { - let msg = Request::Stop; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_CONFIGURATION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HEAD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - static mut zwlr_output_manager_v1_requests_create_configuration_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwlr_output_configuration_v1::zwlr_output_configuration_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"create_configuration\0" as *const u8 as *const c_char, - signature: b"nu\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_output_manager_v1_requests_create_configuration_types as *const _ - }, - }, - wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwlr_output_manager_v1_events_head_types: [*const wl_interface; 1] = [unsafe { - &super::zwlr_output_head_v1::zwlr_output_head_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_manager_v1_events: [wl_message; 3] = [ - wl_message { - name: b"head\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_manager_v1_events_head_types as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_manager_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 2, - requests: unsafe { &zwlr_output_manager_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwlr_output_manager_v1_events as *const _ }, - }; -} -#[doc = "output device\n\nA head is an output device. The difference between a wl_output object and\na head is that heads are advertised even if they are turned off. A head\nobject only advertises properties and cannot be used directly to change\nthem.\n\nA head has some read-only properties: modes, name, description and\nphysical_size. These cannot be changed by clients.\n\nOther properties can be updated via a wlr_output_configuration object.\n\nProperties sent via this interface are applied atomically via the\nwlr_output_manager.done event. No guarantees are made regarding the order\nin which properties are sent."] -pub mod zwlr_output_head_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "head name\n\nThis event describes the head name.\n\nThe naming convention is compositor defined, but limited to alphanumeric\ncharacters and dashes (-). Each name is unique among all wlr_output_head\nobjects, but if a wlr_output_head object is destroyed the same name may\nbe reused later. The names will also remain consistent across sessions\nwith the same hardware and software configuration.\n\nExamples of names include 'HDMI-A-1', 'WL-1', 'X11-1', etc. However, do\nnot assume that the name is a reflection of an underlying DRM\nconnector, X11 connection, etc.\n\nIf the compositor implements the xdg-output protocol and this head is\nenabled, the xdg_output.name event must report the same name.\n\nThe name event is sent after a wlr_output_head object is created. This\nevent is only sent once per object, and the name does not change over\nthe lifetime of the wlr_output_head object."] - Name { name: String }, - #[doc = "head description\n\nThis event describes a human-readable description of the head.\n\nThe description is a UTF-8 string with no convention defined for its\ncontents. Examples might include 'Foocorp 11\" Display' or 'Virtual X11\noutput via :1'. However, do not assume that the name is a reflection of\nthe make, model, serial of the underlying DRM connector or the display\nname of the underlying X11 connection, etc.\n\nIf the compositor implements xdg-output and this head is enabled,\nthe xdg_output.description must report the same description.\n\nThe description event is sent after a wlr_output_head object is created.\nThis event is only sent once per object, and the description does not\nchange over the lifetime of the wlr_output_head object."] - Description { description: String }, - #[doc = "head physical size\n\nThis event describes the physical size of the head. This event is only\nsent if the head has a physical size (e.g. is not a projector or a\nvirtual device)."] - PhysicalSize { width: i32, height: i32 }, - #[doc = "introduce a mode\n\nThis event introduces a mode for this head. It is sent once per\nsupported mode."] - Mode { - mode: Main, - }, - #[doc = "head is enabled or disabled\n\nThis event describes whether the head is enabled. A disabled head is not\nmapped to a region of the global compositor space.\n\nWhen a head is disabled, some properties (current_mode, position,\ntransform and scale) are irrelevant."] - Enabled { enabled: i32 }, - #[doc = "current mode\n\nThis event describes the mode currently in use for this head. It is only\nsent if the output is enabled."] - CurrentMode { - mode: super::zwlr_output_mode_v1::ZwlrOutputModeV1, - }, - #[doc = "current position\n\nThis events describes the position of the head in the global compositor\nspace. It is only sent if the output is enabled."] - Position { x: i32, y: i32 }, - #[doc = "current transformation\n\nThis event describes the transformation currently applied to the head.\nIt is only sent if the output is enabled."] - Transform { - transform: super::wl_output::Transform, - }, - #[doc = "current scale\n\nThis events describes the scale of the head in the global compositor\nspace. It is only sent if the output is enabled."] - Scale { scale: f64 }, - #[doc = "the head has been destroyed\n\nThe compositor will destroy the object immediately after sending this\nevent, so it will become invalid and the client should release any\nresources associated with it."] - Finished, - #[doc = "head manufacturer\n\nThis event describes the manufacturer of the head.\n\nThis must report the same make as the wl_output interface does in its\ngeometry event.\n\nTogether with the model and serial_number events the purpose is to\nallow clients to recognize heads from previous sessions and for example\nload head-specific configurations back.\n\nIt is not guaranteed this event will be ever sent. A reason for that\ncan be that the compositor does not have information about the make of\nthe head or the definition of a make is not sensible in the current\nsetup, for example in a virtual session. Clients can still try to\nidentify the head by available information from other events but should\nbe aware that there is an increased risk of false positives.\n\nIt is not recommended to display the make string in UI to users. For\nthat the string provided by the description event should be preferred.\n\nOnly available since version 2 of the interface"] - Make { make: String }, - #[doc = "head model\n\nThis event describes the model of the head.\n\nThis must report the same model as the wl_output interface does in its\ngeometry event.\n\nTogether with the make and serial_number events the purpose is to\nallow clients to recognize heads from previous sessions and for example\nload head-specific configurations back.\n\nIt is not guaranteed this event will be ever sent. A reason for that\ncan be that the compositor does not have information about the model of\nthe head or the definition of a model is not sensible in the current\nsetup, for example in a virtual session. Clients can still try to\nidentify the head by available information from other events but should\nbe aware that there is an increased risk of false positives.\n\nIt is not recommended to display the model string in UI to users. For\nthat the string provided by the description event should be preferred.\n\nOnly available since version 2 of the interface"] - Model { model: String }, - #[doc = "head serial number\n\nThis event describes the serial number of the head.\n\nTogether with the make and model events the purpose is to allow clients\nto recognize heads from previous sessions and for example load head-\nspecific configurations back.\n\nIt is not guaranteed this event will be ever sent. A reason for that\ncan be that the compositor does not have information about the serial\nnumber of the head or the definition of a serial number is not sensible\nin the current setup. Clients can still try to identify the head by\navailable information from other events but should be aware that there\nis an increased risk of false positives.\n\nIt is not recommended to display the serial_number string in UI to\nusers. For that the string provided by the description event should be\npreferred.\n\nOnly available since version 2 of the interface"] - SerialNumber { serial_number: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "name", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "description", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "physical_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "mode", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "enabled", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "current_mode", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "transform", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "scale", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "make", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "model", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "serial_number", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Name { .. } => 0, - Event::Description { .. } => 1, - Event::PhysicalSize { .. } => 2, - Event::Mode { .. } => 3, - Event::Enabled { .. } => 4, - Event::CurrentMode { .. } => 5, - Event::Position { .. } => 6, - Event::Transform { .. } => 7, - Event::Scale { .. } => 8, - Event::Finished => 9, - Event::Make { .. } => 10, - Event::Model { .. } => 11, - Event::SerialNumber { .. } => 12, - } - } - fn since(&self) -> u32 { - match *self { - Event::Name { .. } => 1, - Event::Description { .. } => 1, - Event::PhysicalSize { .. } => 1, - Event::Mode { .. } => 1, - Event::Enabled { .. } => 1, - Event::CurrentMode { .. } => 1, - Event::Position { .. } => 1, - Event::Transform { .. } => 1, - Event::Scale { .. } => 1, - Event::Finished => 1, - Event::Make { .. } => 2, - Event::Model { .. } => 2, - Event::SerialNumber { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 3 => Some(Object::from_interface::< - super::zwlr_output_mode_v1::ZwlrOutputModeV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Description { - description: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::PhysicalSize { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - mode: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enabled { - enabled: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::CurrentMode { - mode: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::Position { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::Transform { - transform: { - if let Some(Argument::Int(val)) = args.next() { - super::wl_output::Transform::from_raw(val as u32).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::Scale { - scale: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 9 => Ok(Event::Finished), - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Make { - make: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Model { - model: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::SerialNumber { - serial_number: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Description { - description: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::PhysicalSize { - width: _args[0].i, - height: _args[1].i, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Mode { - mode: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enabled { - enabled: _args[0].i, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::CurrentMode { - mode: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Position { - x: _args[0].i, - y: _args[1].i, - }) - } - 7 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Transform { - transform: super::wl_output::Transform::from_raw(_args[0].i as u32) - .ok_or(())?, - }) - } - 8 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Scale { - scale: (_args[0].f as f64) / 256., - }) - } - 9 => Ok(Event::Finished), - 10 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Make { - make: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Model { - model: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::SerialNumber { - serial_number: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputHeadV1(Proxy); - impl AsRef> for ZwlrOutputHeadV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputHeadV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputHeadV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputHeadV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputHeadV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputHeadV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_head_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_head_v1_interface } - } - } - impl ZwlrOutputHeadV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESCRIPTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PHYSICAL_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENABLED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CURRENT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TRANSFORM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SCALE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MAKE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODEL_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SERIAL_NUMBER_SINCE: u32 = 2u32; - static mut zwlr_output_head_v1_events_mode_types: [*const wl_interface; 1] = [unsafe { - &super::zwlr_output_mode_v1::zwlr_output_mode_v1_interface as *const wl_interface - }]; - static mut zwlr_output_head_v1_events_current_mode_types: [*const wl_interface; 1] = [unsafe { - &super::zwlr_output_mode_v1::zwlr_output_mode_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_head_v1_events: [wl_message; 13] = [ - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"description\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"physical_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_head_v1_events_mode_types as *const _ }, - }, - wl_message { - name: b"enabled\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"current_mode\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_head_v1_events_current_mode_types as *const _ }, - }, - wl_message { - name: b"position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"transform\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"scale\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"make\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"model\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"serial_number\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_head_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_head_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 13, - events: unsafe { &zwlr_output_head_v1_events as *const _ }, - }; -} -#[doc = "output mode\n\nThis object describes an output mode.\n\nSome heads don't support output modes, in which case modes won't be\nadvertised.\n\nProperties sent via this interface are applied atomically via the\nwlr_output_manager.done event. No guarantees are made regarding the order\nin which properties are sent."] -pub mod zwlr_output_mode_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "mode size\n\nThis event describes the mode size. The size is given in physical\nhardware units of the output device. This is not necessarily the same as\nthe output size in the global compositor space. For instance, the output\nmay be scaled or transformed."] - Size { width: i32, height: i32 }, - #[doc = "mode refresh rate\n\nThis event describes the mode's fixed vertical refresh rate. It is only\nsent if the mode has a fixed refresh rate."] - Refresh { refresh: i32 }, - #[doc = "mode is preferred\n\nThis event advertises this mode as preferred."] - Preferred, - #[doc = "the mode has been destroyed\n\nThe compositor will destroy the object immediately after sending this\nevent, so it will become invalid and the client should release any\nresources associated with it."] - Finished, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "refresh", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "preferred", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Size { .. } => 0, - Event::Refresh { .. } => 1, - Event::Preferred => 2, - Event::Finished => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Size { .. } => 1, - Event::Refresh { .. } => 1, - Event::Preferred => 1, - Event::Finished => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Size { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Refresh { - refresh: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Preferred), - 3 => Ok(Event::Finished), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Size { - width: _args[0].i, - height: _args[1].i, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Refresh { - refresh: _args[0].i, - }) - } - 2 => Ok(Event::Preferred), - 3 => Ok(Event::Finished), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputModeV1(Proxy); - impl AsRef> for ZwlrOutputModeV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputModeV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputModeV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputModeV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputModeV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputModeV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_mode_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_mode_v1_interface } - } - } - impl ZwlrOutputModeV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REFRESH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREFERRED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_mode_v1_events: [wl_message; 4] = [ - wl_message { - name: b"size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"refresh\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preferred\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_mode_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_mode_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 4, - events: unsafe { &zwlr_output_mode_v1_events as *const _ }, - }; -} -#[doc = "output configuration\n\nThis object is used by the client to describe a full output configuration.\n\nFirst, the client needs to setup the output configuration. Each head can\nbe either enabled (and configured) or disabled. It is a protocol error to\nsend two enable_head or disable_head requests with the same head. It is a\nprotocol error to omit a head in a configuration.\n\nThen, the client can apply or test the configuration. The compositor will\nthen reply with a succeeded, failed or cancelled event. Finally the client\nshould destroy the configuration object."] -pub mod zwlr_output_configuration_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "head has been configured twice"] - AlreadyConfiguredHead = 1, - #[doc = "head has not been configured"] - UnconfiguredHead = 2, - #[doc = "request sent after configuration has been applied or tested"] - AlreadyUsed = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::AlreadyConfiguredHead), - 2 => Some(Error::UnconfiguredHead), - 3 => Some(Error::AlreadyUsed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "enable and configure a head\n\nEnable a head. This request creates a head configuration object that can\nbe used to change the head's properties."] - EnableHead { - head: super::zwlr_output_head_v1::ZwlrOutputHeadV1, - }, - #[doc = "disable a head\n\nDisable a head."] - DisableHead { - head: super::zwlr_output_head_v1::ZwlrOutputHeadV1, - }, - #[doc = "apply the configuration\n\nApply the new output configuration.\n\nIn case the configuration is successfully applied, there is no guarantee\nthat the new output state matches completely the requested\nconfiguration. For instance, a compositor might round the scale if it\ndoesn't support fractional scaling.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - Apply, - #[doc = "test the configuration\n\nTest the new output configuration. The configuration won't be applied,\nbut will only be validated.\n\nEven if the compositor succeeds to test a configuration, applying it may\nfail.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - Test, - #[doc = "destroy the output configuration\n\nUsing this request a client can tell the compositor that it is not going\nto use the configuration object anymore. Any changes to the outputs\nthat have not been applied will be discarded.\n\nThis request also destroys wlr_output_configuration_head objects created\nvia this object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enable_head", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "disable_head", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "apply", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "test", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::EnableHead { .. } => 0, - Request::DisableHead { .. } => 1, - Request::Apply => 2, - Request::Test => 3, - Request::Destroy => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::EnableHead { .. } => 1, - Request::DisableHead { .. } => 1, - Request::Apply => 1, - Request::Test => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_configuration_head_v1::ZwlrOutputConfigurationHeadV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::EnableHead { head } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(head.as_ref().id()),], - }, - Request::DisableHead { head } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(head.as_ref().id()),], - }, - Request::Apply => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::Test => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::EnableHead { head } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = head.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::DisableHead { head } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = head.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Apply => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::Test => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "configuration changes succeeded\n\nSent after the compositor has successfully applied the changes or\ntested them.\n\nUpon receiving this event, the client should destroy this object.\n\nIf the current configuration has changed, events to describe the changes\nwill be sent followed by a wlr_output_manager.done event."] - Succeeded, - #[doc = "configuration changes failed\n\nSent if the compositor rejects the changes or failed to apply them. The\ncompositor should revert any changes made by the apply request that\ntriggered this event.\n\nUpon receiving this event, the client should destroy this object."] - Failed, - #[doc = "configuration has been cancelled\n\nSent if the compositor cancels the configuration because the state of an\noutput changed and the client has outdated information (e.g. after an\noutput has been hotplugged).\n\nThe client can create a new configuration with a newer serial and try\nagain.\n\nUpon receiving this event, the client should destroy this object."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "succeeded", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Succeeded => 0, - Event::Failed => 1, - Event::Cancelled => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Succeeded => 1, - Event::Failed => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Succeeded), - 1 => Ok(Event::Failed), - 2 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Succeeded), - 1 => Ok(Event::Failed), - 2 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputConfigurationV1(Proxy); - impl AsRef> for ZwlrOutputConfigurationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputConfigurationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputConfigurationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputConfigurationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputConfigurationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputConfigurationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_configuration_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_configuration_v1_interface } - } - } - impl ZwlrOutputConfigurationV1 { - #[doc = "enable and configure a head\n\nEnable a head. This request creates a head configuration object that can\nbe used to change the head's properties."] - pub fn enable_head( - &self, - head: &super::zwlr_output_head_v1::ZwlrOutputHeadV1, - ) -> Main { - let msg = Request::EnableHead { head: head.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "disable a head\n\nDisable a head."] - pub fn disable_head(&self, head: &super::zwlr_output_head_v1::ZwlrOutputHeadV1) -> () { - let msg = Request::DisableHead { head: head.clone() }; - self.0.send::(msg, None); - } - #[doc = "apply the configuration\n\nApply the new output configuration.\n\nIn case the configuration is successfully applied, there is no guarantee\nthat the new output state matches completely the requested\nconfiguration. For instance, a compositor might round the scale if it\ndoesn't support fractional scaling.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - pub fn apply(&self) -> () { - let msg = Request::Apply; - self.0.send::(msg, None); - } - #[doc = "test the configuration\n\nTest the new output configuration. The configuration won't be applied,\nbut will only be validated.\n\nEven if the compositor succeeds to test a configuration, applying it may\nfail.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - pub fn test(&self) -> () { - let msg = Request::Test; - self.0.send::(msg, None); - } - #[doc = "destroy the output configuration\n\nUsing this request a client can tell the compositor that it is not going\nto use the configuration object anymore. Any changes to the outputs\nthat have not been applied will be discarded.\n\nThis request also destroys wlr_output_configuration_head objects created\nvia this object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ENABLE_HEAD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DISABLE_HEAD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_APPLY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_TEST_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SUCCEEDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - static mut zwlr_output_configuration_v1_requests_enable_head_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwlr_output_configuration_head_v1::zwlr_output_configuration_head_v1_interface - as *const wl_interface - }, - unsafe { - &super::zwlr_output_head_v1::zwlr_output_head_v1_interface as *const wl_interface - }, - ]; - static mut zwlr_output_configuration_v1_requests_disable_head_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_output_head_v1::zwlr_output_head_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_configuration_v1_requests: [wl_message; 5] = [ - wl_message { - name: b"enable_head\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_configuration_v1_requests_enable_head_types as *const _ }, - }, - wl_message { - name: b"disable_head\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_configuration_v1_requests_disable_head_types as *const _ }, - }, - wl_message { - name: b"apply\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"test\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_configuration_v1_events: [wl_message; 3] = [ - wl_message { - name: b"succeeded\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_configuration_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_configuration_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 5, - requests: unsafe { &zwlr_output_configuration_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwlr_output_configuration_v1_events as *const _ }, - }; -} -#[doc = "head configuration\n\nThis object is used by the client to update a single head's configuration.\n\nIt is a protocol error to set the same property twice."] -pub mod zwlr_output_configuration_head_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "property has already been set"] - AlreadySet = 1, - #[doc = "mode doesn't belong to head"] - InvalidMode = 2, - #[doc = "mode is invalid"] - InvalidCustomMode = 3, - #[doc = "transform value outside enum"] - InvalidTransform = 4, - #[doc = "scale negative or zero"] - InvalidScale = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::AlreadySet), - 2 => Some(Error::InvalidMode), - 3 => Some(Error::InvalidCustomMode), - 4 => Some(Error::InvalidTransform), - 5 => Some(Error::InvalidScale), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the mode\n\nThis request sets the head's mode."] - SetMode { - mode: super::zwlr_output_mode_v1::ZwlrOutputModeV1, - }, - #[doc = "set a custom mode\n\nThis request assigns a custom mode to the head. The size is given in\nphysical hardware units of the output device. If set to zero, the\nrefresh rate is unspecified.\n\nIt is a protocol error to set both a mode and a custom mode."] - SetCustomMode { - width: i32, - height: i32, - refresh: i32, - }, - #[doc = "set the position\n\nThis request sets the head's position in the global compositor space."] - SetPosition { x: i32, y: i32 }, - #[doc = "set the transform\n\nThis request sets the head's transform."] - SetTransform { - transform: super::wl_output::Transform, - }, - #[doc = "set the scale\n\nThis request sets the head's scale."] - SetScale { scale: f64 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_mode", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_custom_mode", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_transform", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_scale", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetMode { .. } => 0, - Request::SetCustomMode { .. } => 1, - Request::SetPosition { .. } => 2, - Request::SetTransform { .. } => 3, - Request::SetScale { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetMode { .. } => 1, - Request::SetCustomMode { .. } => 1, - Request::SetPosition { .. } => 1, - Request::SetTransform { .. } => 1, - Request::SetScale { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetMode { mode } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object(mode.as_ref().id()),], - }, - Request::SetCustomMode { - width, - height, - refresh, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Int(width), - Argument::Int(height), - Argument::Int(refresh), - ], - }, - Request::SetPosition { x, y } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - Request::SetTransform { transform } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Int(transform.to_raw() as i32),], - }, - Request::SetScale { scale } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Fixed((scale * 256.) as i32),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = mode.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::SetCustomMode { - width, - height, - refresh, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - _args_array[2].i = refresh; - f(1, &mut _args_array) - } - Request::SetPosition { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(2, &mut _args_array) - } - Request::SetTransform { transform } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = transform.to_raw() as i32; - f(3, &mut _args_array) - } - Request::SetScale { scale } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].f = (scale * 256.) as i32; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputConfigurationHeadV1(Proxy); - impl AsRef> for ZwlrOutputConfigurationHeadV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputConfigurationHeadV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputConfigurationHeadV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputConfigurationHeadV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputConfigurationHeadV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputConfigurationHeadV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_configuration_head_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_configuration_head_v1_interface } - } - } - impl ZwlrOutputConfigurationHeadV1 { - #[doc = "set the mode\n\nThis request sets the head's mode."] - pub fn set_mode(&self, mode: &super::zwlr_output_mode_v1::ZwlrOutputModeV1) -> () { - let msg = Request::SetMode { mode: mode.clone() }; - self.0.send::(msg, None); - } - #[doc = "set a custom mode\n\nThis request assigns a custom mode to the head. The size is given in\nphysical hardware units of the output device. If set to zero, the\nrefresh rate is unspecified.\n\nIt is a protocol error to set both a mode and a custom mode."] - pub fn set_custom_mode(&self, width: i32, height: i32, refresh: i32) -> () { - let msg = Request::SetCustomMode { - width: width, - height: height, - refresh: refresh, - }; - self.0.send::(msg, None); - } - #[doc = "set the position\n\nThis request sets the head's position in the global compositor space."] - pub fn set_position(&self, x: i32, y: i32) -> () { - let msg = Request::SetPosition { x: x, y: y }; - self.0.send::(msg, None); - } - #[doc = "set the transform\n\nThis request sets the head's transform."] - pub fn set_transform(&self, transform: super::wl_output::Transform) -> () { - let msg = Request::SetTransform { - transform: transform, - }; - self.0.send::(msg, None); - } - #[doc = "set the scale\n\nThis request sets the head's scale."] - pub fn set_scale(&self, scale: f64) -> () { - let msg = Request::SetScale { scale: scale }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CUSTOM_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TRANSFORM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SCALE_SINCE: u32 = 1u32; - static mut zwlr_output_configuration_head_v1_requests_set_mode_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_output_mode_v1::zwlr_output_mode_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_configuration_head_v1_requests: [wl_message; 5] = [ - wl_message { - name: b"set_mode\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_output_configuration_head_v1_requests_set_mode_types as *const _ - }, - }, - wl_message { - name: b"set_custom_mode\0" as *const u8 as *const c_char, - signature: b"iii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_transform\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_scale\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_configuration_head_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_configuration_head_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 5, - requests: unsafe { &zwlr_output_configuration_head_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs deleted file mode 100644 index 6781a61..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs +++ /dev/null @@ -1,568 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "manager to create per-output power management\n\nThis interface is a manager that allows creating per-output power\nmanagement mode controls."] -pub mod zwlr_output_power_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get a power management for an output\n\nCreate an output power management mode control that can be used to\nadjust the power management mode for a given output."] - GetOutputPower { output: super::wl_output::WlOutput }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_output_power", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetOutputPower { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetOutputPower { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_power_v1::ZwlrOutputPowerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetOutputPower { output } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(output.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetOutputPower { output } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputPowerManagerV1(Proxy); - impl AsRef> for ZwlrOutputPowerManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputPowerManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputPowerManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputPowerManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputPowerManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputPowerManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_power_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_power_manager_v1_interface } - } - } - impl ZwlrOutputPowerManagerV1 { - #[doc = "get a power management for an output\n\nCreate an output power management mode control that can be used to\nadjust the power management mode for a given output."] - pub fn get_output_power( - &self, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::GetOutputPower { - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_OUTPUT_POWER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_output_power_manager_v1_requests_get_output_power_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwlr_output_power_v1::zwlr_output_power_v1_interface as *const wl_interface - }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_power_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_output_power\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_output_power_manager_v1_requests_get_output_power_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_power_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_power_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_output_power_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "adjust power management mode for an output\n\nThis object offers requests to set the power management mode of\nan output."] -pub mod zwlr_output_power_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "Output is turned off."] - Off = 0, - #[doc = "Output is turned on, no power saving"] - On = 1, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Mode::Off), - 1 => Some(Mode::On), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "nonexistent power save mode"] - InvalidMode = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::InvalidMode), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Set an outputs power save mode\n\nSet an output's power save mode to the given mode. The mode change\nis effective immediately. If the output does not support the given\nmode a failed event is sent."] - SetMode { mode: Mode }, - #[doc = "destroy this power management\n\nDestroys the output power management mode control object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetMode { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetMode { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetMode { mode } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Uint(mode.to_raw()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = mode.to_raw(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "Report a power management mode change\n\nReport the power management mode change of an output.\n\nThe mode event is sent after an output changed its power\nmanagement mode. The reason can be a client using set_mode or the\ncompositor deciding to change an output's mode.\nThis event is also sent immediately when the object is created\nso the client is informed about the current power management mode."] - Mode { mode: Mode }, - #[doc = "object no longer valid\n\nThis event indicates that the output power management mode control\nis no longer valid. This can happen for a number of reasons,\nincluding:\n- The output doesn't support power management\n- Another client already has exclusive power management mode control\nfor this output\n- The output disappeared\n\nUpon receiving this event, the client should destroy this object."] - Failed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Mode { .. } => 0, - Event::Failed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Mode { .. } => 1, - Event::Failed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Failed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Mode { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => Ok(Event::Failed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputPowerV1(Proxy); - impl AsRef> for ZwlrOutputPowerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputPowerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputPowerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputPowerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputPowerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputPowerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_power_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_power_v1_interface } - } - } - impl ZwlrOutputPowerV1 { - #[doc = "Set an outputs power save mode\n\nSet an output's power save mode to the given mode. The mode change\nis effective immediately. If the output does not support the given\nmode a failed event is sent."] - pub fn set_mode(&self, mode: Mode) -> () { - let msg = Request::SetMode { mode: mode }; - self.0.send::(msg, None); - } - #[doc = "destroy this power management\n\nDestroys the output power management mode control object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_power_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_power_v1_events: [wl_message; 2] = [ - wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_power_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_power_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_output_power_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_output_power_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs deleted file mode 100644 index a2c31a5..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs +++ /dev/null @@ -1,1005 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manager to inform clients and begin capturing\n\nThis object is a manager which offers requests to start capturing from a\nsource."] -pub mod zwlr_screencopy_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "capture an output\n\nCapture the next frame of an entire output."] - CaptureOutput { - overlay_cursor: i32, - output: super::wl_output::WlOutput, - }, - #[doc = "capture an output's region\n\nCapture the next frame of an output's region.\n\nThe region is given in output logical coordinates, see\nxdg_output.logical_size. The region will be clipped to the output's\nextents."] - CaptureOutputRegion { - overlay_cursor: i32, - output: super::wl_output::WlOutput, - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "capture_output", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "capture_output_region", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CaptureOutput { .. } => 0, - Request::CaptureOutputRegion { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CaptureOutput { .. } => 1, - Request::CaptureOutputRegion { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_screencopy_frame_v1::ZwlrScreencopyFrameV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwlr_screencopy_frame_v1::ZwlrScreencopyFrameV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Int(overlay_cursor), - Argument::Object(output.as_ref().id()), - ], - }, - Request::CaptureOutputRegion { - overlay_cursor, - output, - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Int(overlay_cursor), - Argument::Object(output.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = overlay_cursor; - _args_array[2].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::CaptureOutputRegion { - overlay_cursor, - output, - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 7] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = overlay_cursor; - _args_array[2].o = output.as_ref().c_ptr() as *mut _; - _args_array[3].i = x; - _args_array[4].i = y; - _args_array[5].i = width; - _args_array[6].i = height; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrScreencopyManagerV1(Proxy); - impl AsRef> for ZwlrScreencopyManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrScreencopyManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrScreencopyManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrScreencopyManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrScreencopyManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrScreencopyManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_screencopy_manager_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_screencopy_manager_v1_interface } - } - } - impl ZwlrScreencopyManagerV1 { - #[doc = "capture an output\n\nCapture the next frame of an entire output."] - pub fn capture_output( - &self, - overlay_cursor: i32, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::CaptureOutput { - overlay_cursor: overlay_cursor, - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "capture an output's region\n\nCapture the next frame of an output's region.\n\nThe region is given in output logical coordinates, see\nxdg_output.logical_size. The region will be clipped to the output's\nextents."] - pub fn capture_output_region( - &self, - overlay_cursor: i32, - output: &super::wl_output::WlOutput, - x: i32, - y: i32, - width: i32, - height: i32, - ) -> Main { - let msg = Request::CaptureOutputRegion { - overlay_cursor: overlay_cursor, - output: output.clone(), - x: x, - y: y, - width: width, - height: height, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CAPTURE_OUTPUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CAPTURE_OUTPUT_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_screencopy_manager_v1_requests_capture_output_types: [*const wl_interface; 3] = [ - unsafe { - &super::zwlr_screencopy_frame_v1::zwlr_screencopy_frame_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - static mut zwlr_screencopy_manager_v1_requests_capture_output_region_types: - [*const wl_interface; 7] = [ - unsafe { - &super::zwlr_screencopy_frame_v1::zwlr_screencopy_frame_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_screencopy_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"capture_output\0" as *const u8 as *const c_char, - signature: b"nio\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_screencopy_manager_v1_requests_capture_output_types as *const _ }, - }, - wl_message { - name: b"capture_output_region\0" as *const u8 as *const c_char, - signature: b"nioiiii\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_screencopy_manager_v1_requests_capture_output_region_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_screencopy_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_screencopy_manager_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &zwlr_screencopy_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a frame ready for copy\n\nThis object represents a single frame.\n\nWhen created, a series of buffer events will be sent, each representing a\nsupported buffer type. The \"buffer_done\" event is sent afterwards to\nindicate that all supported buffer types have been enumerated. The client\nwill then be able to send a \"copy\" request. If the capture is successful,\nthe compositor will send a \"flags\" followed by a \"ready\" event.\n\nFor objects version 2 or lower, wl_shm buffers are always supported, ie.\nthe \"buffer\" event is guaranteed to be sent.\n\nIf the capture failed, the \"failed\" event is sent. This can happen anytime\nbefore the \"ready\" event.\n\nOnce either a \"ready\" or a \"failed\" event is received, the client should\ndestroy the frame."] -pub mod zwlr_screencopy_frame_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the object has already been used to copy a wl_buffer"] - AlreadyUsed = 0, - #[doc = "buffer attributes are invalid"] - InvalidBuffer = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyUsed), - 1 => Some(Error::InvalidBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Flags : u32 { # [doc = "contents are y-inverted"] const YInvert = 1 ; } } - impl Flags { - pub fn from_raw(n: u32) -> Option { - Some(Flags::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "copy the frame\n\nCopy the frame to the supplied buffer. The buffer must have a the\ncorrect size, see zwlr_screencopy_frame_v1.buffer and\nzwlr_screencopy_frame_v1.linux_dmabuf. The buffer needs to have a\nsupported format.\n\nIf the frame is successfully copied, a \"flags\" and a \"ready\" events are\nsent. Otherwise, a \"failed\" event is sent."] - Copy { buffer: super::wl_buffer::WlBuffer }, - #[doc = "delete this object, used or not\n\nDestroys the frame. This request can be sent at any time by the client.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "copy the frame when it's damaged\n\nSame as copy, except it waits until there is damage to copy.\n\nOnly available since version 2 of the interface"] - CopyWithDamage { buffer: super::wl_buffer::WlBuffer }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "copy", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "copy_with_damage", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Copy { .. } => 0, - Request::Destroy => 1, - Request::CopyWithDamage { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Copy { .. } => 1, - Request::Destroy => 1, - Request::CopyWithDamage { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Copy { buffer } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object(buffer.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::CopyWithDamage { buffer } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object(buffer.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Copy { buffer } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = buffer.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::CopyWithDamage { buffer } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = buffer.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "wl_shm buffer information\n\nProvides information about wl_shm buffer parameters that need to be\nused for this frame. This event is sent once after the frame is created\nif wl_shm buffers are supported."] - Buffer { - format: super::wl_shm::Format, - width: u32, - height: u32, - stride: u32, - }, - #[doc = "frame flags\n\nProvides flags about the frame. This event is sent once before the\n\"ready\" event."] - Flags { flags: Flags }, - #[doc = "indicates frame is available for reading\n\nCalled as soon as the frame is copied, indicating it is available\nfor reading. This event includes the time at which presentation happened\nat.\n\nThe timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples,\neach component being an unsigned 32-bit value. Whole seconds are in\ntv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo,\nand the additional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999]. The seconds part\nmay have an arbitrary offset at start.\n\nAfter receiving this event, the client should destroy the object."] - Ready { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - }, - #[doc = "frame copy failed\n\nThis event indicates that the attempted frame copy has failed.\n\nAfter receiving this event, the client should destroy the object."] - Failed, - #[doc = "carries the coordinates of the damaged region\n\nThis event is sent right before the ready event when copy_with_damage is\nrequested. It may be generated multiple times for each copy_with_damage\nrequest.\n\nThe arguments describe a box around an area that has changed since the\nlast copy request that was derived from the current screencopy manager\ninstance.\n\nThe union of all regions received between the call to copy_with_damage\nand a ready event is the total damage since the prior ready event.\n\nOnly available since version 2 of the interface"] - Damage { - x: u32, - y: u32, - width: u32, - height: u32, - }, - #[doc = "linux-dmabuf buffer information\n\nProvides information about linux-dmabuf buffer parameters that need to\nbe used for this frame. This event is sent once after the frame is\ncreated if linux-dmabuf buffers are supported.\n\nOnly available since version 3 of the interface"] - LinuxDmabuf { - format: u32, - width: u32, - height: u32, - }, - #[doc = "all buffer types reported\n\nThis event is sent once after all buffer events have been sent.\n\nThe client should proceed to create a buffer of one of the supported\ntypes, and send a \"copy\" request.\n\nOnly available since version 3 of the interface"] - BufferDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "buffer", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "flags", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "ready", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "damage", - since: 2, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "linux_dmabuf", - since: 3, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "buffer_done", - since: 3, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Buffer { .. } => 0, - Event::Flags { .. } => 1, - Event::Ready { .. } => 2, - Event::Failed => 3, - Event::Damage { .. } => 4, - Event::LinuxDmabuf { .. } => 5, - Event::BufferDone => 6, - } - } - fn since(&self) -> u32 { - match *self { - Event::Buffer { .. } => 1, - Event::Flags { .. } => 1, - Event::Ready { .. } => 1, - Event::Failed => 1, - Event::Damage { .. } => 2, - Event::LinuxDmabuf { .. } => 3, - Event::BufferDone => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Buffer { - format: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_shm::Format::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - stride: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Flags { - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Flags::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ready { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Failed), - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Damage { - x: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::LinuxDmabuf { - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 6 => Ok(Event::BufferDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Buffer { - format: super::wl_shm::Format::from_raw(_args[0].u).ok_or(())?, - width: _args[1].u, - height: _args[2].u, - stride: _args[3].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Flags { - flags: Flags::from_raw(_args[0].u).ok_or(())?, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Ready { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - }) - } - 3 => Ok(Event::Failed), - 4 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Damage { - x: _args[0].u, - y: _args[1].u, - width: _args[2].u, - height: _args[3].u, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::LinuxDmabuf { - format: _args[0].u, - width: _args[1].u, - height: _args[2].u, - }) - } - 6 => Ok(Event::BufferDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrScreencopyFrameV1(Proxy); - impl AsRef> for ZwlrScreencopyFrameV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrScreencopyFrameV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrScreencopyFrameV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrScreencopyFrameV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrScreencopyFrameV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrScreencopyFrameV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_screencopy_frame_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_screencopy_frame_v1_interface } - } - } - impl ZwlrScreencopyFrameV1 { - #[doc = "copy the frame\n\nCopy the frame to the supplied buffer. The buffer must have a the\ncorrect size, see zwlr_screencopy_frame_v1.buffer and\nzwlr_screencopy_frame_v1.linux_dmabuf. The buffer needs to have a\nsupported format.\n\nIf the frame is successfully copied, a \"flags\" and a \"ready\" events are\nsent. Otherwise, a \"failed\" event is sent."] - pub fn copy(&self, buffer: &super::wl_buffer::WlBuffer) -> () { - let msg = Request::Copy { - buffer: buffer.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "delete this object, used or not\n\nDestroys the frame. This request can be sent at any time by the client.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "copy the frame when it's damaged\n\nSame as copy, except it waits until there is damage to copy.\n\nOnly available since version 2 of the interface."] - pub fn copy_with_damage(&self, buffer: &super::wl_buffer::WlBuffer) -> () { - let msg = Request::CopyWithDamage { - buffer: buffer.clone(), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COPY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COPY_WITH_DAMAGE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FLAGS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_READY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DAMAGE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LINUX_DMABUF_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUFFER_DONE_SINCE: u32 = 3u32; - static mut zwlr_screencopy_frame_v1_requests_copy_types: [*const wl_interface; 1] = - [unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }]; - static mut zwlr_screencopy_frame_v1_requests_copy_with_damage_types: [*const wl_interface; 1] = - [unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_screencopy_frame_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"copy\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_screencopy_frame_v1_requests_copy_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"copy_with_damage\0" as *const u8 as *const c_char, - signature: b"2o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_screencopy_frame_v1_requests_copy_with_damage_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_screencopy_frame_v1_events: [wl_message; 7] = [ - wl_message { - name: b"buffer\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"flags\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ready\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"damage\0" as *const u8 as *const c_char, - signature: b"2uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"linux_dmabuf\0" as *const u8 as *const c_char, - signature: b"3uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"buffer_done\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_screencopy_frame_v1_interface: wl_interface = wl_interface { - name: b"zwlr_screencopy_frame_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &zwlr_screencopy_frame_v1_requests as *const _ }, - event_count: 7, - events: unsafe { &zwlr_screencopy_frame_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs deleted file mode 100644 index a80b45e..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs +++ /dev/null @@ -1,949 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "virtual pointer\n\nThis protocol allows clients to emulate a physical pointer device. The\nrequests are mostly mirror opposites of those specified in wl_pointer."] -pub mod zwlr_virtual_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "client sent invalid axis enumeration value"] - InvalidAxis = 0, - #[doc = "client sent invalid axis source enumeration value"] - InvalidAxisSource = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidAxis), - 1 => Some(Error::InvalidAxisSource), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "pointer relative motion event\n\nThe pointer has moved by a relative amount to the previous request.\n\nValues are in the global compositor space."] - Motion { time: u32, dx: f64, dy: f64 }, - #[doc = "pointer absolute motion event\n\nThe pointer has moved in an absolute coordinate frame.\n\nValue of x can range from 0 to x_extent, value of y can range from 0\nto y_extent."] - MotionAbsolute { - time: u32, - x: u32, - y: u32, - x_extent: u32, - y_extent: u32, - }, - #[doc = "button event\n\nA button was pressed or released."] - Button { - time: u32, - button: u32, - state: super::wl_pointer::ButtonState, - }, - #[doc = "axis event\n\nScroll and other axis requests."] - Axis { - time: u32, - axis: super::wl_pointer::Axis, - value: f64, - }, - #[doc = "end of a pointer event sequence\n\nIndicates the set of events that logically belong together."] - Frame, - #[doc = "axis source event\n\nSource information for scroll and other axis."] - AxisSource { - axis_source: super::wl_pointer::AxisSource, - }, - #[doc = "axis stop event\n\nStop notification for scroll and other axes."] - AxisStop { - time: u32, - axis: super::wl_pointer::Axis, - }, - #[doc = "axis click event\n\nDiscrete step information for scroll and other axes.\n\nThis event allows the client to extend data normally sent using the axis\nevent with discrete value."] - AxisDiscrete { - time: u32, - axis: super::wl_pointer::Axis, - value: f64, - discrete: i32, - }, - #[doc = "destroy the virtual pointer object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "motion_absolute", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "axis", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "axis_source", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_stop", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_discrete", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Motion { .. } => 0, - Request::MotionAbsolute { .. } => 1, - Request::Button { .. } => 2, - Request::Axis { .. } => 3, - Request::Frame => 4, - Request::AxisSource { .. } => 5, - Request::AxisStop { .. } => 6, - Request::AxisDiscrete { .. } => 7, - Request::Destroy => 8, - } - } - fn since(&self) -> u32 { - match *self { - Request::Motion { .. } => 1, - Request::MotionAbsolute { .. } => 1, - Request::Button { .. } => 1, - Request::Axis { .. } => 1, - Request::Frame => 1, - Request::AxisSource { .. } => 1, - Request::AxisStop { .. } => 1, - Request::AxisDiscrete { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Motion { time, dx, dy } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(time), - Argument::Fixed((dx * 256.) as i32), - Argument::Fixed((dy * 256.) as i32), - ], - }, - Request::MotionAbsolute { - time, - x, - y, - x_extent, - y_extent, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(x), - Argument::Uint(y), - Argument::Uint(x_extent), - Argument::Uint(y_extent), - ], - }, - Request::Button { - time, - button, - state, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(button), - Argument::Uint(state.to_raw()), - ], - }, - Request::Axis { time, axis, value } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(axis.to_raw()), - Argument::Fixed((value * 256.) as i32), - ], - }, - Request::Frame => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - Request::AxisSource { axis_source } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Uint(axis_source.to_raw()),], - }, - Request::AxisStop { time, axis } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Uint(time), Argument::Uint(axis.to_raw()),], - }, - Request::AxisDiscrete { - time, - axis, - value, - discrete, - } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(axis.to_raw()), - Argument::Fixed((value * 256.) as i32), - Argument::Int(discrete), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Motion { time, dx, dy } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].f = (dx * 256.) as i32; - _args_array[2].f = (dy * 256.) as i32; - f(0, &mut _args_array) - } - Request::MotionAbsolute { - time, - x, - y, - x_extent, - y_extent, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = x; - _args_array[2].u = y; - _args_array[3].u = x_extent; - _args_array[4].u = y_extent; - f(1, &mut _args_array) - } - Request::Button { - time, - button, - state, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = button; - _args_array[2].u = state.to_raw(); - f(2, &mut _args_array) - } - Request::Axis { time, axis, value } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = axis.to_raw(); - _args_array[2].f = (value * 256.) as i32; - f(3, &mut _args_array) - } - Request::Frame => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - Request::AxisSource { axis_source } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = axis_source.to_raw(); - f(5, &mut _args_array) - } - Request::AxisStop { time, axis } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = axis.to_raw(); - f(6, &mut _args_array) - } - Request::AxisDiscrete { - time, - axis, - value, - discrete, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = axis.to_raw(); - _args_array[2].f = (value * 256.) as i32; - _args_array[3].i = discrete; - f(7, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(8, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrVirtualPointerV1(Proxy); - impl AsRef> for ZwlrVirtualPointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrVirtualPointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrVirtualPointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrVirtualPointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrVirtualPointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrVirtualPointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_virtual_pointer_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_virtual_pointer_v1_interface } - } - } - impl ZwlrVirtualPointerV1 { - #[doc = "pointer relative motion event\n\nThe pointer has moved by a relative amount to the previous request.\n\nValues are in the global compositor space."] - pub fn motion(&self, time: u32, dx: f64, dy: f64) -> () { - let msg = Request::Motion { - time: time, - dx: dx, - dy: dy, - }; - self.0.send::(msg, None); - } - #[doc = "pointer absolute motion event\n\nThe pointer has moved in an absolute coordinate frame.\n\nValue of x can range from 0 to x_extent, value of y can range from 0\nto y_extent."] - pub fn motion_absolute( - &self, - time: u32, - x: u32, - y: u32, - x_extent: u32, - y_extent: u32, - ) -> () { - let msg = Request::MotionAbsolute { - time: time, - x: x, - y: y, - x_extent: x_extent, - y_extent: y_extent, - }; - self.0.send::(msg, None); - } - #[doc = "button event\n\nA button was pressed or released."] - pub fn button(&self, time: u32, button: u32, state: super::wl_pointer::ButtonState) -> () { - let msg = Request::Button { - time: time, - button: button, - state: state, - }; - self.0.send::(msg, None); - } - #[doc = "axis event\n\nScroll and other axis requests."] - pub fn axis(&self, time: u32, axis: super::wl_pointer::Axis, value: f64) -> () { - let msg = Request::Axis { - time: time, - axis: axis, - value: value, - }; - self.0.send::(msg, None); - } - #[doc = "end of a pointer event sequence\n\nIndicates the set of events that logically belong together."] - pub fn frame(&self) -> () { - let msg = Request::Frame; - self.0.send::(msg, None); - } - #[doc = "axis source event\n\nSource information for scroll and other axis."] - pub fn axis_source(&self, axis_source: super::wl_pointer::AxisSource) -> () { - let msg = Request::AxisSource { - axis_source: axis_source, - }; - self.0.send::(msg, None); - } - #[doc = "axis stop event\n\nStop notification for scroll and other axes."] - pub fn axis_stop(&self, time: u32, axis: super::wl_pointer::Axis) -> () { - let msg = Request::AxisStop { - time: time, - axis: axis, - }; - self.0.send::(msg, None); - } - #[doc = "axis click event\n\nDiscrete step information for scroll and other axes.\n\nThis event allows the client to extend data normally sent using the axis\nevent with discrete value."] - pub fn axis_discrete( - &self, - time: u32, - axis: super::wl_pointer::Axis, - value: f64, - discrete: i32, - ) -> () { - let msg = Request::AxisDiscrete { - time: time, - axis: axis, - value: value, - discrete: discrete, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the virtual pointer object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOTION_ABSOLUTE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_DISCRETE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_virtual_pointer_v1_requests: [wl_message; 9] = [ - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion_absolute\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis\0" as *const u8 as *const c_char, - signature: b"uuf\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_source\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_stop\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_discrete\0" as *const u8 as *const c_char, - signature: b"uufi\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_virtual_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwlr_virtual_pointer_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 9, - requests: unsafe { &zwlr_virtual_pointer_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "virtual pointer manager\n\nThis object allows clients to create individual virtual pointer objects."] -pub mod zwlr_virtual_pointer_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The optional seat is a suggestion to the\ncompositor."] - CreateVirtualPointer { - seat: Option, - }, - #[doc = "destroy the virtual pointer manager\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The seat and the output arguments are\noptional. If the seat argument is set, the compositor should assign the\ninput device to the requested seat. If the output argument is set, the\ncompositor should map the input device to the requested output.\n\nOnly available since version 2 of the interface"] - CreateVirtualPointerWithOutput { - seat: Option, - output: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_virtual_pointer", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_virtual_pointer_with_output", - since: 2, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::NewId, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateVirtualPointer { .. } => 0, - Request::Destroy => 1, - Request::CreateVirtualPointerWithOutput { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateVirtualPointer { .. } => 1, - Request::Destroy => 1, - Request::CreateVirtualPointerWithOutput { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_virtual_pointer_v1::ZwlrVirtualPointerV1, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwlr_virtual_pointer_v1::ZwlrVirtualPointerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateVirtualPointer { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(seat.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::NewId(0), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::CreateVirtualPointerWithOutput { seat, output } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(seat.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::NewId(0), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateVirtualPointer { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::CreateVirtualPointerWithOutput { seat, output } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrVirtualPointerManagerV1(Proxy); - impl AsRef> for ZwlrVirtualPointerManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrVirtualPointerManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrVirtualPointerManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrVirtualPointerManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrVirtualPointerManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrVirtualPointerManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_virtual_pointer_manager_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_virtual_pointer_manager_v1_interface } - } - } - impl ZwlrVirtualPointerManagerV1 { - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The optional seat is a suggestion to the\ncompositor."] - pub fn create_virtual_pointer( - &self, - seat: Option<&super::wl_seat::WlSeat>, - ) -> Main { - let msg = Request::CreateVirtualPointer { - seat: seat.map(|o| o.clone()), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the virtual pointer manager\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The seat and the output arguments are\noptional. If the seat argument is set, the compositor should assign the\ninput device to the requested seat. If the output argument is set, the\ncompositor should map the input device to the requested output.\n\nOnly available since version 2 of the interface."] - pub fn create_virtual_pointer_with_output( - &self, - seat: Option<&super::wl_seat::WlSeat>, - output: Option<&super::wl_output::WlOutput>, - ) -> Main { - let msg = Request::CreateVirtualPointerWithOutput { - seat: seat.map(|o| o.clone()), - output: output.map(|o| o.clone()), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_VIRTUAL_POINTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_VIRTUAL_POINTER_WITH_OUTPUT_SINCE: u32 = 2u32; - static mut zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_types: - [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { - &super::zwlr_virtual_pointer_v1::zwlr_virtual_pointer_v1_interface - as *const wl_interface - }, - ]; - static mut zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_with_output_types: - [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - unsafe { - &super::zwlr_virtual_pointer_v1::zwlr_virtual_pointer_v1_interface - as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_virtual_pointer_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"create_virtual_pointer\0" as *const u8 as *const c_char, - signature: b"?on\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_virtual_pointer_with_output\0" as *const u8 as *const c_char, - signature: b"2?o?on\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_with_output_types - as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_virtual_pointer_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_virtual_pointer_manager_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwlr_virtual_pointer_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs deleted file mode 100644 index cd30b1c..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs +++ /dev/null @@ -1,586 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "window decoration manager\n\nThis interface allows a compositor to announce support for server-side\ndecorations.\n\nA window decoration is a set of window controls as deemed appropriate by\nthe party managing them, such as user interface components used to move,\nresize and change a window's state.\n\nA client can use this protocol to request being decorated by a supporting\ncompositor.\n\nIf compositor and client do not negotiate the use of a server-side\ndecoration using this protocol, clients continue to self-decorate as they\nsee fit.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zxdg_decoration_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the decoration manager object\n\nDestroy the decoration manager. This doesn't destroy objects created\nwith the manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new toplevel decoration object\n\nCreate a new decoration object associated with the given toplevel.\n\nCreating an xdg_toplevel_decoration from an xdg_toplevel which has a\nbuffer attached or committed is a client error, and any attempts by a\nclient to attach or manipulate a buffer prior to the first\nxdg_toplevel_decoration.configure event must also be treated as\nerrors."] - GetToplevelDecoration { - toplevel: super::xdg_toplevel::XdgToplevel, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_toplevel_decoration", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetToplevelDecoration { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetToplevelDecoration { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_toplevel_decoration_v1::ZxdgToplevelDecorationV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetToplevelDecoration { toplevel } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(toplevel.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetToplevelDecoration { toplevel } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = toplevel.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgDecorationManagerV1(Proxy); - impl AsRef> for ZxdgDecorationManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgDecorationManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgDecorationManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgDecorationManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgDecorationManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgDecorationManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_decoration_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_decoration_manager_v1_interface } - } - } - impl ZxdgDecorationManagerV1 { - #[doc = "destroy the decoration manager object\n\nDestroy the decoration manager. This doesn't destroy objects created\nwith the manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new toplevel decoration object\n\nCreate a new decoration object associated with the given toplevel.\n\nCreating an xdg_toplevel_decoration from an xdg_toplevel which has a\nbuffer attached or committed is a client error, and any attempts by a\nclient to attach or manipulate a buffer prior to the first\nxdg_toplevel_decoration.configure event must also be treated as\nerrors."] - pub fn get_toplevel_decoration( - &self, - toplevel: &super::xdg_toplevel::XdgToplevel, - ) -> Main { - let msg = Request::GetToplevelDecoration { - toplevel: toplevel.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOPLEVEL_DECORATION_SINCE: u32 = 1u32; - static mut zxdg_decoration_manager_v1_requests_get_toplevel_decoration_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zxdg_toplevel_decoration_v1::zxdg_toplevel_decoration_v1_interface - as *const wl_interface - }, - unsafe { &super::xdg_toplevel::xdg_toplevel_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_decoration_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_toplevel_decoration\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zxdg_decoration_manager_v1_requests_get_toplevel_decoration_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_decoration_manager_v1_interface: wl_interface = wl_interface { - name: b"zxdg_decoration_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_decoration_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "decoration object for a toplevel surface\n\nThe decoration object allows the compositor to toggle server-side window\ndecorations for a toplevel surface. The client can request to switch to\nanother mode.\n\nThe xdg_toplevel_decoration object must be destroyed before its\nxdg_toplevel."] -pub mod zxdg_toplevel_decoration_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "xdg_toplevel has a buffer attached before configure"] - UnconfiguredBuffer = 0, - #[doc = "xdg_toplevel already has a decoration object"] - AlreadyConstructed = 1, - #[doc = "xdg_toplevel destroyed before the decoration object"] - Orphaned = 2, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::UnconfiguredBuffer), - 1 => Some(Error::AlreadyConstructed), - 2 => Some(Error::Orphaned), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "window decoration modes\n\nThese values describe window decoration modes."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "no server-side window decoration"] - ClientSide = 1, - #[doc = "server-side window decoration"] - ServerSide = 2, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Mode::ClientSide), - 2 => Some(Mode::ServerSide), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the decoration object\n\nSwitch back to a mode without any server-side decorations at the next\ncommit.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the decoration mode\n\nSet the toplevel surface decoration mode. This informs the compositor\nthat the client prefers the provided decoration mode.\n\nAfter requesting a decoration mode, the compositor will respond by\nemitting an xdg_surface.configure event. The client should then update\nits content, drawing it without decorations if the received mode is\nserver-side decorations. The client must also acknowledge the configure\nwhen committing the new content (see xdg_surface.ack_configure).\n\nThe compositor can decide not to use the client's mode and enforce a\ndifferent mode instead.\n\nClients whose decoration mode depend on the xdg_toplevel state may send\na set_mode request in response to an xdg_surface.configure event and wait\nfor the next xdg_surface.configure event to prevent unwanted state.\nSuch clients are responsible for preventing configure loops and must\nmake sure not to send multiple successive set_mode requests with the\nsame decoration mode."] - SetMode { mode: Mode }, - #[doc = "unset the decoration mode\n\nUnset the toplevel surface decoration mode. This informs the compositor\nthat the client doesn't prefer a particular decoration mode.\n\nThis request has the same semantics as set_mode."] - UnsetMode, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "unset_mode", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetMode { .. } => 1, - Request::UnsetMode => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetMode { .. } => 1, - Request::UnsetMode => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetMode { mode } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Uint(mode.to_raw()),], - }, - Request::UnsetMode => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = mode.to_raw(); - f(1, &mut _args_array) - } - Request::UnsetMode => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event asks the client to change its decoration mode. The\nconfigured state should not be applied immediately. Clients must send an\nack_configure in response to this event. See xdg_surface.configure and\nxdg_surface.ack_configure for details.\n\nA configure event can be sent at any time. The specified mode must be\nobeyed by the client."] - Configure { mode: Mode }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Configure { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgToplevelDecorationV1(Proxy); - impl AsRef> for ZxdgToplevelDecorationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgToplevelDecorationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgToplevelDecorationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgToplevelDecorationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgToplevelDecorationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgToplevelDecorationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_toplevel_decoration_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_toplevel_decoration_v1_interface } - } - } - impl ZxdgToplevelDecorationV1 { - #[doc = "destroy the decoration object\n\nSwitch back to a mode without any server-side decorations at the next\ncommit.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the decoration mode\n\nSet the toplevel surface decoration mode. This informs the compositor\nthat the client prefers the provided decoration mode.\n\nAfter requesting a decoration mode, the compositor will respond by\nemitting an xdg_surface.configure event. The client should then update\nits content, drawing it without decorations if the received mode is\nserver-side decorations. The client must also acknowledge the configure\nwhen committing the new content (see xdg_surface.ack_configure).\n\nThe compositor can decide not to use the client's mode and enforce a\ndifferent mode instead.\n\nClients whose decoration mode depend on the xdg_toplevel state may send\na set_mode request in response to an xdg_surface.configure event and wait\nfor the next xdg_surface.configure event to prevent unwanted state.\nSuch clients are responsible for preventing configure loops and must\nmake sure not to send multiple successive set_mode requests with the\nsame decoration mode."] - pub fn set_mode(&self, mode: Mode) -> () { - let msg = Request::SetMode { mode: mode }; - self.0.send::(msg, None); - } - #[doc = "unset the decoration mode\n\nUnset the toplevel surface decoration mode. This informs the compositor\nthat the client doesn't prefer a particular decoration mode.\n\nThis request has the same semantics as set_mode."] - pub fn unset_mode(&self) -> () { - let msg = Request::UnsetMode; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_decoration_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_mode\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_decoration_v1_events: [wl_message; 1] = [wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_toplevel_decoration_v1_interface: wl_interface = wl_interface { - name: b"zxdg_toplevel_decoration_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zxdg_toplevel_decoration_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_toplevel_decoration_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs deleted file mode 100644 index 30c89ae..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs +++ /dev/null @@ -1,959 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "interface for exporting surfaces\n\nA global interface used for exporting surfaces that can later be imported\nusing xdg_importer."] -pub mod zxdg_exporter_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "export a surface\n\nThe export request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_surface\nsurfaces may be exported."] - Export { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "export", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Export { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Export { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_exported_v1::ZxdgExportedV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Export { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Export { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExporterV1(Proxy); - impl AsRef> for ZxdgExporterV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExporterV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExporterV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExporterV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExporterV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExporterV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exporter_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exporter_v1_interface } - } - } - impl ZxdgExporterV1 { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "export a surface\n\nThe export request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_surface\nsurfaces may be exported."] - pub fn export( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::Export { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_EXPORT_SINCE: u32 = 1u32; - static mut zxdg_exporter_v1_requests_export_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_exported_v1::zxdg_exported_v1_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exporter_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"export\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_exporter_v1_requests_export_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exporter_v1_interface: wl_interface = wl_interface { - name: b"zxdg_exporter_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_exporter_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "interface for importing surfaces\n\nA global interface used for importing surfaces exported by xdg_exporter.\nWith this interface, a client can create a reference to a surface of\nanother client."] -pub mod zxdg_importer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "import a surface\n\nThe import request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export. When\ncalled, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - Import { handle: String }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "import", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Import { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Import { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_imported_v1::ZxdgImportedV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Import { handle } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(handle.into()) - })), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Import { handle } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - let _arg_1 = ::std::ffi::CString::new(handle).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImporterV1(Proxy); - impl AsRef> for ZxdgImporterV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImporterV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImporterV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImporterV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImporterV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImporterV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_importer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_importer_v1_interface } - } - } - impl ZxdgImporterV1 { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "import a surface\n\nThe import request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export. When\ncalled, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - pub fn import(&self, handle: String) -> Main { - let msg = Request::Import { handle: handle }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_IMPORT_SINCE: u32 = 1u32; - static mut zxdg_importer_v1_requests_import_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_imported_v1::zxdg_imported_v1_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_importer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"import\0" as *const u8 as *const c_char, - signature: b"ns\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_importer_v1_requests_import_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_importer_v1_interface: wl_interface = wl_interface { - name: b"zxdg_importer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_importer_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "an exported surface handle\n\nAn xdg_exported object represents an exported reference to a surface. The\nexported surface may be referenced as long as the xdg_exported object not\ndestroyed. Destroying the xdg_exported invalidates any relationship the\nimporter may have established using xdg_imported."] -pub mod zxdg_exported_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the exported surface handle\n\nThe handle event contains the unique handle of this exported surface\nreference. It may be shared with any client, which then can use it to\nimport the surface by calling xdg_importer.import. A handle may be\nused to import the surface multiple times."] - Handle { handle: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "handle", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Handle { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Handle { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Handle { - handle: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Handle { - handle: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExportedV1(Proxy); - impl AsRef> for ZxdgExportedV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExportedV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExportedV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExportedV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExportedV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExportedV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exported_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exported_v1_interface } - } - } - impl ZxdgExportedV1 { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HANDLE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v1_events: [wl_message; 1] = [wl_message { - name: b"handle\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exported_v1_interface: wl_interface = wl_interface { - name: b"zxdg_exported_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zxdg_exported_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_exported_v1_events as *const _ }, - }; -} -#[doc = "an imported surface handle\n\nAn xdg_imported object represents an imported reference to surface exported\nby some client. A client can use this interface to manipulate\nrelationships between its own surfaces and the imported surface."] -pub mod zxdg_imported_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be a toplevel xdg_surface. Calling this function\nsets up a surface to surface relation with the same stacking and positioning\nsemantics as xdg_surface.set_parent."] - SetParentOf { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent_of", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParentOf { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParentOf { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParentOf { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParentOf { surface } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the imported surface handle has been destroyed\n\nThe imported surface handle has been destroyed and any relationship set\nup has been invalidated. This may happen for various reasons, for\nexample if the exported surface or the exported surface handle has been\ndestroyed, if the handle used for importing was invalid."] - Destroyed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroyed", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Destroyed => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Destroyed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Destroyed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Destroyed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImportedV1(Proxy); - impl AsRef> for ZxdgImportedV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImportedV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImportedV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImportedV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImportedV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImportedV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_imported_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_imported_v1_interface } - } - } - impl ZxdgImportedV1 { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be a toplevel xdg_surface. Calling this function\nsets up a surface to surface relation with the same stacking and positioning\nsemantics as xdg_surface.set_parent."] - pub fn set_parent_of(&self, surface: &super::wl_surface::WlSurface) -> () { - let msg = Request::SetParentOf { - surface: surface.clone(), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_OF_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESTROYED_SINCE: u32 = 1u32; - static mut zxdg_imported_v1_requests_set_parent_of_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_of\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_imported_v1_requests_set_parent_of_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v1_events: [wl_message; 1] = [wl_message { - name: b"destroyed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_imported_v1_interface: wl_interface = wl_interface { - name: b"zxdg_imported_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_imported_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_imported_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs deleted file mode 100644 index b86e210..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs +++ /dev/null @@ -1,1000 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "interface for exporting surfaces\n\nA global interface used for exporting surfaces that can later be imported\nusing xdg_importer."] -pub mod zxdg_exporter_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "error values\n\nThese errors can be emitted in response to invalid xdg_exporter\nrequests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "surface is not an xdg_toplevel"] - InvalidSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "export a toplevel surface\n\nThe export_toplevel request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_toplevel\nequivalent surfaces may be exported, otherwise an invalid_surface\nprotocol error is sent."] - ExportToplevel { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "export_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::ExportToplevel { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::ExportToplevel { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_exported_v2::ZxdgExportedV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::ExportToplevel { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::ExportToplevel { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExporterV2(Proxy); - impl AsRef> for ZxdgExporterV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExporterV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExporterV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExporterV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExporterV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExporterV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exporter_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exporter_v2_interface } - } - } - impl ZxdgExporterV2 { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "export a toplevel surface\n\nThe export_toplevel request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_toplevel\nequivalent surfaces may be exported, otherwise an invalid_surface\nprotocol error is sent."] - pub fn export_toplevel( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::ExportToplevel { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_EXPORT_TOPLEVEL_SINCE: u32 = 1u32; - static mut zxdg_exporter_v2_requests_export_toplevel_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_exported_v2::zxdg_exported_v2_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exporter_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"export_toplevel\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_exporter_v2_requests_export_toplevel_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exporter_v2_interface: wl_interface = wl_interface { - name: b"zxdg_exporter_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_exporter_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "interface for importing surfaces\n\nA global interface used for importing surfaces exported by xdg_exporter.\nWith this interface, a client can create a reference to a surface of\nanother client."] -pub mod zxdg_importer_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "import a toplevel surface\n\nThe import_toplevel request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export_toplevel.\nWhen called, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - ImportToplevel { handle: String }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "import_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::ImportToplevel { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::ImportToplevel { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_imported_v2::ZxdgImportedV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::ImportToplevel { handle } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(handle.into()) - })), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::ImportToplevel { handle } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - let _arg_1 = ::std::ffi::CString::new(handle).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImporterV2(Proxy); - impl AsRef> for ZxdgImporterV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImporterV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImporterV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImporterV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImporterV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImporterV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_importer_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_importer_v2_interface } - } - } - impl ZxdgImporterV2 { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "import a toplevel surface\n\nThe import_toplevel request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export_toplevel.\nWhen called, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - pub fn import_toplevel( - &self, - handle: String, - ) -> Main { - let msg = Request::ImportToplevel { handle: handle }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_IMPORT_TOPLEVEL_SINCE: u32 = 1u32; - static mut zxdg_importer_v2_requests_import_toplevel_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_imported_v2::zxdg_imported_v2_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_importer_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"import_toplevel\0" as *const u8 as *const c_char, - signature: b"ns\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_importer_v2_requests_import_toplevel_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_importer_v2_interface: wl_interface = wl_interface { - name: b"zxdg_importer_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_importer_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "an exported surface handle\n\nAn xdg_exported object represents an exported reference to a surface. The\nexported surface may be referenced as long as the xdg_exported object not\ndestroyed. Destroying the xdg_exported invalidates any relationship the\nimporter may have established using xdg_imported."] -pub mod zxdg_exported_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the exported surface handle\n\nThe handle event contains the unique handle of this exported surface\nreference. It may be shared with any client, which then can use it to\nimport the surface by calling xdg_importer.import_toplevel. A handle\nmay be used to import the surface multiple times."] - Handle { handle: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "handle", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Handle { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Handle { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Handle { - handle: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Handle { - handle: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExportedV2(Proxy); - impl AsRef> for ZxdgExportedV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExportedV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExportedV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExportedV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExportedV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExportedV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exported_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exported_v2_interface } - } - } - impl ZxdgExportedV2 { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HANDLE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v2_events: [wl_message; 1] = [wl_message { - name: b"handle\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exported_v2_interface: wl_interface = wl_interface { - name: b"zxdg_exported_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zxdg_exported_v2_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_exported_v2_events as *const _ }, - }; -} -#[doc = "an imported surface handle\n\nAn xdg_imported object represents an imported reference to surface exported\nby some client. A client can use this interface to manipulate\nrelationships between its own surfaces and the imported surface."] -pub mod zxdg_imported_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "error values\n\nThese errors can be emitted in response to invalid xdg_imported\nrequests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "surface is not an xdg_toplevel"] - InvalidSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be an xdg_toplevel equivalent, otherwise an\ninvalid_surface protocol error is sent. Calling this function sets up\na surface to surface relation with the same stacking and positioning\nsemantics as xdg_toplevel.set_parent."] - SetParentOf { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent_of", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParentOf { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParentOf { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParentOf { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParentOf { surface } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the imported surface handle has been destroyed\n\nThe imported surface handle has been destroyed and any relationship set\nup has been invalidated. This may happen for various reasons, for\nexample if the exported surface or the exported surface handle has been\ndestroyed, if the handle used for importing was invalid."] - Destroyed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroyed", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Destroyed => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Destroyed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Destroyed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Destroyed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImportedV2(Proxy); - impl AsRef> for ZxdgImportedV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImportedV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImportedV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImportedV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImportedV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImportedV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_imported_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_imported_v2_interface } - } - } - impl ZxdgImportedV2 { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be an xdg_toplevel equivalent, otherwise an\ninvalid_surface protocol error is sent. Calling this function sets up\na surface to surface relation with the same stacking and positioning\nsemantics as xdg_toplevel.set_parent."] - pub fn set_parent_of(&self, surface: &super::wl_surface::WlSurface) -> () { - let msg = Request::SetParentOf { - surface: surface.clone(), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_OF_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESTROYED_SINCE: u32 = 1u32; - static mut zxdg_imported_v2_requests_set_parent_of_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_of\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_imported_v2_requests_set_parent_of_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v2_events: [wl_message; 1] = [wl_message { - name: b"destroyed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_imported_v2_interface: wl_interface = wl_interface { - name: b"zxdg_imported_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_imported_v2_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_imported_v2_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs deleted file mode 100644 index 00c609c..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs +++ /dev/null @@ -1,623 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manage xdg_output objects\n\nA global factory interface for xdg_output objects."] -pub mod zxdg_output_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_output_manager object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output_manager object anymore.\n\nAny objects already created through this instance are not affected.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create an xdg output from a wl_output\n\nThis creates a new xdg_output object for the given wl_output."] - GetXdgOutput { output: super::wl_output::WlOutput }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_xdg_output", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetXdgOutput { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetXdgOutput { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetXdgOutput { output } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(output.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetXdgOutput { output } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgOutputManagerV1(Proxy); - impl AsRef> for ZxdgOutputManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgOutputManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgOutputManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgOutputManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgOutputManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgOutputManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_output_manager_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_output_manager_v1_interface } - } - } - impl ZxdgOutputManagerV1 { - #[doc = "destroy the xdg_output_manager object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output_manager object anymore.\n\nAny objects already created through this instance are not affected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create an xdg output from a wl_output\n\nThis creates a new xdg_output object for the given wl_output."] - pub fn get_xdg_output( - &self, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::GetXdgOutput { - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_OUTPUT_SINCE: u32 = 1u32; - static mut zxdg_output_manager_v1_requests_get_xdg_output_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_output_v1::zxdg_output_v1_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_output_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_xdg_output\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_output_manager_v1_requests_get_xdg_output_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_output_manager_v1_interface: wl_interface = wl_interface { - name: b"zxdg_output_manager_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 2, - requests: unsafe { &zxdg_output_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "compositor logical output region\n\nAn xdg_output describes part of the compositor geometry.\n\nThis typically corresponds to a monitor that displays part of the\ncompositor space.\n\nFor objects version 3 onwards, after all xdg_output properties have been\nsent (when the object is created and when properties are updated), a\nwl_output.done event is sent. This allows changes to the output\nproperties to be seen as atomic, even if they happen via multiple events."] -pub mod zxdg_output_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_output object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output object anymore.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "position of the output within the global compositor space\n\nThe position event describes the location of the wl_output within\nthe global compositor space.\n\nThe logical_position event is sent after creating an xdg_output\n(see xdg_output_manager.get_xdg_output) and whenever the location\nof the output changes within the global compositor space."] - LogicalPosition { x: i32, y: i32 }, - #[doc = "size of the output in the global compositor space\n\nThe logical_size event describes the size of the output in the\nglobal compositor space.\n\nFor example, a surface without any buffer scale, transformation\nnor rotation set, with the size matching the logical_size will\nhave the same size as the corresponding output when displayed.\n\nMost regular Wayland clients should not pay attention to the\nlogical size and would rather rely on xdg_shell interfaces.\n\nSome clients such as Xwayland, however, need this to configure\ntheir surfaces in the global compositor space as the compositor\nmay apply a different scale from what is advertised by the output\nscaling property (to achieve fractional scaling, for example).\n\nFor example, for a wl_output mode 3840×2160 and a scale factor 2:\n\n- A compositor not scaling the surface buffers will advertise a\nlogical size of 3840×2160,\n\n- A compositor automatically scaling the surface buffers will\nadvertise a logical size of 1920×1080,\n\n- A compositor using a fractional scale of 1.5 will advertise a\nlogical size to 2560×1620.\n\nFor example, for a wl_output mode 1920×1080 and a 90 degree rotation,\nthe compositor will advertise a logical size of 1080x1920.\n\nThe logical_size event is sent after creating an xdg_output\n(see xdg_output_manager.get_xdg_output) and whenever the logical\nsize of the output changes, either as a result of a change in the\napplied scale or because of a change in the corresponding output\nmode(see wl_output.mode) or transform (see wl_output.transform)."] - LogicalSize { width: i32, height: i32 }, - #[doc = "all information about the output have been sent\n\nThis event is sent after all other properties of an xdg_output\nhave been sent.\n\nThis allows changes to the xdg_output properties to be seen as\natomic, even if they happen via multiple events.\n\nFor objects version 3 onwards, this event is deprecated. Compositors\nare not required to send it anymore and must send wl_output.done\ninstead."] - Done, - #[doc = "name of this output\n\nMany compositors will assign names to their outputs, show them to the\nuser, allow them to be configured by name, etc. The client may wish to\nknow this name as well to offer the user similar behaviors.\n\nThe naming convention is compositor defined, but limited to\nalphanumeric characters and dashes (-). Each name is unique among all\nwl_output globals, but if a wl_output global is destroyed the same name\nmay be reused later. The names will also remain consistent across\nsessions with the same hardware and software configuration.\n\nExamples of names include 'HDMI-A-1', 'WL-1', 'X11-1', etc. However, do\nnot assume that the name is a reflection of an underlying DRM\nconnector, X11 connection, etc.\n\nThe name event is sent after creating an xdg_output (see\nxdg_output_manager.get_xdg_output). This event is only sent once per\nxdg_output, and the name does not change over the lifetime of the\nwl_output global.\n\nOnly available since version 2 of the interface"] - Name { name: String }, - #[doc = "human-readable description of this output\n\nMany compositors can produce human-readable descriptions of their\noutputs. The client may wish to know this description as well, to\ncommunicate the user for various purposes.\n\nThe description is a UTF-8 string with no convention defined for its\ncontents. Examples might include 'Foocorp 11\" Display' or 'Virtual X11\noutput via :1'.\n\nThe description event is sent after creating an xdg_output (see\nxdg_output_manager.get_xdg_output) and whenever the description\nchanges. The description is optional, and may not be sent at all.\n\nFor objects of version 2 and lower, this event is only sent once per\nxdg_output, and the description does not change over the lifetime of\nthe wl_output global.\n\nOnly available since version 2 of the interface"] - Description { description: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "logical_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "logical_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "name", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "description", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::LogicalPosition { .. } => 0, - Event::LogicalSize { .. } => 1, - Event::Done => 2, - Event::Name { .. } => 3, - Event::Description { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Event::LogicalPosition { .. } => 1, - Event::LogicalSize { .. } => 1, - Event::Done => 1, - Event::Name { .. } => 2, - Event::Description { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::LogicalPosition { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::LogicalSize { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Done), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Description { - description: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::LogicalPosition { - x: _args[0].i, - y: _args[1].i, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::LogicalSize { - width: _args[0].i, - height: _args[1].i, - }) - } - 2 => Ok(Event::Done), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Description { - description: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgOutputV1(Proxy); - impl AsRef> for ZxdgOutputV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgOutputV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgOutputV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgOutputV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgOutputV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgOutputV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_output_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_output_v1_interface } - } - } - impl ZxdgOutputV1 { - #[doc = "destroy the xdg_output object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output object anymore.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LOGICAL_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LOGICAL_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESCRIPTION_SINCE: u32 = 2u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_output_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_output_v1_events: [wl_message; 5] = [ - wl_message { - name: b"logical_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"logical_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"description\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_output_v1_interface: wl_interface = wl_interface { - name: b"zxdg_output_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 1, - requests: unsafe { &zxdg_output_v1_requests as *const _ }, - event_count: 5, - events: unsafe { &zxdg_output_v1_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs deleted file mode 100644 index 5cccd07..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs +++ /dev/null @@ -1,1607 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create desktop-style surfaces\n\nxdg_shell allows clients to turn a wl_surface into a \"real window\"\nwhich can be dragged, resized, stacked, and moved around by the\nuser. Everything about this interface is suited towards traditional\ndesktop environments."] -pub mod xdg_shell { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "latest protocol version\n\nThe 'current' member of this enum gives the version of the\nprotocol. Implementations can compare this to the version\nthey implement using static_assert to ensure the protocol and\nimplementation versions match."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Version { - #[doc = "Always the latest version"] - Current = 5, - } - impl Version { - pub fn from_raw(n: u32) -> Option { - match n { - 5 => Some(Version::Current), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - #[doc = "xdg_shell was destroyed before children"] - DefunctSurfaces = 1, - #[doc = "the client tried to map or destroy a non-topmost popup"] - NotTheTopmostPopup = 2, - #[doc = "the client specified an invalid popup parent surface"] - InvalidPopupParent = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::DefunctSurfaces), - 2 => Some(Error::NotTheTopmostPopup), - 3 => Some(Error::InvalidPopupParent), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "enable use of this unstable version\n\nNegotiate the unstable version of the interface. This\nmechanism is in place to ensure client and server agree on the\nunstable versions of the protocol that they speak or exit\ncleanly if they don't agree. This request will go away once\nthe xdg-shell protocol is stable."] - UseUnstableVersion { version: i32 }, - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface and gives it the\nxdg_surface role. A wl_surface can only be given an xdg_surface role\nonce. If get_xdg_surface is called with a wl_surface that already has\nan active xdg_surface associated with it, or if it had any other role,\nan error is raised.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - GetXdgSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "create a popup for a surface\n\nThis creates an xdg_popup for the given surface and gives it the\nxdg_popup role. A wl_surface can only be given an xdg_popup role\nonce. If get_xdg_popup is called with a wl_surface that already has\nan active xdg_popup associated with it, or if it had any other role,\nan error is raised.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetXdgPopup { - surface: super::wl_surface::WlSurface, - parent: super::wl_surface::WlSurface, - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - Pong { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "use_unstable_version", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_popup", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::UseUnstableVersion { .. } => 1, - Request::GetXdgSurface { .. } => 2, - Request::GetXdgPopup { .. } => 3, - Request::Pong { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::UseUnstableVersion { .. } => 1, - Request::GetXdgSurface { .. } => 1, - Request::GetXdgPopup { .. } => 1, - Request::Pong { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - 3 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::UseUnstableVersion { version } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(version),], - }, - Request::GetXdgSurface { surface } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::GetXdgPopup { - surface, - parent, - seat, - serial, - x, - y, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(parent.as_ref().id()), - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::UseUnstableVersion { version } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = version; - f(1, &mut _args_array) - } - Request::GetXdgSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::GetXdgPopup { - surface, - parent, - seat, - serial, - x, - y, - } => { - let mut _args_array: [wl_argument; 7] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = parent.as_ref().c_ptr() as *mut _; - _args_array[3].o = seat.as_ref().c_ptr() as *mut _; - _args_array[4].u = serial; - _args_array[5].i = x; - _args_array[6].i = y; - f(3, &mut _args_array) - } - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "check if the client is alive\n\nThe ping event asks the client if it's still alive. Pass the\nserial specified in the event back to the compositor by sending\na \"pong\" request back with the specified serial.\n\nCompositors can use this to determine if the client is still\nalive. It's unspecified what will happen if the client doesn't\nrespond to the ping request, or in what timeframe. Clients should\ntry to respond in a reasonable amount of time.\n\nA compositor is free to ping in any way it wants, but a client must\nalways respond to any xdg_shell object it created."] - Ping { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgShell(Proxy); - impl AsRef> for XdgShell { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgShell { - #[inline] - fn from(value: Proxy) -> Self { - XdgShell(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgShell) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgShell { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgShell { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_shell"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_shell_interface } - } - } - impl XdgShell { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "enable use of this unstable version\n\nNegotiate the unstable version of the interface. This\nmechanism is in place to ensure client and server agree on the\nunstable versions of the protocol that they speak or exit\ncleanly if they don't agree. This request will go away once\nthe xdg-shell protocol is stable."] - pub fn use_unstable_version(&self, version: i32) -> () { - let msg = Request::UseUnstableVersion { version: version }; - self.0.send::(msg, None); - } - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface and gives it the\nxdg_surface role. A wl_surface can only be given an xdg_surface role\nonce. If get_xdg_surface is called with a wl_surface that already has\nan active xdg_surface associated with it, or if it had any other role,\nan error is raised.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - pub fn get_xdg_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetXdgSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "create a popup for a surface\n\nThis creates an xdg_popup for the given surface and gives it the\nxdg_popup role. A wl_surface can only be given an xdg_popup role\nonce. If get_xdg_popup is called with a wl_surface that already has\nan active xdg_popup associated with it, or if it had any other role,\nan error is raised.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_xdg_popup( - &self, - surface: &super::wl_surface::WlSurface, - parent: &super::wl_surface::WlSurface, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> Main { - let msg = Request::GetXdgPopup { - surface: surface.clone(), - parent: parent.clone(), - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_USE_UNSTABLE_VERSION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - static mut xdg_shell_requests_get_xdg_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut xdg_shell_requests_get_xdg_popup_types: [*const wl_interface; 7] = [ - unsafe { &super::xdg_popup::xdg_popup_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_shell_requests: [wl_message; 5] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"use_unstable_version\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_xdg_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &xdg_shell_requests_get_xdg_surface_types as *const _ }, - }, - wl_message { - name: b"get_xdg_popup\0" as *const u8 as *const c_char, - signature: b"nooouii\0" as *const u8 as *const c_char, - types: unsafe { &xdg_shell_requests_get_xdg_popup_types as *const _ }, - }, - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_shell_events: [wl_message; 1] = [wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_shell_interface: wl_interface = wl_interface { - name: b"xdg_shell\0" as *const u8 as *const c_char, - version: 1, - request_count: 5, - requests: unsafe { &xdg_shell_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_shell_events as *const _ }, - }; -} -#[doc = "A desktop window\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides requests to treat surfaces like windows, allowing to set\nproperties like maximized, fullscreen, minimized, and to move and resize\nthem, and associate metadata like title and app id.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_surface state to take effect. Prior to committing the new\nstate, it can set up initial configuration, such as maximizing or setting\na window geometry.\n\nEven without attaching a buffer the compositor must respond to initial\ncommitted configuration, for instance sending a configure event with\nexpected window geometry if the client maximized its surface during\ninitialization.\n\nFor a surface to be mapped by the compositor the client must have\ncommitted both an xdg_surface state and a buffer."] -pub mod xdg_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ResizeEdge { - None = 0, - Top = 1, - Bottom = 2, - Left = 4, - TopLeft = 5, - BottomLeft = 6, - Right = 8, - TopRight = 9, - BottomRight = 10, - } - impl ResizeEdge { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ResizeEdge::None), - 1 => Some(ResizeEdge::Top), - 2 => Some(ResizeEdge::Bottom), - 4 => Some(ResizeEdge::Left), - 5 => Some(ResizeEdge::TopLeft), - 6 => Some(ResizeEdge::BottomLeft), - 8 => Some(ResizeEdge::Right), - 9 => Some(ResizeEdge::TopRight), - 10 => Some(ResizeEdge::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "types of state on the surface\n\nThe different state values used on the surface. This is designed for\nstate values like maximized, fullscreen. It is paired with the\nconfigure event to ensure that both the client and the compositor\nsetting the state can be synchronized.\n\nStates set in this way are double-buffered. They will get applied on\nthe next commit.\n\nDesktop environments may extend this enum by taking up a range of\nvalues and documenting the range they chose in this description.\nThey are not required to document the values for the range that they\nchose. Ideally, any good extensions from a desktop environment should\nmake its way into standardization into this enum.\n\nThe current reserved ranges are:\n\n0x0000 - 0x0FFF: xdg-shell core values, documented below.\n0x1000 - 0x1FFF: GNOME\n0x2000 - 0x2FFF: EFL"] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the surface is maximized\n\nThe surface is maximized. The window geometry specified in the configure\nevent must be obeyed by the client."] - Maximized = 1, - #[doc = "the surface is fullscreen\n\nThe surface is fullscreen. The window geometry specified in the configure\nevent must be obeyed by the client."] - Fullscreen = 2, - #[doc = "the surface is being resized\n\nThe surface is being resized. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it.\nClients that have aspect ratio or cell sizing configuration can use\na smaller size, however."] - Resizing = 3, - #[doc = "the surface is now activated\n\nClient window decorations should be painted as if the window is\nactive. Do not assume this means that the window actually has\nkeyboard or pointer focus."] - Activated = 4, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(State::Maximized), - 2 => Some(State::Fullscreen), - 3 => Some(State::Resizing), - 4 => Some(State::Activated), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Destroy the xdg_surface\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - SetParent { - parent: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - SetAppId { app_id: String }, - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - ShowWindowMenu { - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: u32, - }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, the compositor might use this information to move\na surface to the top left only when the client has drawn itself\nfor the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nThe compositor expects that the most recently received\nack_configure request at the time of a commit indicates which\nconfigure event the client is responding to."] - AckConfigure { serial: u32 }, - #[doc = "set the new window geometry\n\nThe window geometry of a window is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set once, it is not\npossible to unset it, and it will remain the same until\nset_window_geometry is called again, even if a new subsurface or\nbuffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset mode is meant for extremely simple clients.\n\nIf responding to a configure event, the window geometry in here\nmust respect the sizing negotiations specified by the states in\nthe configure event.\n\nThe arguments are given in the surface local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero."] - SetWindowGeometry { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - SetMaximized, - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - UnsetMaximized, - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - SetFullscreen { - output: Option, - }, - #[doc = ""] - UnsetFullscreen, - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - SetMinimized, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "show_window_menu", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_window_geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 2, - Request::SetAppId { .. } => 3, - Request::ShowWindowMenu { .. } => 4, - Request::Move { .. } => 5, - Request::Resize { .. } => 6, - Request::AckConfigure { .. } => 7, - Request::SetWindowGeometry { .. } => 8, - Request::SetMaximized => 9, - Request::UnsetMaximized => 10, - Request::SetFullscreen { .. } => 11, - Request::UnsetFullscreen => 12, - Request::SetMinimized => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetAppId { .. } => 1, - Request::ShowWindowMenu { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::AckConfigure { .. } => 1, - Request::SetWindowGeometry { .. } => 1, - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetFullscreen { .. } => 1, - Request::UnsetFullscreen => 1, - Request::SetMinimized => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParent { parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - parent.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetAppId { app_id } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(app_id.into()) - })),], - }, - Request::ShowWindowMenu { seat, serial, x, y } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges), - ], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Uint(serial),], - }, - Request::SetWindowGeometry { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParent { parent } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(2, &mut _args_array) - } - Request::SetAppId { app_id } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(app_id).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(3, &mut _args_array) - } - Request::ShowWindowMenu { seat, serial, x, y } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].i = x; - _args_array[3].i = y; - f(4, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(5, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges; - f(6, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(7, &mut _args_array) - } - Request::SetWindowGeometry { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(8, &mut _args_array) - } - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(10, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(11, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(12, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event asks the client to resize its surface or to\nchange its state.\n\nThe width and height arguments specify a hint to the window\nabout how its surface should be resized in window geometry\ncoordinates. See set_window_geometry.\n\nIf the width or height arguments are zero, it means the client\nshould decide its own window dimension. This may happen when the\ncompositor need to configure the state of the surface but doesn't\nhave any information about any previous or expected dimension.\n\nThe states listed in the event specify how the width/height\narguments should be interpreted, and possibly how it should be\ndrawn.\n\nClients should arrange their surface for the new size and\nstates, and then send a ack_configure request with the serial\nsent in this configure event at some point before committing\nthe new surface.\n\nIf the client receives multiple configure events before it\ncan respond to one, it is free to discard all but the last\nevent it received."] - Configure { - width: i32, - height: i32, - states: Vec, - serial: u32, - }, - #[doc = "surface wants to be closed\n\nThe close event is sent by the compositor when the user\nwants the surface to be closed. This should be equivalent to\nthe user clicking the close button in client-side decorations,\nif your application has any...\n\nThis is only a request that the user intends to close your\nwindow. The client may choose to ignore this request, or show\na dialog to ask the user to save their data..."] - Close, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Array, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Close => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Close => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - states: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Close), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Configure { - width: _args[0].i, - height: _args[1].i, - states: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - serial: _args[3].u, - }) - } - 1 => Ok(Event::Close), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgSurface(Proxy); - impl AsRef> for XdgSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgSurface { - #[inline] - fn from(value: Proxy) -> Self { - XdgSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_surface"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_surface_interface } - } - } - impl XdgSurface { - #[doc = "Destroy the xdg_surface\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - pub fn set_parent(&self, parent: Option<&super::xdg_surface::XdgSurface>) -> () { - let msg = Request::SetParent { - parent: parent.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - pub fn set_app_id(&self, app_id: String) -> () { - let msg = Request::SetAppId { app_id: app_id }; - self.0.send::(msg, None); - } - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - pub fn show_window_menu( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> () { - let msg = Request::ShowWindowMenu { - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: u32) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, the compositor might use this information to move\na surface to the top left only when the client has drawn itself\nfor the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nThe compositor expects that the most recently received\nack_configure request at the time of a commit indicates which\nconfigure event the client is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "set the new window geometry\n\nThe window geometry of a window is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set once, it is not\npossible to unset it, and it will remain the same until\nset_window_geometry is called again, even if a new subsurface or\nbuffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset mode is meant for extremely simple clients.\n\nIf responding to a configure event, the window geometry in here\nmust respect the sizing negotiations specified by the states in\nthe configure event.\n\nThe arguments are given in the surface local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero."] - pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetWindowGeometry { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_WINDOW_MENU_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_WINDOW_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSE_SINCE: u32 = 1u32; - static mut xdg_surface_requests_set_parent_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }]; - static mut xdg_surface_requests_show_window_menu_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_surface_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut xdg_surface_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_surface_requests_set_fullscreen_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_set_parent_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"show_window_menu\0" as *const u8 as *const c_char, - signature: b"ouii\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_show_window_menu_types as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_resize_types as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_window_geometry\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iiau\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_surface_interface: wl_interface = wl_interface { - name: b"xdg_surface\0" as *const u8 as *const c_char, - version: 1, - request_count: 14, - requests: unsafe { &xdg_surface_requests as *const _ }, - event_count: 2, - events: unsafe { &xdg_surface_events as *const _ }, - }; -} -#[doc = "short-lived, popup surfaces for menus\n\nA popup surface is a short-lived, temporary surface that can be\nused to implement menus. It takes an explicit grab on the surface\nthat will be dismissed when the user dismisses the popup. This can\nbe done by the user clicking outside the surface, using the keyboard,\nor even locking the screen through closing the lid or a timeout.\n\nWhen the popup is dismissed, a popup_done event will be sent out,\nand at the same time the surface will be unmapped. The xdg_popup\nobject is now inert and cannot be reactivated, so clients should\ndestroy it. Explicitly destroying the xdg_popup object will also\ndismiss the popup and unmap the surface.\n\nClients will receive events for all their surfaces during this\ngrab (which is an \"owner-events\" grab in X11 parlance). This is\ndone so that users can navigate through submenus and other\n\"nested\" popup windows without having to dismiss the topmost\npopup.\n\nClients that want to dismiss the popup when another surface of\ntheir own is clicked should dismiss the popup using the destroy\nrequest.\n\nThe parent surface must have either an xdg_surface or xdg_popup\nrole.\n\nSpecifying an xdg_popup for the parent means that the popups are\nnested, with this popup now being the topmost popup. Nested\npopups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times\nis the topmost one.\n\nIf there is an existing popup when creating a new popup, the\nparent must be the current topmost popup.\n\nA parent surface must be mapped before the new popup is mapped.\n\nWhen compositors choose to dismiss a popup, they will likely\ndismiss every nested popup as well. When a compositor dismisses\npopups, it will follow the same dismissing order as required\nfrom the client.\n\nThe x and y arguments passed when creating the popup object specify\nwhere the top left of the popup should be placed, relative to the\nlocal surface coordinates of the parent surface. See\nxdg_shell.get_xdg_popup.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_popup state to take effect.\n\nFor a surface to be mapped by the compositor the client must have\ncommitted both the xdg_popup state and a buffer."] -pub mod xdg_popup { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup is dismissed by the\ncompositor. The client should destroy the xdg_popup object at this\npoint."] - PopupDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::PopupDone => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::PopupDone => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::PopupDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::PopupDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgPopup(Proxy); - impl AsRef> for XdgPopup { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgPopup { - #[inline] - fn from(value: Proxy) -> Self { - XdgPopup(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgPopup) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgPopup { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgPopup { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_popup"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_popup_interface } - } - } - impl XdgPopup { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_events: [wl_message; 1] = [wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_popup_interface: wl_interface = wl_interface { - name: b"xdg_popup\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &xdg_popup_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_popup_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs deleted file mode 100644 index fe23d3f..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs +++ /dev/null @@ -1,2516 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create desktop-style surfaces\n\nxdg_shell allows clients to turn a wl_surface into a \"real window\"\nwhich can be dragged, resized, stacked, and moved around by the\nuser. Everything about this interface is suited towards traditional\ndesktop environments."] -pub mod zxdg_shell_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - #[doc = "xdg_shell was destroyed before children"] - DefunctSurfaces = 1, - #[doc = "the client tried to map or destroy a non-topmost popup"] - NotTheTopmostPopup = 2, - #[doc = "the client specified an invalid popup parent surface"] - InvalidPopupParent = 3, - #[doc = "the client provided an invalid surface state"] - InvalidSurfaceState = 4, - #[doc = "the client provided an invalid positioner"] - InvalidPositioner = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::DefunctSurfaces), - 2 => Some(Error::NotTheTopmostPopup), - 3 => Some(Error::InvalidPopupParent), - 4 => Some(Error::InvalidSurfaceState), - 5 => Some(Error::InvalidPositioner), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - CreatePositioner {}, - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - GetXdgSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_shell.ping."] - Pong { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_positioner", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 2, - Request::Pong { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 1, - Request::Pong { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_positioner_v6::ZxdgPositionerV6, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zxdg_surface_v6::ZxdgSurfaceV6, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreatePositioner {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetXdgSurface { surface } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreatePositioner {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetXdgSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "check if the client is alive\n\nThe ping event asks the client if it's still alive. Pass the\nserial specified in the event back to the compositor by sending\na \"pong\" request back with the specified serial. See xdg_shell.ping.\n\nCompositors can use this to determine if the client is still\nalive. It's unspecified what will happen if the client doesn't\nrespond to the ping request, or in what timeframe. Clients should\ntry to respond in a reasonable amount of time.\n\nA compositor is free to ping in any way it wants, but a client must\nalways respond to any xdg_shell object it created."] - Ping { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgShellV6(Proxy); - impl AsRef> for ZxdgShellV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgShellV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgShellV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgShellV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgShellV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgShellV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_shell_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_shell_v6_interface } - } - } - impl ZxdgShellV6 { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - pub fn create_positioner(&self) -> Main { - let msg = Request::CreatePositioner {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - pub fn get_xdg_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetXdgSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_shell.ping."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_POSITIONER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - static mut zxdg_shell_v6_requests_create_positioner_types: [*const wl_interface; 1] = - [unsafe { - &super::zxdg_positioner_v6::zxdg_positioner_v6_interface as *const wl_interface - }]; - static mut zxdg_shell_v6_requests_get_xdg_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_surface_v6::zxdg_surface_v6_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_shell_v6_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_positioner\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_shell_v6_requests_create_positioner_types as *const _ }, - }, - wl_message { - name: b"get_xdg_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_shell_v6_requests_get_xdg_surface_types as *const _ }, - }, - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_shell_v6_events: [wl_message; 1] = [wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_shell_v6_interface: wl_interface = wl_interface { - name: b"zxdg_shell_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 4, - requests: unsafe { &zxdg_shell_v6_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_shell_v6_events as *const _ }, - }; -} -#[doc = "child surface positioner\n\nThe xdg_positioner provides a collection of rules for the placement of a\nchild surface relative to a parent surface. Rules can be defined to ensure\nthe child surface remains within the visible area's borders, and to\nspecify how the child surface changes its position, such as sliding along\nan axis, or flipping around a rectangle. These positioner-created rules are\nconstrained by the requirement that a child surface must intersect with or\nbe at least partially adjacent to its parent surface.\n\nSee the various requests for details about possible rules.\n\nAt the time of the request, the compositor makes a copy of the rules\nspecified by the xdg_positioner. Thus, after the request is complete the\nxdg_positioner object can be destroyed or reused; further changes to the\nobject will have no effect on previous usages.\n\nFor an xdg_positioner object to be considered complete, it must have a\nnon-zero size set by set_size, and a non-zero anchor rectangle set by\nset_anchor_rect. Passing an incomplete xdg_positioner object when\npositioning a surface raises an error."] -pub mod zxdg_positioner_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid input provided"] - InvalidInput = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidInput), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Anchor : u32 { # [doc = "the center of the anchor rectangle"] const None = 0 ; # [doc = "the top edge of the anchor rectangle"] const Top = 1 ; # [doc = "the bottom edge of the anchor rectangle"] const Bottom = 2 ; # [doc = "the left edge of the anchor rectangle"] const Left = 4 ; # [doc = "the right edge of the anchor rectangle"] const Right = 8 ; } } - impl Anchor { - pub fn from_raw(n: u32) -> Option { - Some(Anchor::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - bitflags! { pub struct Gravity : u32 { # [doc = "center over the anchor edge"] const None = 0 ; # [doc = "position above the anchor edge"] const Top = 1 ; # [doc = "position below the anchor edge"] const Bottom = 2 ; # [doc = "position to the left of the anchor edge"] const Left = 4 ; # [doc = "position to the right of the anchor edge"] const Right = 8 ; } } - impl Gravity { - pub fn from_raw(n: u32) -> Option { - Some(Gravity::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - bitflags! { # [doc = "constraint adjustments\n\nThe constraint adjustment value define ways the compositor will adjust\nthe position of the surface, if the unadjusted position would result\nin the surface being partly constrained.\n\nWhether a surface is considered 'constrained' is left to the compositor\nto determine. For example, the surface may be partly outside the\ncompositor's defined 'work area', thus necessitating the child surface's\nposition be adjusted until it is entirely inside the work area.\n\nThe adjustments can be combined, according to a defined precedence: 1)\nFlip, 2) Slide, 3) Resize."] pub struct ConstraintAdjustment : u32 { # [doc = "don't move the child surface when constrained\n\nDon't alter the surface position even if it is constrained on some\naxis, for example partially outside the edge of a monitor."] const None = 0 ; # [doc = "move along the x axis until unconstrained\n\nSlide the surface along the x axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the x axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\nx axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideX = 1 ; # [doc = "move along the y axis until unconstrained\n\nSlide the surface along the y axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the y axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\ny axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideY = 2 ; # [doc = "invert the anchor and gravity on the x axis\n\nInvert the anchor and gravity on the x axis if the surface is\nconstrained on the x axis. For example, if the left edge of the\nsurface is constrained, the gravity is 'left' and the anchor is\n'left', change the gravity to 'right' and the anchor to 'right'.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_x adjustment will be the one before the\nadjustment."] const FlipX = 4 ; # [doc = "invert the anchor and gravity on the y axis\n\nInvert the anchor and gravity on the y axis if the surface is\nconstrained on the y axis. For example, if the bottom edge of the\nsurface is constrained, the gravity is 'bottom' and the anchor is\n'bottom', change the gravity to 'top' and the anchor to 'top'.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_y adjustment will be the one before the\nadjustment."] const FlipY = 8 ; # [doc = "horizontally resize the surface\n\nResize the surface horizontally so that it is completely\nunconstrained."] const ResizeX = 16 ; # [doc = "vertically resize the surface\n\nResize the surface vertically so that it is completely unconstrained."] const ResizeY = 32 ; } } - impl ConstraintAdjustment { - pub fn from_raw(n: u32) -> Option { - Some(ConstraintAdjustment::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - SetSize { width: i32, height: i32 }, - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface. The rectangle must be at least 1x1 large.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a zero or negative size is set the invalid_input error is raised."] - SetAnchorRect { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "set anchor rectangle anchor edges\n\nDefines a set of edges for the anchor rectangle. These are used to\nderive an anchor point that the child surface will be positioned\nrelative to. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left position of the rectangle); otherwise, the derived\nanchor point will be centered on the specified edge, or in the center of\nthe anchor rectangle if no edge is specified.\n\nIf two parallel anchor edges are specified (e.g. 'left' and 'right'),\nthe invalid_input error is raised."] - SetAnchor { anchor: Anchor }, - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If two orthogonal gravities are\nspecified (e.g. 'bottom' and 'right'), then the child surface will be\nplaced in the specified direction; otherwise, the child surface will be\ncentered over the anchor point on any axis that had no gravity\nspecified.\n\nIf two parallel gravities are specified (e.g. 'left' and 'right'), the\ninvalid_input error is raised."] - SetGravity { gravity: Gravity }, - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - SetConstraintAdjustment { constraint_adjustment: u32 }, - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - SetOffset { x: i32, y: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor_rect", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_gravity", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_constraint_adjustment", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_offset", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 2, - Request::SetAnchor { .. } => 3, - Request::SetGravity { .. } => 4, - Request::SetConstraintAdjustment { .. } => 5, - Request::SetOffset { .. } => 6, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 1, - Request::SetAnchor { .. } => 1, - Request::SetGravity { .. } => 1, - Request::SetConstraintAdjustment { .. } => 1, - Request::SetOffset { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetSize { width, height } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetAnchorRect { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetAnchor { anchor } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(anchor.to_raw()),], - }, - Request::SetGravity { gravity } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(gravity.to_raw()),], - }, - Request::SetConstraintAdjustment { - constraint_adjustment, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Uint(constraint_adjustment),], - }, - Request::SetOffset { x, y } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(1, &mut _args_array) - } - Request::SetAnchorRect { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - Request::SetAnchor { anchor } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = anchor.to_raw(); - f(3, &mut _args_array) - } - Request::SetGravity { gravity } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = gravity.to_raw(); - f(4, &mut _args_array) - } - Request::SetConstraintAdjustment { - constraint_adjustment, - } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = constraint_adjustment; - f(5, &mut _args_array) - } - Request::SetOffset { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(6, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgPositionerV6(Proxy); - impl AsRef> for ZxdgPositionerV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgPositionerV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgPositionerV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgPositionerV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgPositionerV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgPositionerV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_positioner_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_positioner_v6_interface } - } - } - impl ZxdgPositionerV6 { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - pub fn set_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface. The rectangle must be at least 1x1 large.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a zero or negative size is set the invalid_input error is raised."] - pub fn set_anchor_rect(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetAnchorRect { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set anchor rectangle anchor edges\n\nDefines a set of edges for the anchor rectangle. These are used to\nderive an anchor point that the child surface will be positioned\nrelative to. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left position of the rectangle); otherwise, the derived\nanchor point will be centered on the specified edge, or in the center of\nthe anchor rectangle if no edge is specified.\n\nIf two parallel anchor edges are specified (e.g. 'left' and 'right'),\nthe invalid_input error is raised."] - pub fn set_anchor(&self, anchor: Anchor) -> () { - let msg = Request::SetAnchor { anchor: anchor }; - self.0.send::(msg, None); - } - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If two orthogonal gravities are\nspecified (e.g. 'bottom' and 'right'), then the child surface will be\nplaced in the specified direction; otherwise, the child surface will be\ncentered over the anchor point on any axis that had no gravity\nspecified.\n\nIf two parallel gravities are specified (e.g. 'left' and 'right'), the\ninvalid_input error is raised."] - pub fn set_gravity(&self, gravity: Gravity) -> () { - let msg = Request::SetGravity { gravity: gravity }; - self.0.send::(msg, None); - } - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - pub fn set_constraint_adjustment(&self, constraint_adjustment: u32) -> () { - let msg = Request::SetConstraintAdjustment { - constraint_adjustment: constraint_adjustment, - }; - self.0.send::(msg, None); - } - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - pub fn set_offset(&self, x: i32, y: i32) -> () { - let msg = Request::SetOffset { x: x, y: y }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_RECT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_GRAVITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONSTRAINT_ADJUSTMENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OFFSET_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_positioner_v6_requests: [wl_message; 7] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor_rect\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_gravity\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_constraint_adjustment\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_offset\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_positioner_v6_interface: wl_interface = wl_interface { - name: b"zxdg_positioner_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 7, - requests: unsafe { &zxdg_positioner_v6_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "desktop user interface surface base interface\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides a base set of functionality required to construct user\ninterface elements requiring management by the compositor, such as\ntoplevel windows, menus, etc. The types of functionality are split into\nxdg_surface roles.\n\nCreating an xdg_surface does not set the role for a wl_surface. In order\nto map an xdg_surface, the client must create a role-specific object\nusing, e.g., get_toplevel, get_popup. The wl_surface for any given\nxdg_surface can have at most one role, and may not be assigned any role\nnot based on xdg_surface.\n\nA role must be assigned before any other requests are made to the\nxdg_surface object.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_surface state to take effect.\n\nCreating an xdg_surface from a wl_surface which has a buffer attached or\ncommitted is a client error, and any attempts by a client to attach or\nmanipulate a buffer prior to the first xdg_surface.configure call must\nalso be treated as errors.\n\nFor a surface to be mapped by the compositor, the following conditions\nmust be met: (1) the client has assigned an xdg_surface based role to the\nsurface, (2) the client has set and committed the xdg_surface state and\nthe role dependent state to the surface and (3) the client has committed a\nbuffer to the surface."] -pub mod zxdg_surface_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - NotConstructed = 1, - AlreadyConstructed = 2, - UnconfiguredBuffer = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::NotConstructed), - 2 => Some(Error::AlreadyConstructed), - 3 => Some(Error::UnconfiguredBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - GetToplevel {}, - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives the\nassociated wl_surface the xdg_popup role.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetPopup { - parent: super::zxdg_surface_v6::ZxdgSurfaceV6, - positioner: super::zxdg_positioner_v6::ZxdgPositionerV6, - }, - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - SetWindowGeometry { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - AckConfigure { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_popup", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_window_geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 2, - Request::SetWindowGeometry { .. } => 3, - Request::AckConfigure { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 1, - Request::SetWindowGeometry { .. } => 1, - Request::AckConfigure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_toplevel_v6::ZxdgToplevelV6, - >(version, meta.child())), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetToplevel {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetPopup { parent, positioner } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::NewId(0), - Argument::Object(parent.as_ref().id()), - Argument::Object(positioner.as_ref().id()), - ], - }, - Request::SetWindowGeometry { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetToplevel {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetPopup { parent, positioner } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = parent.as_ref().c_ptr() as *mut _; - _args_array[2].o = positioner.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::SetWindowGeometry { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(3, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event marks the end of a configure sequence. A configure\nsequence is a set of one or more events configuring the state of the\nxdg_surface, including the final xdg_surface.configure event.\n\nWhere applicable, xdg_surface surface roles will during a configure\nsequence extend this event as a latched state sent as events before the\nxdg_surface.configure event. Such events should be considered to make up\na set of atomically applied configuration states, where the\nxdg_surface.configure commits the accumulated state.\n\nClients should arrange their surface for the new states, and then send\nan ack_configure request with the serial sent in this configure event at\nsome point before committing the new surface.\n\nIf the client receives multiple configure events before it can respond\nto one, it is free to discard all but the last event it received."] - Configure { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Configure { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgSurfaceV6(Proxy); - impl AsRef> for ZxdgSurfaceV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgSurfaceV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgSurfaceV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgSurfaceV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgSurfaceV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgSurfaceV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_surface_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_surface_v6_interface } - } - } - impl ZxdgSurfaceV6 { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - pub fn get_toplevel(&self) -> Main { - let msg = Request::GetToplevel {}; - self.0.send(msg, None).unwrap() - } - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives the\nassociated wl_surface the xdg_popup role.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_popup( - &self, - parent: &super::zxdg_surface_v6::ZxdgSurfaceV6, - positioner: &super::zxdg_positioner_v6::ZxdgPositionerV6, - ) -> Main { - let msg = Request::GetPopup { - parent: parent.clone(), - positioner: positioner.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetWindowGeometry { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_WINDOW_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - static mut zxdg_surface_v6_requests_get_toplevel_types: [*const wl_interface; 1] = - [unsafe { &super::zxdg_toplevel_v6::zxdg_toplevel_v6_interface as *const wl_interface }]; - static mut zxdg_surface_v6_requests_get_popup_types: [*const wl_interface; 3] = [ - unsafe { &super::zxdg_popup_v6::zxdg_popup_v6_interface as *const wl_interface }, - unsafe { &super::zxdg_surface_v6::zxdg_surface_v6_interface as *const wl_interface }, - unsafe { &super::zxdg_positioner_v6::zxdg_positioner_v6_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_surface_v6_requests: [wl_message; 5] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_toplevel\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_surface_v6_requests_get_toplevel_types as *const _ }, - }, - wl_message { - name: b"get_popup\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_surface_v6_requests_get_popup_types as *const _ }, - }, - wl_message { - name: b"set_window_geometry\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_surface_v6_events: [wl_message; 1] = [wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_surface_v6_interface: wl_interface = wl_interface { - name: b"zxdg_surface_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 5, - requests: unsafe { &zxdg_surface_v6_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_surface_v6_events as *const _ }, - }; -} -#[doc = "toplevel surface\n\nThis interface defines an xdg_surface role which allows a surface to,\namong other things, set window-like properties such as maximize,\nfullscreen, and minimize, set application-specific metadata like title and\nid, and well as trigger user interactive operations such as interactive\nresize and move."] -pub mod zxdg_toplevel_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ResizeEdge { - None = 0, - Top = 1, - Bottom = 2, - Left = 4, - TopLeft = 5, - BottomLeft = 6, - Right = 8, - TopRight = 9, - BottomRight = 10, - } - impl ResizeEdge { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ResizeEdge::None), - 1 => Some(ResizeEdge::Top), - 2 => Some(ResizeEdge::Bottom), - 4 => Some(ResizeEdge::Left), - 5 => Some(ResizeEdge::TopLeft), - 6 => Some(ResizeEdge::BottomLeft), - 8 => Some(ResizeEdge::Right), - 9 => Some(ResizeEdge::TopRight), - 10 => Some(ResizeEdge::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "types of state on the surface\n\nThe different state values used on the surface. This is designed for\nstate values like maximized, fullscreen. It is paired with the\nconfigure event to ensure that both the client and the compositor\nsetting the state can be synchronized.\n\nStates set in this way are double-buffered. They will get applied on\nthe next commit."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the surface is maximized\n\nThe surface is maximized. The window geometry specified in the configure\nevent must be obeyed by the client."] - Maximized = 1, - #[doc = "the surface is fullscreen\n\nThe surface is fullscreen. The window geometry specified in the configure\nevent must be obeyed by the client."] - Fullscreen = 2, - #[doc = "the surface is being resized\n\nThe surface is being resized. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it.\nClients that have aspect ratio or cell sizing configuration can use\na smaller size, however."] - Resizing = 3, - #[doc = "the surface is now activated\n\nClient window decorations should be painted as if the window is\nactive. Do not assume this means that the window actually has\nkeyboard or pointer focus."] - Activated = 4, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(State::Maximized), - 2 => Some(State::Fullscreen), - 3 => Some(State::Resizing), - 4 => Some(State::Activated), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_toplevel\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - SetParent { - parent: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - SetAppId { app_id: String }, - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - ShowWindowMenu { - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: u32, - }, - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMaxSize { width: i32, height: i32 }, - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMinSize { width: i32, height: i32 }, - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - SetMaximized, - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - UnsetMaximized, - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - SetFullscreen { - output: Option, - }, - #[doc = ""] - UnsetFullscreen, - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - SetMinimized, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "show_window_menu", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_max_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_min_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 2, - Request::SetAppId { .. } => 3, - Request::ShowWindowMenu { .. } => 4, - Request::Move { .. } => 5, - Request::Resize { .. } => 6, - Request::SetMaxSize { .. } => 7, - Request::SetMinSize { .. } => 8, - Request::SetMaximized => 9, - Request::UnsetMaximized => 10, - Request::SetFullscreen { .. } => 11, - Request::UnsetFullscreen => 12, - Request::SetMinimized => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetAppId { .. } => 1, - Request::ShowWindowMenu { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::SetMaxSize { .. } => 1, - Request::SetMinSize { .. } => 1, - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetFullscreen { .. } => 1, - Request::UnsetFullscreen => 1, - Request::SetMinimized => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParent { parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - parent.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetAppId { app_id } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(app_id.into()) - })),], - }, - Request::ShowWindowMenu { seat, serial, x, y } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges), - ], - }, - Request::SetMaxSize { width, height } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMinSize { width, height } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParent { parent } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(2, &mut _args_array) - } - Request::SetAppId { app_id } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(app_id).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(3, &mut _args_array) - } - Request::ShowWindowMenu { seat, serial, x, y } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].i = x; - _args_array[3].i = y; - f(4, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(5, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges; - f(6, &mut _args_array) - } - Request::SetMaxSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(7, &mut _args_array) - } - Request::SetMinSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(8, &mut _args_array) - } - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(10, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(11, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(12, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThis configure event asks the client to resize its toplevel surface or\nto change its state. The configured state should not be applied\nimmediately. See xdg_surface.configure for details.\n\nThe width and height arguments specify a hint to the window\nabout how its surface should be resized in window geometry\ncoordinates. See set_window_geometry.\n\nIf the width or height arguments are zero, it means the client\nshould decide its own window dimension. This may happen when the\ncompositor needs to configure the state of the surface but doesn't\nhave any information about any previous or expected dimension.\n\nThe states listed in the event specify how the width/height\narguments should be interpreted, and possibly how it should be\ndrawn.\n\nClients must send an ack_configure in response to this event. See\nxdg_surface.configure and xdg_surface.ack_configure for details."] - Configure { - width: i32, - height: i32, - states: Vec, - }, - #[doc = "surface wants to be closed\n\nThe close event is sent by the compositor when the user\nwants the surface to be closed. This should be equivalent to\nthe user clicking the close button in client-side decorations,\nif your application has any.\n\nThis is only a request that the user intends to close the\nwindow. The client may choose to ignore this request, or show\na dialog to ask the user to save their data, etc."] - Close, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Array, - ], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Close => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Close => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - states: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Close), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - width: _args[0].i, - height: _args[1].i, - states: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 1 => Ok(Event::Close), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgToplevelV6(Proxy); - impl AsRef> for ZxdgToplevelV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgToplevelV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgToplevelV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgToplevelV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgToplevelV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgToplevelV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_toplevel_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_toplevel_v6_interface } - } - } - impl ZxdgToplevelV6 { - #[doc = "destroy the xdg_toplevel\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - pub fn set_parent(&self, parent: Option<&super::zxdg_toplevel_v6::ZxdgToplevelV6>) -> () { - let msg = Request::SetParent { - parent: parent.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - pub fn set_app_id(&self, app_id: String) -> () { - let msg = Request::SetAppId { app_id: app_id }; - self.0.send::(msg, None); - } - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - pub fn show_window_menu( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> () { - let msg = Request::ShowWindowMenu { - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: u32) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_max_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMaxSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_min_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMinSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_WINDOW_MENU_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAX_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MIN_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSE_SINCE: u32 = 1u32; - static mut zxdg_toplevel_v6_requests_set_parent_types: [*const wl_interface; 1] = - [unsafe { &super::zxdg_toplevel_v6::zxdg_toplevel_v6_interface as *const wl_interface }]; - static mut zxdg_toplevel_v6_requests_show_window_menu_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut zxdg_toplevel_v6_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut zxdg_toplevel_v6_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut zxdg_toplevel_v6_requests_set_fullscreen_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_v6_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_set_parent_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"show_window_menu\0" as *const u8 as *const c_char, - signature: b"ouii\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_show_window_menu_types as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_resize_types as *const _ }, - }, - wl_message { - name: b"set_max_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_min_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_v6_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iia\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_toplevel_v6_interface: wl_interface = wl_interface { - name: b"zxdg_toplevel_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 14, - requests: unsafe { &zxdg_toplevel_v6_requests as *const _ }, - event_count: 2, - events: unsafe { &zxdg_toplevel_v6_events as *const _ }, - }; -} -#[doc = "short-lived, popup surfaces for menus\n\nA popup surface is a short-lived, temporary surface. It can be used to\nimplement for example menus, popovers, tooltips and other similar user\ninterface concepts.\n\nA popup can be made to take an explicit grab. See xdg_popup.grab for\ndetails.\n\nWhen the popup is dismissed, a popup_done event will be sent out, and at\nthe same time the surface will be unmapped. See the xdg_popup.popup_done\nevent for details.\n\nExplicitly destroying the xdg_popup object will also dismiss the popup and\nunmap the surface. Clients that want to dismiss the popup when another\nsurface of their own is clicked should dismiss the popup using the destroy\nrequest.\n\nThe parent surface must have either the xdg_toplevel or xdg_popup surface\nrole.\n\nA newly created xdg_popup will be stacked on top of all previously created\nxdg_popup surfaces associated with the same xdg_toplevel.\n\nThe parent of an xdg_popup must be mapped (see the xdg_surface\ndescription) before the xdg_popup itself.\n\nThe x and y arguments passed when creating the popup object specify\nwhere the top left of the popup should be placed, relative to the\nlocal surface coordinates of the parent surface. See\nxdg_surface.get_popup. An xdg_popup must intersect with or be at least\npartially adjacent to its parent surface.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_popup state to take effect."] -pub mod zxdg_popup_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "tried to grab after being mapped"] - InvalidGrab = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidGrab), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - Grab { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "grab", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Grab { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Grab { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Grab { seat, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Grab { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "configure the popup surface\n\nThis event asks the popup surface to configure itself given the\nconfiguration. The configured state should not be applied immediately.\nSee xdg_surface.configure for details.\n\nThe x and y arguments represent the position the popup was placed at\ngiven the xdg_positioner rule, relative to the upper left corner of the\nwindow geometry of the parent surface."] - Configure { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup is dismissed by the\ncompositor. The client should destroy the xdg_popup object at this\npoint."] - PopupDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::PopupDone => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::PopupDone => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::PopupDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Configure { - x: _args[0].i, - y: _args[1].i, - width: _args[2].i, - height: _args[3].i, - }) - } - 1 => Ok(Event::PopupDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgPopupV6(Proxy); - impl AsRef> for ZxdgPopupV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgPopupV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgPopupV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgPopupV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgPopupV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgPopupV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_popup_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_popup_v6_interface } - } - } - impl ZxdgPopupV6 { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - pub fn grab(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Grab { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - static mut zxdg_popup_v6_requests_grab_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_popup_v6_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_popup_v6_requests_grab_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_popup_v6_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_popup_v6_interface: wl_interface = wl_interface { - name: b"zxdg_popup_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_popup_v6_requests as *const _ }, - event_count: 2, - events: unsafe { &zxdg_popup_v6_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs deleted file mode 100644 index 368dc0a..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs +++ /dev/null @@ -1,2772 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create desktop-style surfaces\n\nThe xdg_wm_base interface is exposed as a global object enabling clients\nto turn their wl_surfaces into windows in a desktop environment. It\ndefines the basic functionality needed for clients and the compositor to\ncreate windows that can be dragged, resized, maximized, etc, as well as\ncreating transient windows such as popup menus."] -pub mod xdg_wm_base { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - #[doc = "xdg_wm_base was destroyed before children"] - DefunctSurfaces = 1, - #[doc = "the client tried to map or destroy a non-topmost popup"] - NotTheTopmostPopup = 2, - #[doc = "the client specified an invalid popup parent surface"] - InvalidPopupParent = 3, - #[doc = "the client provided an invalid surface state"] - InvalidSurfaceState = 4, - #[doc = "the client provided an invalid positioner"] - InvalidPositioner = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::DefunctSurfaces), - 2 => Some(Error::NotTheTopmostPopup), - 3 => Some(Error::InvalidPopupParent), - 4 => Some(Error::InvalidSurfaceState), - 5 => Some(Error::InvalidPositioner), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy xdg_wm_base\n\nDestroy this xdg_wm_base object.\n\nDestroying a bound xdg_wm_base object while there are surfaces\nstill alive created by this xdg_wm_base object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - CreatePositioner {}, - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - GetXdgSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_wm_base.ping."] - Pong { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_positioner", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 2, - Request::Pong { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 1, - Request::Pong { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreatePositioner {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetXdgSurface { surface } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreatePositioner {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetXdgSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "check if the client is alive\n\nThe ping event asks the client if it's still alive. Pass the\nserial specified in the event back to the compositor by sending\na \"pong\" request back with the specified serial. See xdg_wm_base.pong.\n\nCompositors can use this to determine if the client is still\nalive. It's unspecified what will happen if the client doesn't\nrespond to the ping request, or in what timeframe. Clients should\ntry to respond in a reasonable amount of time.\n\nA compositor is free to ping in any way it wants, but a client must\nalways respond to any xdg_wm_base object it created."] - Ping { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgWmBase(Proxy); - impl AsRef> for XdgWmBase { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgWmBase { - #[inline] - fn from(value: Proxy) -> Self { - XdgWmBase(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgWmBase) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgWmBase { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgWmBase { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_wm_base"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_wm_base_interface } - } - } - impl XdgWmBase { - #[doc = "destroy xdg_wm_base\n\nDestroy this xdg_wm_base object.\n\nDestroying a bound xdg_wm_base object while there are surfaces\nstill alive created by this xdg_wm_base object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - pub fn create_positioner(&self) -> Main { - let msg = Request::CreatePositioner {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - pub fn get_xdg_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetXdgSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_wm_base.ping."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_POSITIONER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - static mut xdg_wm_base_requests_create_positioner_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_positioner::xdg_positioner_interface as *const wl_interface }]; - static mut xdg_wm_base_requests_get_xdg_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_wm_base_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_positioner\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &xdg_wm_base_requests_create_positioner_types as *const _ }, - }, - wl_message { - name: b"get_xdg_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &xdg_wm_base_requests_get_xdg_surface_types as *const _ }, - }, - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_wm_base_events: [wl_message; 1] = [wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_wm_base_interface: wl_interface = wl_interface { - name: b"xdg_wm_base\0" as *const u8 as *const c_char, - version: 3, - request_count: 4, - requests: unsafe { &xdg_wm_base_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_wm_base_events as *const _ }, - }; -} -#[doc = "child surface positioner\n\nThe xdg_positioner provides a collection of rules for the placement of a\nchild surface relative to a parent surface. Rules can be defined to ensure\nthe child surface remains within the visible area's borders, and to\nspecify how the child surface changes its position, such as sliding along\nan axis, or flipping around a rectangle. These positioner-created rules are\nconstrained by the requirement that a child surface must intersect with or\nbe at least partially adjacent to its parent surface.\n\nSee the various requests for details about possible rules.\n\nAt the time of the request, the compositor makes a copy of the rules\nspecified by the xdg_positioner. Thus, after the request is complete the\nxdg_positioner object can be destroyed or reused; further changes to the\nobject will have no effect on previous usages.\n\nFor an xdg_positioner object to be considered complete, it must have a\nnon-zero size set by set_size, and a non-zero anchor rectangle set by\nset_anchor_rect. Passing an incomplete xdg_positioner object when\npositioning a surface raises an error."] -pub mod xdg_positioner { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid input provided"] - InvalidInput = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidInput), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Anchor { - None = 0, - Top = 1, - Bottom = 2, - Left = 3, - Right = 4, - TopLeft = 5, - BottomLeft = 6, - TopRight = 7, - BottomRight = 8, - } - impl Anchor { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Anchor::None), - 1 => Some(Anchor::Top), - 2 => Some(Anchor::Bottom), - 3 => Some(Anchor::Left), - 4 => Some(Anchor::Right), - 5 => Some(Anchor::TopLeft), - 6 => Some(Anchor::BottomLeft), - 7 => Some(Anchor::TopRight), - 8 => Some(Anchor::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Gravity { - None = 0, - Top = 1, - Bottom = 2, - Left = 3, - Right = 4, - TopLeft = 5, - BottomLeft = 6, - TopRight = 7, - BottomRight = 8, - } - impl Gravity { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Gravity::None), - 1 => Some(Gravity::Top), - 2 => Some(Gravity::Bottom), - 3 => Some(Gravity::Left), - 4 => Some(Gravity::Right), - 5 => Some(Gravity::TopLeft), - 6 => Some(Gravity::BottomLeft), - 7 => Some(Gravity::TopRight), - 8 => Some(Gravity::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { # [doc = "constraint adjustments\n\nThe constraint adjustment value define ways the compositor will adjust\nthe position of the surface, if the unadjusted position would result\nin the surface being partly constrained.\n\nWhether a surface is considered 'constrained' is left to the compositor\nto determine. For example, the surface may be partly outside the\ncompositor's defined 'work area', thus necessitating the child surface's\nposition be adjusted until it is entirely inside the work area.\n\nThe adjustments can be combined, according to a defined precedence: 1)\nFlip, 2) Slide, 3) Resize."] pub struct ConstraintAdjustment : u32 { # [doc = "don't move the child surface when constrained\n\nDon't alter the surface position even if it is constrained on some\naxis, for example partially outside the edge of an output."] const None = 0 ; # [doc = "move along the x axis until unconstrained\n\nSlide the surface along the x axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the x axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\nx axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideX = 1 ; # [doc = "move along the y axis until unconstrained\n\nSlide the surface along the y axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the y axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\ny axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideY = 2 ; # [doc = "invert the anchor and gravity on the x axis\n\nInvert the anchor and gravity on the x axis if the surface is\nconstrained on the x axis. For example, if the left edge of the\nsurface is constrained, the gravity is 'left' and the anchor is\n'left', change the gravity to 'right' and the anchor to 'right'.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_x adjustment will be the one before the\nadjustment."] const FlipX = 4 ; # [doc = "invert the anchor and gravity on the y axis\n\nInvert the anchor and gravity on the y axis if the surface is\nconstrained on the y axis. For example, if the bottom edge of the\nsurface is constrained, the gravity is 'bottom' and the anchor is\n'bottom', change the gravity to 'top' and the anchor to 'top'.\n\nThe adjusted position is calculated given the original anchor\nrectangle and offset, but with the new flipped anchor and gravity\nvalues.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_y adjustment will be the one before the\nadjustment."] const FlipY = 8 ; # [doc = "horizontally resize the surface\n\nResize the surface horizontally so that it is completely\nunconstrained."] const ResizeX = 16 ; # [doc = "vertically resize the surface\n\nResize the surface vertically so that it is completely unconstrained."] const ResizeY = 32 ; } } - impl ConstraintAdjustment { - pub fn from_raw(n: u32) -> Option { - Some(ConstraintAdjustment::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - SetSize { width: i32, height: i32 }, - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a negative size is set the invalid_input error is raised."] - SetAnchorRect { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "set anchor rectangle anchor\n\nDefines the anchor point for the anchor rectangle. The specified anchor\nis used derive an anchor point that the child surface will be\npositioned relative to. If a corner anchor is set (e.g. 'top_left' or\n'bottom_right'), the anchor point will be at the specified corner;\notherwise, the derived anchor point will be centered on the specified\nedge, or in the center of the anchor rectangle if no edge is specified."] - SetAnchor { anchor: Anchor }, - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If a corner gravity is\nspecified (e.g. 'bottom_right' or 'top_left'), then the child surface\nwill be placed towards the specified gravity; otherwise, the child\nsurface will be centered over the anchor point on any axis that had no\ngravity specified."] - SetGravity { gravity: Gravity }, - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - SetConstraintAdjustment { constraint_adjustment: u32 }, - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - SetOffset { x: i32, y: i32 }, - #[doc = "continuously reconstrain the surface\n\nWhen set reactive, the surface is reconstrained if the conditions used\nfor constraining changed, e.g. the parent window moved.\n\nIf the conditions changed and the popup was reconstrained, an\nxdg_popup.configure event is sent with updated geometry, followed by an\nxdg_surface.configure event.\n\nOnly available since version 3 of the interface"] - SetReactive, - #[doc = "Set the parent window geometry the compositor should use when\npositioning the popup. The compositor may use this information to\ndetermine the future state the popup should be constrained using. If\nthis doesn't match the dimension of the parent the popup is eventually\npositioned against, the behavior is undefined.\n\nThe arguments are given in the surface-local coordinate space.\n\nOnly available since version 3 of the interface"] - SetParentSize { - parent_width: i32, - parent_height: i32, - }, - #[doc = "set parent configure this is a response to\n\nSet the serial of an xdg_surface.configure event this positioner will be\nused in response to. The compositor may use this information together\nwith set_parent_size to determine what future state the popup should be\nconstrained using.\n\nOnly available since version 3 of the interface"] - SetParentConfigure { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor_rect", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_gravity", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_constraint_adjustment", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_offset", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_reactive", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_parent_size", - since: 3, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_parent_configure", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 2, - Request::SetAnchor { .. } => 3, - Request::SetGravity { .. } => 4, - Request::SetConstraintAdjustment { .. } => 5, - Request::SetOffset { .. } => 6, - Request::SetReactive => 7, - Request::SetParentSize { .. } => 8, - Request::SetParentConfigure { .. } => 9, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 1, - Request::SetAnchor { .. } => 1, - Request::SetGravity { .. } => 1, - Request::SetConstraintAdjustment { .. } => 1, - Request::SetOffset { .. } => 1, - Request::SetReactive => 3, - Request::SetParentSize { .. } => 3, - Request::SetParentConfigure { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetSize { width, height } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetAnchorRect { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetAnchor { anchor } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(anchor.to_raw()),], - }, - Request::SetGravity { gravity } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(gravity.to_raw()),], - }, - Request::SetConstraintAdjustment { - constraint_adjustment, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Uint(constraint_adjustment),], - }, - Request::SetOffset { x, y } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - Request::SetReactive => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - Request::SetParentSize { - parent_width, - parent_height, - } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(parent_width), Argument::Int(parent_height),], - }, - Request::SetParentConfigure { serial } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(1, &mut _args_array) - } - Request::SetAnchorRect { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - Request::SetAnchor { anchor } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = anchor.to_raw(); - f(3, &mut _args_array) - } - Request::SetGravity { gravity } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = gravity.to_raw(); - f(4, &mut _args_array) - } - Request::SetConstraintAdjustment { - constraint_adjustment, - } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = constraint_adjustment; - f(5, &mut _args_array) - } - Request::SetOffset { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(6, &mut _args_array) - } - Request::SetReactive => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - Request::SetParentSize { - parent_width, - parent_height, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = parent_width; - _args_array[1].i = parent_height; - f(8, &mut _args_array) - } - Request::SetParentConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(9, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgPositioner(Proxy); - impl AsRef> for XdgPositioner { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgPositioner { - #[inline] - fn from(value: Proxy) -> Self { - XdgPositioner(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgPositioner) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgPositioner { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgPositioner { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_positioner"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_positioner_interface } - } - } - impl XdgPositioner { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - pub fn set_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a negative size is set the invalid_input error is raised."] - pub fn set_anchor_rect(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetAnchorRect { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set anchor rectangle anchor\n\nDefines the anchor point for the anchor rectangle. The specified anchor\nis used derive an anchor point that the child surface will be\npositioned relative to. If a corner anchor is set (e.g. 'top_left' or\n'bottom_right'), the anchor point will be at the specified corner;\notherwise, the derived anchor point will be centered on the specified\nedge, or in the center of the anchor rectangle if no edge is specified."] - pub fn set_anchor(&self, anchor: Anchor) -> () { - let msg = Request::SetAnchor { anchor: anchor }; - self.0.send::(msg, None); - } - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If a corner gravity is\nspecified (e.g. 'bottom_right' or 'top_left'), then the child surface\nwill be placed towards the specified gravity; otherwise, the child\nsurface will be centered over the anchor point on any axis that had no\ngravity specified."] - pub fn set_gravity(&self, gravity: Gravity) -> () { - let msg = Request::SetGravity { gravity: gravity }; - self.0.send::(msg, None); - } - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - pub fn set_constraint_adjustment(&self, constraint_adjustment: u32) -> () { - let msg = Request::SetConstraintAdjustment { - constraint_adjustment: constraint_adjustment, - }; - self.0.send::(msg, None); - } - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - pub fn set_offset(&self, x: i32, y: i32) -> () { - let msg = Request::SetOffset { x: x, y: y }; - self.0.send::(msg, None); - } - #[doc = "continuously reconstrain the surface\n\nWhen set reactive, the surface is reconstrained if the conditions used\nfor constraining changed, e.g. the parent window moved.\n\nIf the conditions changed and the popup was reconstrained, an\nxdg_popup.configure event is sent with updated geometry, followed by an\nxdg_surface.configure event.\n\nOnly available since version 3 of the interface."] - pub fn set_reactive(&self) -> () { - let msg = Request::SetReactive; - self.0.send::(msg, None); - } - #[doc = "Set the parent window geometry the compositor should use when\npositioning the popup. The compositor may use this information to\ndetermine the future state the popup should be constrained using. If\nthis doesn't match the dimension of the parent the popup is eventually\npositioned against, the behavior is undefined.\n\nThe arguments are given in the surface-local coordinate space.\n\nOnly available since version 3 of the interface."] - pub fn set_parent_size(&self, parent_width: i32, parent_height: i32) -> () { - let msg = Request::SetParentSize { - parent_width: parent_width, - parent_height: parent_height, - }; - self.0.send::(msg, None); - } - #[doc = "set parent configure this is a response to\n\nSet the serial of an xdg_surface.configure event this positioner will be\nused in response to. The compositor may use this information together\nwith set_parent_size to determine what future state the popup should be\nconstrained using.\n\nOnly available since version 3 of the interface."] - pub fn set_parent_configure(&self, serial: u32) -> () { - let msg = Request::SetParentConfigure { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_RECT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_GRAVITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONSTRAINT_ADJUSTMENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OFFSET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_REACTIVE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SIZE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_CONFIGURE_SINCE: u32 = 3u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_positioner_requests: [wl_message; 10] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor_rect\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_gravity\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_constraint_adjustment\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_offset\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_reactive\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_size\0" as *const u8 as *const c_char, - signature: b"3ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_configure\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_positioner_interface: wl_interface = wl_interface { - name: b"xdg_positioner\0" as *const u8 as *const c_char, - version: 3, - request_count: 10, - requests: unsafe { &xdg_positioner_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "desktop user interface surface base interface\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides a base set of functionality required to construct user\ninterface elements requiring management by the compositor, such as\ntoplevel windows, menus, etc. The types of functionality are split into\nxdg_surface roles.\n\nCreating an xdg_surface does not set the role for a wl_surface. In order\nto map an xdg_surface, the client must create a role-specific object\nusing, e.g., get_toplevel, get_popup. The wl_surface for any given\nxdg_surface can have at most one role, and may not be assigned any role\nnot based on xdg_surface.\n\nA role must be assigned before any other requests are made to the\nxdg_surface object.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_surface state to take effect.\n\nCreating an xdg_surface from a wl_surface which has a buffer attached or\ncommitted is a client error, and any attempts by a client to attach or\nmanipulate a buffer prior to the first xdg_surface.configure call must\nalso be treated as errors.\n\nAfter creating a role-specific object and setting it up, the client must\nperform an initial commit without any buffer attached. The compositor\nwill reply with an xdg_surface.configure event. The client must\nacknowledge it and is then allowed to attach a buffer to map the surface.\n\nMapping an xdg_surface-based role surface is defined as making it\npossible for the surface to be shown by the compositor. Note that\na mapped surface is not guaranteed to be visible once it is mapped.\n\nFor an xdg_surface to be mapped by the compositor, the following\nconditions must be met:\n(1) the client has assigned an xdg_surface-based role to the surface\n(2) the client has set and committed the xdg_surface state and the\nrole-dependent state to the surface\n(3) the client has committed a buffer to the surface\n\nA newly-unmapped surface is considered to have met condition (1) out\nof the 3 required conditions for mapping a surface if its role surface\nhas not been destroyed."] -pub mod xdg_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - NotConstructed = 1, - AlreadyConstructed = 2, - UnconfiguredBuffer = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::NotConstructed), - 2 => Some(Error::AlreadyConstructed), - 3 => Some(Error::UnconfiguredBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - GetToplevel {}, - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives\nthe associated wl_surface the xdg_popup role.\n\nIf null is passed as a parent, a parent surface must be specified using\nsome other protocol, before committing the initial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetPopup { - parent: Option, - positioner: super::xdg_positioner::XdgPositioner, - }, - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nWhen maintaining a position, the compositor should treat the (x, y)\ncoordinate of the window geometry as the top left corner of the window.\nA client changing the (x, y) window geometry coordinate should in\ngeneral not alter the position of the window.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - SetWindowGeometry { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - AckConfigure { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_popup", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_window_geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 2, - Request::SetWindowGeometry { .. } => 3, - Request::AckConfigure { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 1, - Request::SetWindowGeometry { .. } => 1, - Request::AckConfigure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetToplevel {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetPopup { parent, positioner } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::NewId(0), - Argument::Object(parent.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Object(positioner.as_ref().id()), - ], - }, - Request::SetWindowGeometry { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetToplevel {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetPopup { parent, positioner } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].o = positioner.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::SetWindowGeometry { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(3, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event marks the end of a configure sequence. A configure\nsequence is a set of one or more events configuring the state of the\nxdg_surface, including the final xdg_surface.configure event.\n\nWhere applicable, xdg_surface surface roles will during a configure\nsequence extend this event as a latched state sent as events before the\nxdg_surface.configure event. Such events should be considered to make up\na set of atomically applied configuration states, where the\nxdg_surface.configure commits the accumulated state.\n\nClients should arrange their surface for the new states, and then send\nan ack_configure request with the serial sent in this configure event at\nsome point before committing the new surface.\n\nIf the client receives multiple configure events before it can respond\nto one, it is free to discard all but the last event it received."] - Configure { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Configure { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgSurface(Proxy); - impl AsRef> for XdgSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgSurface { - #[inline] - fn from(value: Proxy) -> Self { - XdgSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_surface"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_surface_interface } - } - } - impl XdgSurface { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - pub fn get_toplevel(&self) -> Main { - let msg = Request::GetToplevel {}; - self.0.send(msg, None).unwrap() - } - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives\nthe associated wl_surface the xdg_popup role.\n\nIf null is passed as a parent, a parent surface must be specified using\nsome other protocol, before committing the initial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_popup( - &self, - parent: Option<&super::xdg_surface::XdgSurface>, - positioner: &super::xdg_positioner::XdgPositioner, - ) -> Main { - let msg = Request::GetPopup { - parent: parent.map(|o| o.clone()), - positioner: positioner.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nWhen maintaining a position, the compositor should treat the (x, y)\ncoordinate of the window geometry as the top left corner of the window.\nA client changing the (x, y) window geometry coordinate should in\ngeneral not alter the position of the window.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetWindowGeometry { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_WINDOW_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - static mut xdg_surface_requests_get_toplevel_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_toplevel::xdg_toplevel_interface as *const wl_interface }]; - static mut xdg_surface_requests_get_popup_types: [*const wl_interface; 3] = [ - unsafe { &super::xdg_popup::xdg_popup_interface as *const wl_interface }, - unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }, - unsafe { &super::xdg_positioner::xdg_positioner_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_requests: [wl_message; 5] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_toplevel\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_get_toplevel_types as *const _ }, - }, - wl_message { - name: b"get_popup\0" as *const u8 as *const c_char, - signature: b"n?oo\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_get_popup_types as *const _ }, - }, - wl_message { - name: b"set_window_geometry\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_events: [wl_message; 1] = [wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_surface_interface: wl_interface = wl_interface { - name: b"xdg_surface\0" as *const u8 as *const c_char, - version: 3, - request_count: 5, - requests: unsafe { &xdg_surface_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_surface_events as *const _ }, - }; -} -#[doc = "toplevel surface\n\nThis interface defines an xdg_surface role which allows a surface to,\namong other things, set window-like properties such as maximize,\nfullscreen, and minimize, set application-specific metadata like title and\nid, and well as trigger user interactive operations such as interactive\nresize and move.\n\nUnmapping an xdg_toplevel means that the surface cannot be shown\nby the compositor until it is explicitly mapped again.\nAll active operations (e.g., move, resize) are canceled and all\nattributes (e.g. title, state, stacking, ...) are discarded for\nan xdg_toplevel surface when it is unmapped. The xdg_toplevel returns to\nthe state it had right after xdg_surface.get_toplevel. The client\ncan re-map the toplevel by perfoming a commit without any buffer\nattached, waiting for a configure event and handling it as usual (see\nxdg_surface description).\n\nAttaching a null buffer to a toplevel unmaps the surface."] -pub mod xdg_toplevel { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ResizeEdge { - None = 0, - Top = 1, - Bottom = 2, - Left = 4, - TopLeft = 5, - BottomLeft = 6, - Right = 8, - TopRight = 9, - BottomRight = 10, - } - impl ResizeEdge { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ResizeEdge::None), - 1 => Some(ResizeEdge::Top), - 2 => Some(ResizeEdge::Bottom), - 4 => Some(ResizeEdge::Left), - 5 => Some(ResizeEdge::TopLeft), - 6 => Some(ResizeEdge::BottomLeft), - 8 => Some(ResizeEdge::Right), - 9 => Some(ResizeEdge::TopRight), - 10 => Some(ResizeEdge::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "types of state on the surface\n\nThe different state values used on the surface. This is designed for\nstate values like maximized, fullscreen. It is paired with the\nconfigure event to ensure that both the client and the compositor\nsetting the state can be synchronized.\n\nStates set in this way are double-buffered. They will get applied on\nthe next commit."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the surface is maximized\n\nThe surface is maximized. The window geometry specified in the configure\nevent must be obeyed by the client.\n\nThe client should draw without shadow or other\ndecoration outside of the window geometry."] - Maximized = 1, - #[doc = "the surface is fullscreen\n\nThe surface is fullscreen. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it. For\na surface to cover the whole fullscreened area, the geometry\ndimensions must be obeyed by the client. For more details, see\nxdg_toplevel.set_fullscreen."] - Fullscreen = 2, - #[doc = "the surface is being resized\n\nThe surface is being resized. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it.\nClients that have aspect ratio or cell sizing configuration can use\na smaller size, however."] - Resizing = 3, - #[doc = "the surface is now activated\n\nClient window decorations should be painted as if the window is\nactive. Do not assume this means that the window actually has\nkeyboard or pointer focus."] - Activated = 4, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the left edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledLeft = 5, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the right edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledRight = 6, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the top edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledTop = 7, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the bottom edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledBottom = 8, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(State::Maximized), - 2 => Some(State::Fullscreen), - 3 => Some(State::Resizing), - 4 => Some(State::Activated), - 5 => Some(State::TiledLeft), - 6 => Some(State::TiledRight), - 7 => Some(State::TiledTop), - 8 => Some(State::TiledBottom), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_toplevel\n\nThis request destroys the role surface and unmaps the surface;\nsee \"Unmapping\" behavior in interface section for details.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This surface should be stacked\nabove the parent surface and all other ancestor surfaces.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised.\n\nSetting a null parent for a child window removes any parent-child\nrelationship for the child. Setting a null parent for a window which\ncurrently has no parent is a no-op.\n\nIf the parent is unmapped then its children are managed as\nthough the parent of the now-unmapped parent has become the\nparent of this surface. If no parent exists for the now-unmapped\nparent then the children are managed as though they have no\nparent surface."] - SetParent { - parent: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nLike other properties, a set_app_id request can be sent after the\nxdg_toplevel has been mapped to update the property.\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - SetAppId { app_id: String }, - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - ShowWindowMenu { - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: ResizeEdge, - }, - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMaxSize { width: i32, height: i32 }, - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMinSize { width: i32, height: i32 }, - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event. Whether this configure\nactually sets the window maximized is subject to compositor policies.\nThe client must then update its content, drawing in the configured\nstate. The client must also acknowledge the configure when committing\nthe new content (see ack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - SetMaximized, - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event. Whether this actually\nun-maximizes the window is subject to compositor policies.\nIf available and applicable, the compositor will include the window\ngeometry dimensions the window had prior to being maximized in the\nconfigure event. The client must then update its content, drawing it in\nthe configured state. The client must also acknowledge the configure\nwhen committing the new content (see ack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - UnsetMaximized, - #[doc = "set the window as fullscreen on an output\n\nMake the surface fullscreen.\n\nAfter requesting that the surface should be fullscreened, the\ncompositor will respond by emitting a configure event. Whether the\nclient is actually put into a fullscreen state is subject to compositor\npolicies. The client must also acknowledge the configure when\ncommitting the new content (see ack_configure).\n\nThe output passed by the request indicates the client's preference as\nto which display it should be set fullscreen on. If this value is NULL,\nit's up to the compositor to choose which display will be used to map\nthis surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nwith border fill covering the rest of the output. The content of the\nborder fill is undefined, but should be assumed to be in some way that\nattempts to blend into the surrounding area (e.g. solid black).\n\nIf the fullscreened surface is not opaque, the compositor must make\nsure that other screen content not part of the same surface tree (made\nup of subsurfaces, popups or similarly coupled surfaces) are not\nvisible below the fullscreened surface."] - SetFullscreen { - output: Option, - }, - #[doc = "unset the window as fullscreen\n\nMake the surface no longer fullscreen.\n\nAfter requesting that the surface should be unfullscreened, the\ncompositor will respond by emitting a configure event.\nWhether this actually removes the fullscreen state of the client is\nsubject to compositor policies.\n\nMaking a surface unfullscreen sets states for the surface based on the following:\n* the state(s) it may have had before becoming fullscreen\n* any state(s) decided by the compositor\n* any state(s) requested by the client while the surface was fullscreen\n\nThe compositor may include the previous window geometry dimensions in\nthe configure event, if applicable.\n\nThe client must also acknowledge the configure when committing the new\ncontent (see ack_configure)."] - UnsetFullscreen, - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - SetMinimized, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "show_window_menu", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_max_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_min_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 2, - Request::SetAppId { .. } => 3, - Request::ShowWindowMenu { .. } => 4, - Request::Move { .. } => 5, - Request::Resize { .. } => 6, - Request::SetMaxSize { .. } => 7, - Request::SetMinSize { .. } => 8, - Request::SetMaximized => 9, - Request::UnsetMaximized => 10, - Request::SetFullscreen { .. } => 11, - Request::UnsetFullscreen => 12, - Request::SetMinimized => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetAppId { .. } => 1, - Request::ShowWindowMenu { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::SetMaxSize { .. } => 1, - Request::SetMinSize { .. } => 1, - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetFullscreen { .. } => 1, - Request::UnsetFullscreen => 1, - Request::SetMinimized => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParent { parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - parent.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetAppId { app_id } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(app_id.into()) - })),], - }, - Request::ShowWindowMenu { seat, serial, x, y } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges.to_raw()), - ], - }, - Request::SetMaxSize { width, height } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMinSize { width, height } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParent { parent } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(2, &mut _args_array) - } - Request::SetAppId { app_id } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(app_id).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(3, &mut _args_array) - } - Request::ShowWindowMenu { seat, serial, x, y } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].i = x; - _args_array[3].i = y; - f(4, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(5, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges.to_raw(); - f(6, &mut _args_array) - } - Request::SetMaxSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(7, &mut _args_array) - } - Request::SetMinSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(8, &mut _args_array) - } - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(10, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(11, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(12, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThis configure event asks the client to resize its toplevel surface or\nto change its state. The configured state should not be applied\nimmediately. See xdg_surface.configure for details.\n\nThe width and height arguments specify a hint to the window\nabout how its surface should be resized in window geometry\ncoordinates. See set_window_geometry.\n\nIf the width or height arguments are zero, it means the client\nshould decide its own window dimension. This may happen when the\ncompositor needs to configure the state of the surface but doesn't\nhave any information about any previous or expected dimension.\n\nThe states listed in the event specify how the width/height\narguments should be interpreted, and possibly how it should be\ndrawn.\n\nClients must send an ack_configure in response to this event. See\nxdg_surface.configure and xdg_surface.ack_configure for details."] - Configure { - width: i32, - height: i32, - states: Vec, - }, - #[doc = "surface wants to be closed\n\nThe close event is sent by the compositor when the user\nwants the surface to be closed. This should be equivalent to\nthe user clicking the close button in client-side decorations,\nif your application has any.\n\nThis is only a request that the user intends to close the\nwindow. The client may choose to ignore this request, or show\na dialog to ask the user to save their data, etc."] - Close, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Array, - ], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Close => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Close => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - states: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Close), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - width: _args[0].i, - height: _args[1].i, - states: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 1 => Ok(Event::Close), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgToplevel(Proxy); - impl AsRef> for XdgToplevel { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgToplevel { - #[inline] - fn from(value: Proxy) -> Self { - XdgToplevel(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgToplevel) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgToplevel { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgToplevel { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_toplevel"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_toplevel_interface } - } - } - impl XdgToplevel { - #[doc = "destroy the xdg_toplevel\n\nThis request destroys the role surface and unmaps the surface;\nsee \"Unmapping\" behavior in interface section for details.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This surface should be stacked\nabove the parent surface and all other ancestor surfaces.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised.\n\nSetting a null parent for a child window removes any parent-child\nrelationship for the child. Setting a null parent for a window which\ncurrently has no parent is a no-op.\n\nIf the parent is unmapped then its children are managed as\nthough the parent of the now-unmapped parent has become the\nparent of this surface. If no parent exists for the now-unmapped\nparent then the children are managed as though they have no\nparent surface."] - pub fn set_parent(&self, parent: Option<&super::xdg_toplevel::XdgToplevel>) -> () { - let msg = Request::SetParent { - parent: parent.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nLike other properties, a set_app_id request can be sent after the\nxdg_toplevel has been mapped to update the property.\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - pub fn set_app_id(&self, app_id: String) -> () { - let msg = Request::SetAppId { app_id: app_id }; - self.0.send::(msg, None); - } - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - pub fn show_window_menu( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> () { - let msg = Request::ShowWindowMenu { - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: ResizeEdge) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_max_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMaxSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_min_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMinSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event. Whether this configure\nactually sets the window maximized is subject to compositor policies.\nThe client must then update its content, drawing in the configured\nstate. The client must also acknowledge the configure when committing\nthe new content (see ack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event. Whether this actually\nun-maximizes the window is subject to compositor policies.\nIf available and applicable, the compositor will include the window\ngeometry dimensions the window had prior to being maximized in the\nconfigure event. The client must then update its content, drawing it in\nthe configured state. The client must also acknowledge the configure\nwhen committing the new content (see ack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "set the window as fullscreen on an output\n\nMake the surface fullscreen.\n\nAfter requesting that the surface should be fullscreened, the\ncompositor will respond by emitting a configure event. Whether the\nclient is actually put into a fullscreen state is subject to compositor\npolicies. The client must also acknowledge the configure when\ncommitting the new content (see ack_configure).\n\nThe output passed by the request indicates the client's preference as\nto which display it should be set fullscreen on. If this value is NULL,\nit's up to the compositor to choose which display will be used to map\nthis surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nwith border fill covering the rest of the output. The content of the\nborder fill is undefined, but should be assumed to be in some way that\nattempts to blend into the surrounding area (e.g. solid black).\n\nIf the fullscreened surface is not opaque, the compositor must make\nsure that other screen content not part of the same surface tree (made\nup of subsurfaces, popups or similarly coupled surfaces) are not\nvisible below the fullscreened surface."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "unset the window as fullscreen\n\nMake the surface no longer fullscreen.\n\nAfter requesting that the surface should be unfullscreened, the\ncompositor will respond by emitting a configure event.\nWhether this actually removes the fullscreen state of the client is\nsubject to compositor policies.\n\nMaking a surface unfullscreen sets states for the surface based on the following:\n* the state(s) it may have had before becoming fullscreen\n* any state(s) decided by the compositor\n* any state(s) requested by the client while the surface was fullscreen\n\nThe compositor may include the previous window geometry dimensions in\nthe configure event, if applicable.\n\nThe client must also acknowledge the configure when committing the new\ncontent (see ack_configure)."] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_WINDOW_MENU_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAX_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MIN_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSE_SINCE: u32 = 1u32; - static mut xdg_toplevel_requests_set_parent_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_toplevel::xdg_toplevel_interface as *const wl_interface }]; - static mut xdg_toplevel_requests_show_window_menu_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_toplevel_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut xdg_toplevel_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_toplevel_requests_set_fullscreen_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_toplevel_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_set_parent_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"show_window_menu\0" as *const u8 as *const c_char, - signature: b"ouii\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_show_window_menu_types as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_resize_types as *const _ }, - }, - wl_message { - name: b"set_max_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_min_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_toplevel_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iia\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_toplevel_interface: wl_interface = wl_interface { - name: b"xdg_toplevel\0" as *const u8 as *const c_char, - version: 3, - request_count: 14, - requests: unsafe { &xdg_toplevel_requests as *const _ }, - event_count: 2, - events: unsafe { &xdg_toplevel_events as *const _ }, - }; -} -#[doc = "short-lived, popup surfaces for menus\n\nA popup surface is a short-lived, temporary surface. It can be used to\nimplement for example menus, popovers, tooltips and other similar user\ninterface concepts.\n\nA popup can be made to take an explicit grab. See xdg_popup.grab for\ndetails.\n\nWhen the popup is dismissed, a popup_done event will be sent out, and at\nthe same time the surface will be unmapped. See the xdg_popup.popup_done\nevent for details.\n\nExplicitly destroying the xdg_popup object will also dismiss the popup and\nunmap the surface. Clients that want to dismiss the popup when another\nsurface of their own is clicked should dismiss the popup using the destroy\nrequest.\n\nA newly created xdg_popup will be stacked on top of all previously created\nxdg_popup surfaces associated with the same xdg_toplevel.\n\nThe parent of an xdg_popup must be mapped (see the xdg_surface\ndescription) before the xdg_popup itself.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_popup state to take effect."] -pub mod xdg_popup { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "tried to grab after being mapped"] - InvalidGrab = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidGrab), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - Grab { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "recalculate the popup's location\n\nReposition an already-mapped popup. The popup will be placed given the\ndetails in the passed xdg_positioner object, and a\nxdg_popup.repositioned followed by xdg_popup.configure and\nxdg_surface.configure will be emitted in response. Any parameters set\nby the previous positioner will be discarded.\n\nThe passed token will be sent in the corresponding\nxdg_popup.repositioned event. The new popup position will not take\neffect until the corresponding configure event is acknowledged by the\nclient. See xdg_popup.repositioned for details. The token itself is\nopaque, and has no other special meaning.\n\nIf multiple reposition requests are sent, the compositor may skip all\nbut the last one.\n\nIf the popup is repositioned in response to a configure event for its\nparent, the client should send an xdg_positioner.set_parent_configure\nand possibly an xdg_positioner.set_parent_size request to allow the\ncompositor to properly constrain the popup.\n\nIf the popup is repositioned together with a parent that is being\nresized, but not in response to a configure event, the client should\nsend an xdg_positioner.set_parent_size request.\n\nOnly available since version 3 of the interface"] - Reposition { - positioner: super::xdg_positioner::XdgPositioner, - token: u32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "grab", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "reposition", - since: 3, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Grab { .. } => 1, - Request::Reposition { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Grab { .. } => 1, - Request::Reposition { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Grab { seat, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Reposition { positioner, token } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(positioner.as_ref().id()), - Argument::Uint(token), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Grab { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(1, &mut _args_array) - } - Request::Reposition { positioner, token } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = positioner.as_ref().c_ptr() as *mut _; - _args_array[1].u = token; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "configure the popup surface\n\nThis event asks the popup surface to configure itself given the\nconfiguration. The configured state should not be applied immediately.\nSee xdg_surface.configure for details.\n\nThe x and y arguments represent the position the popup was placed at\ngiven the xdg_positioner rule, relative to the upper left corner of the\nwindow geometry of the parent surface.\n\nFor version 2 or older, the configure event for an xdg_popup is only\never sent once for the initial configuration. Starting with version 3,\nit may be sent again if the popup is setup with an xdg_positioner with\nset_reactive requested, or in response to xdg_popup.reposition requests."] - Configure { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup is dismissed by the\ncompositor. The client should destroy the xdg_popup object at this\npoint."] - PopupDone, - #[doc = "signal the completion of a repositioned request\n\nThe repositioned event is sent as part of a popup configuration\nsequence, together with xdg_popup.configure and lastly\nxdg_surface.configure to notify the completion of a reposition request.\n\nThe repositioned event is to notify about the completion of a\nxdg_popup.reposition request. The token argument is the token passed\nin the xdg_popup.reposition request.\n\nImmediately after this event is emitted, xdg_popup.configure and\nxdg_surface.configure will be sent with the updated size and position,\nas well as a new configure serial.\n\nThe client should optionally update the content of the popup, but must\nacknowledge the new popup configuration for the new position to take\neffect. See xdg_surface.ack_configure for details.\n\nOnly available since version 3 of the interface"] - Repositioned { token: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "repositioned", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::PopupDone => 1, - Event::Repositioned { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::PopupDone => 1, - Event::Repositioned { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::PopupDone), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Repositioned { - token: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Configure { - x: _args[0].i, - y: _args[1].i, - width: _args[2].i, - height: _args[3].i, - }) - } - 1 => Ok(Event::PopupDone), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Repositioned { token: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgPopup(Proxy); - impl AsRef> for XdgPopup { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgPopup { - #[inline] - fn from(value: Proxy) -> Self { - XdgPopup(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgPopup) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgPopup { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgPopup { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_popup"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_popup_interface } - } - } - impl XdgPopup { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - pub fn grab(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Grab { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "recalculate the popup's location\n\nReposition an already-mapped popup. The popup will be placed given the\ndetails in the passed xdg_positioner object, and a\nxdg_popup.repositioned followed by xdg_popup.configure and\nxdg_surface.configure will be emitted in response. Any parameters set\nby the previous positioner will be discarded.\n\nThe passed token will be sent in the corresponding\nxdg_popup.repositioned event. The new popup position will not take\neffect until the corresponding configure event is acknowledged by the\nclient. See xdg_popup.repositioned for details. The token itself is\nopaque, and has no other special meaning.\n\nIf multiple reposition requests are sent, the compositor may skip all\nbut the last one.\n\nIf the popup is repositioned in response to a configure event for its\nparent, the client should send an xdg_positioner.set_parent_configure\nand possibly an xdg_positioner.set_parent_size request to allow the\ncompositor to properly constrain the popup.\n\nIf the popup is repositioned together with a parent that is being\nresized, but not in response to a configure event, the client should\nsend an xdg_positioner.set_parent_size request.\n\nOnly available since version 3 of the interface."] - pub fn reposition( - &self, - positioner: &super::xdg_positioner::XdgPositioner, - token: u32, - ) -> () { - let msg = Request::Reposition { - positioner: positioner.clone(), - token: token, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_REPOSITION_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REPOSITIONED_SINCE: u32 = 3u32; - static mut xdg_popup_requests_grab_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut xdg_popup_requests_reposition_types: [*const wl_interface; 2] = [ - unsafe { &super::xdg_positioner::xdg_positioner_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_popup_requests_grab_types as *const _ }, - }, - wl_message { - name: b"reposition\0" as *const u8 as *const c_char, - signature: b"3ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_popup_requests_reposition_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_events: [wl_message; 3] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"repositioned\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_popup_interface: wl_interface = wl_interface { - name: b"xdg_popup\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &xdg_popup_requests as *const _ }, - event_count: 3, - events: unsafe { &xdg_popup_events as *const _ }, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs b/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs deleted file mode 100644 index 1de3dd8..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs +++ /dev/null @@ -1,444 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "context object for keyboard grab manager\n\nA global interface used for grabbing the keyboard."] -pub mod zwp_xwayland_keyboard_grab_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the keyboard grab manager\n\nDestroy the keyboard grab manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "grab the keyboard to a surface\n\nThe grab_keyboard request asks for a grab of the keyboard, forcing\nthe keyboard focus for the given seat upon the given surface.\n\nThe protocol provides no guarantee that the grab is ever satisfied,\nand does not require the compositor to send an error if the grab\ncannot ever be satisfied. It is thus possible to request a keyboard\ngrab that will never be effective.\n\nThe protocol:\n\n* does not guarantee that the grab itself is applied for a surface,\nthe grab request may be silently ignored by the compositor,\n* does not guarantee that any events are sent to this client even\nif the grab is applied to a surface,\n* does not guarantee that events sent to this client are exhaustive,\na compositor may filter some events for its own consumption,\n* does not guarantee that events sent to this client are continuous,\na compositor may change and reroute keyboard events while the grab\nis nominally active."] - GrabKeyboard { - surface: super::wl_surface::WlSurface, - seat: super::wl_seat::WlSeat, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "grab_keyboard", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GrabKeyboard { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GrabKeyboard { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_xwayland_keyboard_grab_v1::ZwpXwaylandKeyboardGrabV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GrabKeyboard { surface, seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(seat.as_ref().id()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GrabKeyboard { surface, seat } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpXwaylandKeyboardGrabManagerV1(Proxy); - impl AsRef> for ZwpXwaylandKeyboardGrabManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpXwaylandKeyboardGrabManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpXwaylandKeyboardGrabManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpXwaylandKeyboardGrabManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpXwaylandKeyboardGrabManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpXwaylandKeyboardGrabManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_xwayland_keyboard_grab_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_xwayland_keyboard_grab_manager_v1_interface } - } - } - impl ZwpXwaylandKeyboardGrabManagerV1 { - #[doc = "destroy the keyboard grab manager\n\nDestroy the keyboard grab manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "grab the keyboard to a surface\n\nThe grab_keyboard request asks for a grab of the keyboard, forcing\nthe keyboard focus for the given seat upon the given surface.\n\nThe protocol provides no guarantee that the grab is ever satisfied,\nand does not require the compositor to send an error if the grab\ncannot ever be satisfied. It is thus possible to request a keyboard\ngrab that will never be effective.\n\nThe protocol:\n\n* does not guarantee that the grab itself is applied for a surface,\nthe grab request may be silently ignored by the compositor,\n* does not guarantee that any events are sent to this client even\nif the grab is applied to a surface,\n* does not guarantee that events sent to this client are exhaustive,\na compositor may filter some events for its own consumption,\n* does not guarantee that events sent to this client are continuous,\na compositor may change and reroute keyboard events while the grab\nis nominally active."] - pub fn grab_keyboard( - &self, - surface: &super::wl_surface::WlSurface, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GrabKeyboard { - surface: surface.clone(), - seat: seat.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_KEYBOARD_SINCE: u32 = 1u32; - static mut zwp_xwayland_keyboard_grab_manager_v1_requests_grab_keyboard_types: - [*const wl_interface; 3] = [ - unsafe { - &super::zwp_xwayland_keyboard_grab_v1::zwp_xwayland_keyboard_grab_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab_keyboard\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_xwayland_keyboard_grab_manager_v1_requests_grab_keyboard_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_xwayland_keyboard_grab_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_xwayland_keyboard_grab_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "interface for grabbing the keyboard\n\nA global interface used for grabbing the keyboard."] -pub mod zwp_xwayland_keyboard_grab_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the grabbed keyboard object\n\nDestroy the grabbed keyboard object. If applicable, the compositor\nwill ungrab the keyboard.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpXwaylandKeyboardGrabV1(Proxy); - impl AsRef> for ZwpXwaylandKeyboardGrabV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpXwaylandKeyboardGrabV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpXwaylandKeyboardGrabV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpXwaylandKeyboardGrabV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpXwaylandKeyboardGrabV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpXwaylandKeyboardGrabV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_xwayland_keyboard_grab_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_xwayland_keyboard_grab_v1_interface } - } - } - impl ZwpXwaylandKeyboardGrabV1 { - #[doc = "destroy the grabbed keyboard object\n\nDestroy the grabbed keyboard object. If applicable, the compositor\nwill ungrab the keyboard.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_v1_interface: wl_interface = wl_interface { - name: b"zwp_xwayland_keyboard_grab_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_xwayland_keyboard_grab_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/output b/target/debug/build/wayland-protocols-8fc0dcc75e253179/output deleted file mode 100644 index 7f7137e..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/output +++ /dev/null @@ -1,41 +0,0 @@ -cargo:rerun-if-changed-env=CARGO_FEATURE_CLIENT -cargo:rerun-if-changed-env=CARGO_FEATURE_SERVER -cargo:rerun-if-changed-env=CARGO_FEATURE_UNSTABLE_PROTOCOLS -cargo:rerun-if-changed=./protocols/stable/presentation-time/presentation-time.xml -cargo:rerun-if-changed=./protocols/stable/viewporter/viewporter.xml -cargo:rerun-if-changed=./protocols/stable/xdg-shell/xdg-shell.xml -cargo:rerun-if-changed=./misc/gtk-primary-selection.xml -cargo:rerun-if-changed=./misc/input-method-unstable-v2.xml -cargo:rerun-if-changed=./misc/server-decoration.xml -cargo:rerun-if-changed=./protocols/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/input-method/input-method-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/input-timestamps/input-timestamps-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/primary-selection/primary-selection-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/relative-pointer/relative-pointer-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/tablet/tablet-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/tablet/tablet-unstable-v2.xml -cargo:rerun-if-changed=./protocols/unstable/text-input/text-input-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/text-input/text-input-unstable-v3.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-output/xdg-output-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-shell/xdg-shell-unstable-v5.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-shell/xdg-shell-unstable-v6.xml -cargo:rerun-if-changed=./protocols/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-data-control-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-export-dmabuf-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-foreign-toplevel-management-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-gamma-control-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-input-inhibitor-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-output-management-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-output-power-management-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-screencopy-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-virtual-pointer-unstable-v1.xml diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/root-output b/target/debug/build/wayland-protocols-8fc0dcc75e253179/root-output deleted file mode 100644 index 97fae89..0000000 --- a/target/debug/build/wayland-protocols-8fc0dcc75e253179/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out \ No newline at end of file diff --git a/target/debug/build/wayland-protocols-8fc0dcc75e253179/stderr b/target/debug/build/wayland-protocols-8fc0dcc75e253179/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/wayland-sys-c96f9eaaeb507de6/invoked.timestamp b/target/debug/build/wayland-sys-c96f9eaaeb507de6/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/debug/build/wayland-sys-c96f9eaaeb507de6/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/build/wayland-sys-c96f9eaaeb507de6/output b/target/debug/build/wayland-sys-c96f9eaaeb507de6/output deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/wayland-sys-c96f9eaaeb507de6/root-output b/target/debug/build/wayland-sys-c96f9eaaeb507de6/root-output deleted file mode 100644 index 2967570..0000000 --- a/target/debug/build/wayland-sys-c96f9eaaeb507de6/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-sys-c96f9eaaeb507de6/out \ No newline at end of file diff --git a/target/debug/build/wayland-sys-c96f9eaaeb507de6/stderr b/target/debug/build/wayland-sys-c96f9eaaeb507de6/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build-script-build b/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build-script-build deleted file mode 100755 index 36d544b..0000000 Binary files a/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build-script-build and /dev/null differ diff --git a/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82 b/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82 deleted file mode 100755 index 36d544b..0000000 Binary files a/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82 and /dev/null differ diff --git a/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82.d b/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82.d deleted file mode 100644 index 7fa1195..0000000 --- a/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-sys-ccaf7fb8a3f98f82/build_script_build-ccaf7fb8a3f98f82.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/build.rs: diff --git a/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331 b/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331 deleted file mode 100755 index 70fe055..0000000 Binary files a/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331 and /dev/null differ diff --git a/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331.d b/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331.d deleted file mode 100644 index 810af82..0000000 --- a/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331.d +++ /dev/null @@ -1,6 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331: src/main.rs src/generator.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/Fast_Password_Generator-0075aa48f1aa4331.d: src/main.rs src/generator.rs - -src/main.rs: -src/generator.rs: diff --git a/target/debug/deps/autocfg-fb3f84c0729e48d4.d b/target/debug/deps/autocfg-fb3f84c0729e48d4.d deleted file mode 100644 index 4970461..0000000 --- a/target/debug/deps/autocfg-fb3f84c0729e48d4.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/autocfg-fb3f84c0729e48d4.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libautocfg-fb3f84c0729e48d4.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/autocfg-fb3f84c0729e48d4.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs: diff --git a/target/debug/deps/bitflags-ae5d509a8ae7fba7.d b/target/debug/deps/bitflags-ae5d509a8ae7fba7.d deleted file mode 100644 index b11caa7..0000000 --- a/target/debug/deps/bitflags-ae5d509a8ae7fba7.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/bitflags-ae5d509a8ae7fba7.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/bitflags-ae5d509a8ae7fba7.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs: diff --git a/target/debug/deps/cfg_if-f700ffed35b37b93.d b/target/debug/deps/cfg_if-f700ffed35b37b93.d deleted file mode 100644 index c12c20d..0000000 --- a/target/debug/deps/cfg_if-f700ffed35b37b93.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/cfg_if-f700ffed35b37b93.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libcfg_if-f700ffed35b37b93.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/cfg_if-f700ffed35b37b93.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs: diff --git a/target/debug/deps/copypasta-706a8258db9639c4.d b/target/debug/deps/copypasta-706a8258db9639c4.d deleted file mode 100644 index f18c7b1..0000000 --- a/target/debug/deps/copypasta-706a8258db9639c4.d +++ /dev/null @@ -1,11 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/copypasta-706a8258db9639c4.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libcopypasta-706a8258db9639c4.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/copypasta-706a8258db9639c4.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs: diff --git a/target/debug/deps/dlib-47ea5380e39be9a0.d b/target/debug/deps/dlib-47ea5380e39be9a0.d deleted file mode 100644 index 5cb6a83..0000000 --- a/target/debug/deps/dlib-47ea5380e39be9a0.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/dlib-47ea5380e39be9a0.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libdlib-47ea5380e39be9a0.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/dlib-47ea5380e39be9a0.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs: diff --git a/target/debug/deps/downcast_rs-9f1fa194eeda37a1.d b/target/debug/deps/downcast_rs-9f1fa194eeda37a1.d deleted file mode 100644 index e4fd16a..0000000 --- a/target/debug/deps/downcast_rs-9f1fa194eeda37a1.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/downcast_rs-9f1fa194eeda37a1.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/downcast_rs-9f1fa194eeda37a1.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs: diff --git a/target/debug/deps/gethostname-96d4295935641eec.d b/target/debug/deps/gethostname-96d4295935641eec.d deleted file mode 100644 index 6a10e65..0000000 --- a/target/debug/deps/gethostname-96d4295935641eec.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/gethostname-96d4295935641eec.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libgethostname-96d4295935641eec.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/gethostname-96d4295935641eec.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs: diff --git a/target/debug/deps/getrandom-ea1cb92bd864b7cd.d b/target/debug/deps/getrandom-ea1cb92bd864b7cd.d deleted file mode 100644 index 2f1ae53..0000000 --- a/target/debug/deps/getrandom-ea1cb92bd864b7cd.d +++ /dev/null @@ -1,13 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/getrandom-ea1cb92bd864b7cd.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/getrandom-ea1cb92bd864b7cd.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs: diff --git a/target/debug/deps/lazy_static-55299e210f3a54bc.d b/target/debug/deps/lazy_static-55299e210f3a54bc.d deleted file mode 100644 index 393e781..0000000 --- a/target/debug/deps/lazy_static-55299e210f3a54bc.d +++ /dev/null @@ -1,8 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/lazy_static-55299e210f3a54bc.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/liblazy_static-55299e210f3a54bc.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/lazy_static-55299e210f3a54bc.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs: diff --git a/target/debug/deps/libautocfg-fb3f84c0729e48d4.rlib b/target/debug/deps/libautocfg-fb3f84c0729e48d4.rlib deleted file mode 100644 index ec5059c..0000000 Binary files a/target/debug/deps/libautocfg-fb3f84c0729e48d4.rlib and /dev/null differ diff --git a/target/debug/deps/libautocfg-fb3f84c0729e48d4.rmeta b/target/debug/deps/libautocfg-fb3f84c0729e48d4.rmeta deleted file mode 100644 index 94d9e93..0000000 Binary files a/target/debug/deps/libautocfg-fb3f84c0729e48d4.rmeta and /dev/null differ diff --git a/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rlib b/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rlib deleted file mode 100644 index 41036f7..0000000 Binary files a/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rlib and /dev/null differ diff --git a/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rmeta b/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rmeta deleted file mode 100644 index 909cbca..0000000 Binary files a/target/debug/deps/libbitflags-ae5d509a8ae7fba7.rmeta and /dev/null differ diff --git a/target/debug/deps/libc-41419d257afa2c5f.d b/target/debug/deps/libc-41419d257afa2c5f.d deleted file mode 100644 index 2d829c6..0000000 --- a/target/debug/deps/libc-41419d257afa2c5f.d +++ /dev/null @@ -1,23 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libc-41419d257afa2c5f.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/liblibc-41419d257afa2c5f.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libc-41419d257afa2c5f.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs: diff --git a/target/debug/deps/libcfg_if-f700ffed35b37b93.rlib b/target/debug/deps/libcfg_if-f700ffed35b37b93.rlib deleted file mode 100644 index 8a533ce..0000000 Binary files a/target/debug/deps/libcfg_if-f700ffed35b37b93.rlib and /dev/null differ diff --git a/target/debug/deps/libcfg_if-f700ffed35b37b93.rmeta b/target/debug/deps/libcfg_if-f700ffed35b37b93.rmeta deleted file mode 100644 index 446d039..0000000 Binary files a/target/debug/deps/libcfg_if-f700ffed35b37b93.rmeta and /dev/null differ diff --git a/target/debug/deps/libcopypasta-706a8258db9639c4.rlib b/target/debug/deps/libcopypasta-706a8258db9639c4.rlib deleted file mode 100644 index fa4e8f7..0000000 Binary files a/target/debug/deps/libcopypasta-706a8258db9639c4.rlib and /dev/null differ diff --git a/target/debug/deps/libcopypasta-706a8258db9639c4.rmeta b/target/debug/deps/libcopypasta-706a8258db9639c4.rmeta deleted file mode 100644 index bcd1816..0000000 Binary files a/target/debug/deps/libcopypasta-706a8258db9639c4.rmeta and /dev/null differ diff --git a/target/debug/deps/libdlib-47ea5380e39be9a0.rlib b/target/debug/deps/libdlib-47ea5380e39be9a0.rlib deleted file mode 100644 index 46c9ddc..0000000 Binary files a/target/debug/deps/libdlib-47ea5380e39be9a0.rlib and /dev/null differ diff --git a/target/debug/deps/libdlib-47ea5380e39be9a0.rmeta b/target/debug/deps/libdlib-47ea5380e39be9a0.rmeta deleted file mode 100644 index f162d41..0000000 Binary files a/target/debug/deps/libdlib-47ea5380e39be9a0.rmeta and /dev/null differ diff --git a/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rlib b/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rlib deleted file mode 100644 index 8bdedaa..0000000 Binary files a/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rlib and /dev/null differ diff --git a/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rmeta b/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rmeta deleted file mode 100644 index 8ae0a00..0000000 Binary files a/target/debug/deps/libdowncast_rs-9f1fa194eeda37a1.rmeta and /dev/null differ diff --git a/target/debug/deps/libgethostname-96d4295935641eec.rlib b/target/debug/deps/libgethostname-96d4295935641eec.rlib deleted file mode 100644 index a3dab3e..0000000 Binary files a/target/debug/deps/libgethostname-96d4295935641eec.rlib and /dev/null differ diff --git a/target/debug/deps/libgethostname-96d4295935641eec.rmeta b/target/debug/deps/libgethostname-96d4295935641eec.rmeta deleted file mode 100644 index 72f3564..0000000 Binary files a/target/debug/deps/libgethostname-96d4295935641eec.rmeta and /dev/null differ diff --git a/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rlib b/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rlib deleted file mode 100644 index 97e7e60..0000000 Binary files a/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rlib and /dev/null differ diff --git a/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rmeta b/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rmeta deleted file mode 100644 index 2335f9b..0000000 Binary files a/target/debug/deps/libgetrandom-ea1cb92bd864b7cd.rmeta and /dev/null differ diff --git a/target/debug/deps/liblazy_static-55299e210f3a54bc.rlib b/target/debug/deps/liblazy_static-55299e210f3a54bc.rlib deleted file mode 100644 index 8ef56fe..0000000 Binary files a/target/debug/deps/liblazy_static-55299e210f3a54bc.rlib and /dev/null differ diff --git a/target/debug/deps/liblazy_static-55299e210f3a54bc.rmeta b/target/debug/deps/liblazy_static-55299e210f3a54bc.rmeta deleted file mode 100644 index 2a04c6d..0000000 Binary files a/target/debug/deps/liblazy_static-55299e210f3a54bc.rmeta and /dev/null differ diff --git a/target/debug/deps/liblibc-41419d257afa2c5f.rlib b/target/debug/deps/liblibc-41419d257afa2c5f.rlib deleted file mode 100644 index f46b057..0000000 Binary files a/target/debug/deps/liblibc-41419d257afa2c5f.rlib and /dev/null differ diff --git a/target/debug/deps/liblibc-41419d257afa2c5f.rmeta b/target/debug/deps/liblibc-41419d257afa2c5f.rmeta deleted file mode 100644 index 59997f2..0000000 Binary files a/target/debug/deps/liblibc-41419d257afa2c5f.rmeta and /dev/null differ diff --git a/target/debug/deps/liblibloading-f0f4114b1f2923b7.rlib b/target/debug/deps/liblibloading-f0f4114b1f2923b7.rlib deleted file mode 100644 index c78cb24..0000000 Binary files a/target/debug/deps/liblibloading-f0f4114b1f2923b7.rlib and /dev/null differ diff --git a/target/debug/deps/liblibloading-f0f4114b1f2923b7.rmeta b/target/debug/deps/liblibloading-f0f4114b1f2923b7.rmeta deleted file mode 100644 index 466eeb0..0000000 Binary files a/target/debug/deps/liblibloading-f0f4114b1f2923b7.rmeta and /dev/null differ diff --git a/target/debug/deps/libloading-f0f4114b1f2923b7.d b/target/debug/deps/libloading-f0f4114b1f2923b7.d deleted file mode 100644 index d900bfa..0000000 --- a/target/debug/deps/libloading-f0f4114b1f2923b7.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libloading-f0f4114b1f2923b7.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/liblibloading-f0f4114b1f2923b7.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libloading-f0f4114b1f2923b7.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs: diff --git a/target/debug/deps/liblog-b88fed8af967d155.rlib b/target/debug/deps/liblog-b88fed8af967d155.rlib deleted file mode 100644 index e4c9603..0000000 Binary files a/target/debug/deps/liblog-b88fed8af967d155.rlib and /dev/null differ diff --git a/target/debug/deps/liblog-b88fed8af967d155.rmeta b/target/debug/deps/liblog-b88fed8af967d155.rmeta deleted file mode 100644 index 2e4c9fe..0000000 Binary files a/target/debug/deps/liblog-b88fed8af967d155.rmeta and /dev/null differ diff --git a/target/debug/deps/libmemchr-36496497ef836299.rlib b/target/debug/deps/libmemchr-36496497ef836299.rlib deleted file mode 100644 index 0a813e9..0000000 Binary files a/target/debug/deps/libmemchr-36496497ef836299.rlib and /dev/null differ diff --git a/target/debug/deps/libmemchr-36496497ef836299.rmeta b/target/debug/deps/libmemchr-36496497ef836299.rmeta deleted file mode 100644 index e0dc176..0000000 Binary files a/target/debug/deps/libmemchr-36496497ef836299.rmeta and /dev/null differ diff --git a/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rlib b/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rlib deleted file mode 100644 index 4c2e783..0000000 Binary files a/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rlib and /dev/null differ diff --git a/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rmeta b/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rmeta deleted file mode 100644 index 3316e2a..0000000 Binary files a/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rmeta and /dev/null differ diff --git a/target/debug/deps/libmemoffset-9442d62aae17f314.rlib b/target/debug/deps/libmemoffset-9442d62aae17f314.rlib deleted file mode 100644 index f97dad8..0000000 Binary files a/target/debug/deps/libmemoffset-9442d62aae17f314.rlib and /dev/null differ diff --git a/target/debug/deps/libmemoffset-9442d62aae17f314.rmeta b/target/debug/deps/libmemoffset-9442d62aae17f314.rmeta deleted file mode 100644 index c401617..0000000 Binary files a/target/debug/deps/libmemoffset-9442d62aae17f314.rmeta and /dev/null differ diff --git a/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rlib b/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rlib deleted file mode 100644 index 349fc08..0000000 Binary files a/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rlib and /dev/null differ diff --git a/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rmeta b/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rmeta deleted file mode 100644 index 7dcd55b..0000000 Binary files a/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rmeta and /dev/null differ diff --git a/target/debug/deps/libnix-fea3b2689fd5e18d.rlib b/target/debug/deps/libnix-fea3b2689fd5e18d.rlib deleted file mode 100644 index 49411ed..0000000 Binary files a/target/debug/deps/libnix-fea3b2689fd5e18d.rlib and /dev/null differ diff --git a/target/debug/deps/libnix-fea3b2689fd5e18d.rmeta b/target/debug/deps/libnix-fea3b2689fd5e18d.rmeta deleted file mode 100644 index 37b2fd6..0000000 Binary files a/target/debug/deps/libnix-fea3b2689fd5e18d.rmeta and /dev/null differ diff --git a/target/debug/deps/libnom-73529faed4511e3c.rlib b/target/debug/deps/libnom-73529faed4511e3c.rlib deleted file mode 100644 index 85237fa..0000000 Binary files a/target/debug/deps/libnom-73529faed4511e3c.rlib and /dev/null differ diff --git a/target/debug/deps/libnom-73529faed4511e3c.rmeta b/target/debug/deps/libnom-73529faed4511e3c.rmeta deleted file mode 100644 index 52a28d7..0000000 Binary files a/target/debug/deps/libnom-73529faed4511e3c.rmeta and /dev/null differ diff --git a/target/debug/deps/libonce_cell-09af8552c39183b1.rlib b/target/debug/deps/libonce_cell-09af8552c39183b1.rlib deleted file mode 100644 index ff9f100..0000000 Binary files a/target/debug/deps/libonce_cell-09af8552c39183b1.rlib and /dev/null differ diff --git a/target/debug/deps/libonce_cell-09af8552c39183b1.rmeta b/target/debug/deps/libonce_cell-09af8552c39183b1.rmeta deleted file mode 100644 index 178d219..0000000 Binary files a/target/debug/deps/libonce_cell-09af8552c39183b1.rmeta and /dev/null differ diff --git a/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rlib b/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rlib deleted file mode 100644 index ee393dc..0000000 Binary files a/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rlib and /dev/null differ diff --git a/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rmeta b/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rmeta deleted file mode 100644 index 296d451..0000000 Binary files a/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rmeta and /dev/null differ diff --git a/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rlib b/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rlib deleted file mode 100644 index 5ebc634..0000000 Binary files a/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rlib and /dev/null differ diff --git a/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rmeta b/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rmeta deleted file mode 100644 index f9ff0eb..0000000 Binary files a/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rmeta and /dev/null differ diff --git a/target/debug/deps/libproc_macro2-40dfe76090503f3d.rlib b/target/debug/deps/libproc_macro2-40dfe76090503f3d.rlib deleted file mode 100644 index 0a98a0e..0000000 Binary files a/target/debug/deps/libproc_macro2-40dfe76090503f3d.rlib and /dev/null differ diff --git a/target/debug/deps/libproc_macro2-40dfe76090503f3d.rmeta b/target/debug/deps/libproc_macro2-40dfe76090503f3d.rmeta deleted file mode 100644 index 65ceed9..0000000 Binary files a/target/debug/deps/libproc_macro2-40dfe76090503f3d.rmeta and /dev/null differ diff --git a/target/debug/deps/libquote-c587c0da2c753bd2.rlib b/target/debug/deps/libquote-c587c0da2c753bd2.rlib deleted file mode 100644 index 3025aeb..0000000 Binary files a/target/debug/deps/libquote-c587c0da2c753bd2.rlib and /dev/null differ diff --git a/target/debug/deps/libquote-c587c0da2c753bd2.rmeta b/target/debug/deps/libquote-c587c0da2c753bd2.rmeta deleted file mode 100644 index 14b853b..0000000 Binary files a/target/debug/deps/libquote-c587c0da2c753bd2.rmeta and /dev/null differ diff --git a/target/debug/deps/librand-8193d3c7bb95b526.rlib b/target/debug/deps/librand-8193d3c7bb95b526.rlib deleted file mode 100644 index cfc874a..0000000 Binary files a/target/debug/deps/librand-8193d3c7bb95b526.rlib and /dev/null differ diff --git a/target/debug/deps/librand-8193d3c7bb95b526.rmeta b/target/debug/deps/librand-8193d3c7bb95b526.rmeta deleted file mode 100644 index 9c06af3..0000000 Binary files a/target/debug/deps/librand-8193d3c7bb95b526.rmeta and /dev/null differ diff --git a/target/debug/deps/librand_chacha-8895ce8815ecc39a.rlib b/target/debug/deps/librand_chacha-8895ce8815ecc39a.rlib deleted file mode 100644 index 2a608d7..0000000 Binary files a/target/debug/deps/librand_chacha-8895ce8815ecc39a.rlib and /dev/null differ diff --git a/target/debug/deps/librand_chacha-8895ce8815ecc39a.rmeta b/target/debug/deps/librand_chacha-8895ce8815ecc39a.rmeta deleted file mode 100644 index 6991ad6..0000000 Binary files a/target/debug/deps/librand_chacha-8895ce8815ecc39a.rmeta and /dev/null differ diff --git a/target/debug/deps/librand_core-965b6332d4214efa.rlib b/target/debug/deps/librand_core-965b6332d4214efa.rlib deleted file mode 100644 index da21a43..0000000 Binary files a/target/debug/deps/librand_core-965b6332d4214efa.rlib and /dev/null differ diff --git a/target/debug/deps/librand_core-965b6332d4214efa.rmeta b/target/debug/deps/librand_core-965b6332d4214efa.rmeta deleted file mode 100644 index fb1ab35..0000000 Binary files a/target/debug/deps/librand_core-965b6332d4214efa.rmeta and /dev/null differ diff --git a/target/debug/deps/libscoped_tls-324980b35444534d.rlib b/target/debug/deps/libscoped_tls-324980b35444534d.rlib deleted file mode 100644 index 057d657..0000000 Binary files a/target/debug/deps/libscoped_tls-324980b35444534d.rlib and /dev/null differ diff --git a/target/debug/deps/libscoped_tls-324980b35444534d.rmeta b/target/debug/deps/libscoped_tls-324980b35444534d.rmeta deleted file mode 100644 index 542daec..0000000 Binary files a/target/debug/deps/libscoped_tls-324980b35444534d.rmeta and /dev/null differ diff --git a/target/debug/deps/libsmallvec-1dc57ee99c36d207.rlib b/target/debug/deps/libsmallvec-1dc57ee99c36d207.rlib deleted file mode 100644 index 47eba94..0000000 Binary files a/target/debug/deps/libsmallvec-1dc57ee99c36d207.rlib and /dev/null differ diff --git a/target/debug/deps/libsmallvec-1dc57ee99c36d207.rmeta b/target/debug/deps/libsmallvec-1dc57ee99c36d207.rmeta deleted file mode 100644 index 78b2859..0000000 Binary files a/target/debug/deps/libsmallvec-1dc57ee99c36d207.rmeta and /dev/null differ diff --git a/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rlib b/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rlib deleted file mode 100644 index 307848d..0000000 Binary files a/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rlib and /dev/null differ diff --git a/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rmeta b/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rmeta deleted file mode 100644 index 01e42f8..0000000 Binary files a/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rmeta and /dev/null differ diff --git a/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rlib b/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rlib deleted file mode 100644 index 0989779..0000000 Binary files a/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rlib and /dev/null differ diff --git a/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rmeta b/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rmeta deleted file mode 100644 index e3e0431..0000000 Binary files a/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rmeta and /dev/null differ diff --git a/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rlib b/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rlib deleted file mode 100644 index b3643f0..0000000 Binary files a/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rlib and /dev/null differ diff --git a/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rmeta b/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rmeta deleted file mode 100644 index ce6dbe8..0000000 Binary files a/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rmeta and /dev/null differ diff --git a/target/debug/deps/libwayland_client-48c729b8cd738452.rlib b/target/debug/deps/libwayland_client-48c729b8cd738452.rlib deleted file mode 100644 index 3603abc..0000000 Binary files a/target/debug/deps/libwayland_client-48c729b8cd738452.rlib and /dev/null differ diff --git a/target/debug/deps/libwayland_client-48c729b8cd738452.rmeta b/target/debug/deps/libwayland_client-48c729b8cd738452.rmeta deleted file mode 100644 index cfbc389..0000000 Binary files a/target/debug/deps/libwayland_client-48c729b8cd738452.rmeta and /dev/null differ diff --git a/target/debug/deps/libwayland_commons-385e3e89bf7667db.rlib b/target/debug/deps/libwayland_commons-385e3e89bf7667db.rlib deleted file mode 100644 index d84fc1a..0000000 Binary files a/target/debug/deps/libwayland_commons-385e3e89bf7667db.rlib and /dev/null differ diff --git a/target/debug/deps/libwayland_commons-385e3e89bf7667db.rmeta b/target/debug/deps/libwayland_commons-385e3e89bf7667db.rmeta deleted file mode 100644 index 4d6e929..0000000 Binary files a/target/debug/deps/libwayland_commons-385e3e89bf7667db.rmeta and /dev/null differ diff --git a/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rlib b/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rlib deleted file mode 100644 index 45c1449..0000000 Binary files a/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rlib and /dev/null differ diff --git a/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rmeta b/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rmeta deleted file mode 100644 index 129626c..0000000 Binary files a/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rmeta and /dev/null differ diff --git a/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rlib b/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rlib deleted file mode 100644 index 5e218c4..0000000 Binary files a/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rlib and /dev/null differ diff --git a/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rmeta b/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rmeta deleted file mode 100644 index c250281..0000000 Binary files a/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rmeta and /dev/null differ diff --git a/target/debug/deps/libwayland_scanner-61d78019118a69e6.rlib b/target/debug/deps/libwayland_scanner-61d78019118a69e6.rlib deleted file mode 100644 index 05cd0db..0000000 Binary files a/target/debug/deps/libwayland_scanner-61d78019118a69e6.rlib and /dev/null differ diff --git a/target/debug/deps/libwayland_scanner-61d78019118a69e6.rmeta b/target/debug/deps/libwayland_scanner-61d78019118a69e6.rmeta deleted file mode 100644 index 05fdaf1..0000000 Binary files a/target/debug/deps/libwayland_scanner-61d78019118a69e6.rmeta and /dev/null differ diff --git a/target/debug/deps/libwayland_sys-529ff8af399e8d39.rlib b/target/debug/deps/libwayland_sys-529ff8af399e8d39.rlib deleted file mode 100644 index 0f5f9d0..0000000 Binary files a/target/debug/deps/libwayland_sys-529ff8af399e8d39.rlib and /dev/null differ diff --git a/target/debug/deps/libwayland_sys-529ff8af399e8d39.rmeta b/target/debug/deps/libwayland_sys-529ff8af399e8d39.rmeta deleted file mode 100644 index 190db96..0000000 Binary files a/target/debug/deps/libwayland_sys-529ff8af399e8d39.rmeta and /dev/null differ diff --git a/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rlib b/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rlib deleted file mode 100644 index 83b99ba..0000000 Binary files a/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rlib and /dev/null differ diff --git a/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rmeta b/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rmeta deleted file mode 100644 index 3b4dd84..0000000 Binary files a/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rmeta and /dev/null differ diff --git a/target/debug/deps/libx11rb-c2f18665ca686838.rlib b/target/debug/deps/libx11rb-c2f18665ca686838.rlib deleted file mode 100644 index 94338e3..0000000 Binary files a/target/debug/deps/libx11rb-c2f18665ca686838.rlib and /dev/null differ diff --git a/target/debug/deps/libx11rb-c2f18665ca686838.rmeta b/target/debug/deps/libx11rb-c2f18665ca686838.rmeta deleted file mode 100644 index 822e422..0000000 Binary files a/target/debug/deps/libx11rb-c2f18665ca686838.rmeta and /dev/null differ diff --git a/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rlib b/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rlib deleted file mode 100644 index 4916865..0000000 Binary files a/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rlib and /dev/null differ diff --git a/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rmeta b/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rmeta deleted file mode 100644 index 462a001..0000000 Binary files a/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rmeta and /dev/null differ diff --git a/target/debug/deps/libxcursor-35dfd8d490d7615d.rlib b/target/debug/deps/libxcursor-35dfd8d490d7615d.rlib deleted file mode 100644 index 2a8ba45..0000000 Binary files a/target/debug/deps/libxcursor-35dfd8d490d7615d.rlib and /dev/null differ diff --git a/target/debug/deps/libxcursor-35dfd8d490d7615d.rmeta b/target/debug/deps/libxcursor-35dfd8d490d7615d.rmeta deleted file mode 100644 index aacbfc3..0000000 Binary files a/target/debug/deps/libxcursor-35dfd8d490d7615d.rmeta and /dev/null differ diff --git a/target/debug/deps/libxml-cf142ede2d6db221.rlib b/target/debug/deps/libxml-cf142ede2d6db221.rlib deleted file mode 100644 index b36b7b1..0000000 Binary files a/target/debug/deps/libxml-cf142ede2d6db221.rlib and /dev/null differ diff --git a/target/debug/deps/libxml-cf142ede2d6db221.rmeta b/target/debug/deps/libxml-cf142ede2d6db221.rmeta deleted file mode 100644 index 9165a34..0000000 Binary files a/target/debug/deps/libxml-cf142ede2d6db221.rmeta and /dev/null differ diff --git a/target/debug/deps/log-b88fed8af967d155.d b/target/debug/deps/log-b88fed8af967d155.d deleted file mode 100644 index 73c885f..0000000 --- a/target/debug/deps/log-b88fed8af967d155.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/log-b88fed8af967d155.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/liblog-b88fed8af967d155.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/log-b88fed8af967d155.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs: diff --git a/target/debug/deps/memchr-36496497ef836299.d b/target/debug/deps/memchr-36496497ef836299.d deleted file mode 100644 index 0a3ac0e..0000000 --- a/target/debug/deps/memchr-36496497ef836299.d +++ /dev/null @@ -1,32 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/memchr-36496497ef836299.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libmemchr-36496497ef836299.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/memchr-36496497ef836299.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs: diff --git a/target/debug/deps/memmap2-2a672c8aa4fc2d1c.d b/target/debug/deps/memmap2-2a672c8aa4fc2d1c.d deleted file mode 100644 index 21d431c..0000000 --- a/target/debug/deps/memmap2-2a672c8aa4fc2d1c.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/memmap2-2a672c8aa4fc2d1c.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libmemmap2-2a672c8aa4fc2d1c.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/memmap2-2a672c8aa4fc2d1c.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs: diff --git a/target/debug/deps/memoffset-9442d62aae17f314.d b/target/debug/deps/memoffset-9442d62aae17f314.d deleted file mode 100644 index 5527de2..0000000 --- a/target/debug/deps/memoffset-9442d62aae17f314.d +++ /dev/null @@ -1,10 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/memoffset-9442d62aae17f314.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libmemoffset-9442d62aae17f314.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/memoffset-9442d62aae17f314.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs: diff --git a/target/debug/deps/minimal_lexical-48e2719ccc58bc2a.d b/target/debug/deps/minimal_lexical-48e2719ccc58bc2a.d deleted file mode 100644 index a663c5d..0000000 --- a/target/debug/deps/minimal_lexical-48e2719ccc58bc2a.d +++ /dev/null @@ -1,25 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/minimal_lexical-48e2719ccc58bc2a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libminimal_lexical-48e2719ccc58bc2a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/minimal_lexical-48e2719ccc58bc2a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs: diff --git a/target/debug/deps/nix-fea3b2689fd5e18d.d b/target/debug/deps/nix-fea3b2689fd5e18d.d deleted file mode 100644 index 20643fc..0000000 --- a/target/debug/deps/nix-fea3b2689fd5e18d.d +++ /dev/null @@ -1,60 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/nix-fea3b2689fd5e18d.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libnix-fea3b2689fd5e18d.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/nix-fea3b2689fd5e18d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs: diff --git a/target/debug/deps/nom-73529faed4511e3c.d b/target/debug/deps/nom-73529faed4511e3c.d deleted file mode 100644 index af543ad..0000000 --- a/target/debug/deps/nom-73529faed4511e3c.d +++ /dev/null @@ -1,28 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/nom-73529faed4511e3c.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libnom-73529faed4511e3c.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/nom-73529faed4511e3c.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs: diff --git a/target/debug/deps/once_cell-09af8552c39183b1.d b/target/debug/deps/once_cell-09af8552c39183b1.d deleted file mode 100644 index c8e2bc8..0000000 --- a/target/debug/deps/once_cell-09af8552c39183b1.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/once_cell-09af8552c39183b1.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libonce_cell-09af8552c39183b1.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/once_cell-09af8552c39183b1.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs: diff --git a/target/debug/deps/pkg_config-1efb35da4c6a9fef.d b/target/debug/deps/pkg_config-1efb35da4c6a9fef.d deleted file mode 100644 index c0e110e..0000000 --- a/target/debug/deps/pkg_config-1efb35da4c6a9fef.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/pkg_config-1efb35da4c6a9fef.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libpkg_config-1efb35da4c6a9fef.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/pkg_config-1efb35da4c6a9fef.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs: diff --git a/target/debug/deps/ppv_lite86-ef4d3fc1d9e833d5.d b/target/debug/deps/ppv_lite86-ef4d3fc1d9e833d5.d deleted file mode 100644 index c5af1e3..0000000 --- a/target/debug/deps/ppv_lite86-ef4d3fc1d9e833d5.d +++ /dev/null @@ -1,11 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/ppv_lite86-ef4d3fc1d9e833d5.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libppv_lite86-ef4d3fc1d9e833d5.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/ppv_lite86-ef4d3fc1d9e833d5.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs: diff --git a/target/debug/deps/proc_macro2-40dfe76090503f3d.d b/target/debug/deps/proc_macro2-40dfe76090503f3d.d deleted file mode 100644 index 33d6eff..0000000 --- a/target/debug/deps/proc_macro2-40dfe76090503f3d.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/proc_macro2-40dfe76090503f3d.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libproc_macro2-40dfe76090503f3d.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/proc_macro2-40dfe76090503f3d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs: diff --git a/target/debug/deps/quote-c587c0da2c753bd2.d b/target/debug/deps/quote-c587c0da2c753bd2.d deleted file mode 100644 index e53e619..0000000 --- a/target/debug/deps/quote-c587c0da2c753bd2.d +++ /dev/null @@ -1,13 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/quote-c587c0da2c753bd2.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libquote-c587c0da2c753bd2.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/quote-c587c0da2c753bd2.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs: diff --git a/target/debug/deps/rand-8193d3c7bb95b526.d b/target/debug/deps/rand-8193d3c7bb95b526.d deleted file mode 100644 index 41d7e25..0000000 --- a/target/debug/deps/rand-8193d3c7bb95b526.d +++ /dev/null @@ -1,29 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/rand-8193d3c7bb95b526.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/librand-8193d3c7bb95b526.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/rand-8193d3c7bb95b526.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs: diff --git a/target/debug/deps/rand_chacha-8895ce8815ecc39a.d b/target/debug/deps/rand_chacha-8895ce8815ecc39a.d deleted file mode 100644 index b6ffd4c..0000000 --- a/target/debug/deps/rand_chacha-8895ce8815ecc39a.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/rand_chacha-8895ce8815ecc39a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/librand_chacha-8895ce8815ecc39a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/rand_chacha-8895ce8815ecc39a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs: diff --git a/target/debug/deps/rand_core-965b6332d4214efa.d b/target/debug/deps/rand_core-965b6332d4214efa.d deleted file mode 100644 index 3d08cf6..0000000 --- a/target/debug/deps/rand_core-965b6332d4214efa.d +++ /dev/null @@ -1,12 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/rand_core-965b6332d4214efa.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/librand_core-965b6332d4214efa.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/rand_core-965b6332d4214efa.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs: diff --git a/target/debug/deps/scoped_tls-324980b35444534d.d b/target/debug/deps/scoped_tls-324980b35444534d.d deleted file mode 100644 index b1ad09d..0000000 --- a/target/debug/deps/scoped_tls-324980b35444534d.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/scoped_tls-324980b35444534d.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libscoped_tls-324980b35444534d.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/scoped_tls-324980b35444534d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs: diff --git a/target/debug/deps/smallvec-1dc57ee99c36d207.d b/target/debug/deps/smallvec-1dc57ee99c36d207.d deleted file mode 100644 index 98d9192..0000000 --- a/target/debug/deps/smallvec-1dc57ee99c36d207.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/smallvec-1dc57ee99c36d207.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libsmallvec-1dc57ee99c36d207.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/smallvec-1dc57ee99c36d207.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs: diff --git a/target/debug/deps/smithay_client_toolkit-68152473652351e7.d b/target/debug/deps/smithay_client_toolkit-68152473652351e7.d deleted file mode 100644 index 864c418..0000000 --- a/target/debug/deps/smithay_client_toolkit-68152473652351e7.d +++ /dev/null @@ -1,34 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/smithay_client_toolkit-68152473652351e7.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libsmithay_client_toolkit-68152473652351e7.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/smithay_client_toolkit-68152473652351e7.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs: diff --git a/target/debug/deps/smithay_clipboard-059ff13c7cdf0333.d b/target/debug/deps/smithay_clipboard-059ff13c7cdf0333.d deleted file mode 100644 index 40b8bec..0000000 --- a/target/debug/deps/smithay_clipboard-059ff13c7cdf0333.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/smithay_clipboard-059ff13c7cdf0333.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libsmithay_clipboard-059ff13c7cdf0333.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/smithay_clipboard-059ff13c7cdf0333.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs: diff --git a/target/debug/deps/unicode_ident-4b9d497d4b60b3e8.d b/target/debug/deps/unicode_ident-4b9d497d4b60b3e8.d deleted file mode 100644 index 5738b3e..0000000 --- a/target/debug/deps/unicode_ident-4b9d497d4b60b3e8.d +++ /dev/null @@ -1,8 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/unicode_ident-4b9d497d4b60b3e8.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libunicode_ident-4b9d497d4b60b3e8.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/unicode_ident-4b9d497d4b60b3e8.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs: diff --git a/target/debug/deps/wayland_client-48c729b8cd738452.d b/target/debug/deps/wayland_client-48c729b8cd738452.d deleted file mode 100644 index a81b1ff..0000000 --- a/target/debug/deps/wayland_client-48c729b8cd738452.d +++ /dev/null @@ -1,18 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_client-48c729b8cd738452.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libwayland_client-48c729b8cd738452.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_client-48c729b8cd738452.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-b35bc2c9b68d81d5/out/wayland_api.rs: - -# env-dep:OUT_DIR=/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-client-b35bc2c9b68d81d5/out diff --git a/target/debug/deps/wayland_commons-385e3e89bf7667db.d b/target/debug/deps/wayland_commons-385e3e89bf7667db.d deleted file mode 100644 index 2f98911..0000000 --- a/target/debug/deps/wayland_commons-385e3e89bf7667db.d +++ /dev/null @@ -1,13 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_commons-385e3e89bf7667db.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libwayland_commons-385e3e89bf7667db.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_commons-385e3e89bf7667db.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs: diff --git a/target/debug/deps/wayland_cursor-2012058a3b1c81b4.d b/target/debug/deps/wayland_cursor-2012058a3b1c81b4.d deleted file mode 100644 index 0bc72ef..0000000 --- a/target/debug/deps/wayland_cursor-2012058a3b1c81b4.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_cursor-2012058a3b1c81b4.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libwayland_cursor-2012058a3b1c81b4.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_cursor-2012058a3b1c81b4.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs: diff --git a/target/debug/deps/wayland_protocols-63b7cd3dbe7a95a9.d b/target/debug/deps/wayland_protocols-63b7cd3dbe7a95a9.d deleted file mode 100644 index 65be770..0000000 --- a/target/debug/deps/wayland_protocols-63b7cd3dbe7a95a9.d +++ /dev/null @@ -1,52 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_protocols-63b7cd3dbe7a95a9.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libwayland_protocols-63b7cd3dbe7a95a9.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_protocols-63b7cd3dbe7a95a9.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/fullscreen-shell-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/idle-inhibit-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-timestamps-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/keyboard-shortcuts-inhibit-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-dmabuf-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/linux-explicit-synchronization-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-constraints-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/pointer-gestures-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/primary-selection-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/relative-pointer-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/tablet-v2_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/text-input-v3_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-decoration-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-foreign-v2_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-output-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v5_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell-v6_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xwayland-keyboard-grab-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/gtk-primary-selection_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/input-method-unstable-v2_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/server-decoration_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-data-control-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-export-dmabuf-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-foreign-toplevel-management-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-gamma-control-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-input-inhibitor-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-layer-shell-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-management-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-output-power-management-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-screencopy-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/wlr-virtual-pointer-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/presentation-time_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/xdg-shell_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out/viewporter_client_api.rs: - -# env-dep:OUT_DIR=/home/mohuva/Documents/Fast_Password_Generator/target/debug/build/wayland-protocols-8fc0dcc75e253179/out diff --git a/target/debug/deps/wayland_scanner-61d78019118a69e6.d b/target/debug/deps/wayland_scanner-61d78019118a69e6.d deleted file mode 100644 index 711fd14..0000000 --- a/target/debug/deps/wayland_scanner-61d78019118a69e6.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_scanner-61d78019118a69e6.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libwayland_scanner-61d78019118a69e6.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_scanner-61d78019118a69e6.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs: diff --git a/target/debug/deps/wayland_sys-529ff8af399e8d39.d b/target/debug/deps/wayland_sys-529ff8af399e8d39.d deleted file mode 100644 index b2bba20..0000000 --- a/target/debug/deps/wayland_sys-529ff8af399e8d39.d +++ /dev/null @@ -1,10 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_sys-529ff8af399e8d39.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libwayland_sys-529ff8af399e8d39.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/wayland_sys-529ff8af399e8d39.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs: diff --git a/target/debug/deps/x11_clipboard-71c1e68ba049cd47.d b/target/debug/deps/x11_clipboard-71c1e68ba049cd47.d deleted file mode 100644 index 725d409..0000000 --- a/target/debug/deps/x11_clipboard-71c1e68ba049cd47.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/x11_clipboard-71c1e68ba049cd47.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libx11_clipboard-71c1e68ba049cd47.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/x11_clipboard-71c1e68ba049cd47.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs: diff --git a/target/debug/deps/x11rb-c2f18665ca686838.d b/target/debug/deps/x11rb-c2f18665ca686838.d deleted file mode 100644 index 86958a0..0000000 --- a/target/debug/deps/x11rb-c2f18665ca686838.d +++ /dev/null @@ -1,28 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/x11rb-c2f18665ca686838.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libx11rb-c2f18665ca686838.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/x11rb-c2f18665ca686838.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs: diff --git a/target/debug/deps/x11rb_protocol-36b5dd37b21ef277.d b/target/debug/deps/x11rb_protocol-36b5dd37b21ef277.d deleted file mode 100644 index 8b8c26f..0000000 --- a/target/debug/deps/x11rb_protocol-36b5dd37b21ef277.d +++ /dev/null @@ -1,26 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/x11rb_protocol-36b5dd37b21ef277.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libx11rb_protocol-36b5dd37b21ef277.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/x11rb_protocol-36b5dd37b21ef277.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs: diff --git a/target/debug/deps/xcursor-35dfd8d490d7615d.d b/target/debug/deps/xcursor-35dfd8d490d7615d.d deleted file mode 100644 index 05b6437..0000000 --- a/target/debug/deps/xcursor-35dfd8d490d7615d.d +++ /dev/null @@ -1,8 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/xcursor-35dfd8d490d7615d.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libxcursor-35dfd8d490d7615d.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/xcursor-35dfd8d490d7615d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs: diff --git a/target/debug/deps/xml-cf142ede2d6db221.d b/target/debug/deps/xml-cf142ede2d6db221.d deleted file mode 100644 index 286063f..0000000 --- a/target/debug/deps/xml-cf142ede2d6db221.d +++ /dev/null @@ -1,34 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/xml-cf142ede2d6db221.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/libxml-cf142ede2d6db221.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/debug/deps/xml-cf142ede2d6db221.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs: diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/12mcxzi9bdtw44y7.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/12mcxzi9bdtw44y7.o deleted file mode 100644 index 00f56b4..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/12mcxzi9bdtw44y7.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/14pbdy9ab5ao7ini.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/14pbdy9ab5ao7ini.o deleted file mode 100644 index 9a4cbba..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/14pbdy9ab5ao7ini.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/14vo91nvd0o6ym2h.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/14vo91nvd0o6ym2h.o deleted file mode 100644 index f1865fb..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/14vo91nvd0o6ym2h.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1cq3nltaxtp4q263.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1cq3nltaxtp4q263.o deleted file mode 100644 index 4f9cd4d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1cq3nltaxtp4q263.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1idqtbc1nhlsvgmt.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1idqtbc1nhlsvgmt.o deleted file mode 100644 index 9ac20ad..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1idqtbc1nhlsvgmt.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1iv620f4fs3qgjl4.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1iv620f4fs3qgjl4.o deleted file mode 100644 index 394e2c6..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1iv620f4fs3qgjl4.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1ldcwo8zjdvh20qv.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1ldcwo8zjdvh20qv.o deleted file mode 100644 index d5d814e..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1ldcwo8zjdvh20qv.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1nb33smvm0ckoq3w.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1nb33smvm0ckoq3w.o deleted file mode 100644 index 26d32b5..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1nb33smvm0ckoq3w.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1oxv0a5tsqlpeaeq.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1oxv0a5tsqlpeaeq.o deleted file mode 100644 index 847a206..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1oxv0a5tsqlpeaeq.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1un9qa89xrgwvwps.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1un9qa89xrgwvwps.o deleted file mode 100644 index ff1339d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1un9qa89xrgwvwps.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1x1bz3sc3asmae6x.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1x1bz3sc3asmae6x.o deleted file mode 100644 index 265ab72..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/1x1bz3sc3asmae6x.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/244aq93vcdkpg9gc.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/244aq93vcdkpg9gc.o deleted file mode 100644 index b10ad83..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/244aq93vcdkpg9gc.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/260rbob01qvqrh33.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/260rbob01qvqrh33.o deleted file mode 100644 index a00bb7b..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/260rbob01qvqrh33.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/29wu67vkkplbfcqn.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/29wu67vkkplbfcqn.o deleted file mode 100644 index e75cda8..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/29wu67vkkplbfcqn.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2m6r4yttcgx92mwe.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2m6r4yttcgx92mwe.o deleted file mode 100644 index 7e95ca4..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2m6r4yttcgx92mwe.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2olk5krcpt553fvu.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2olk5krcpt553fvu.o deleted file mode 100644 index 9425c4a..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2olk5krcpt553fvu.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2qqh9d27yv6nbsvj.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2qqh9d27yv6nbsvj.o deleted file mode 100644 index 1bb6737..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2qqh9d27yv6nbsvj.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2r22z9ofn47oc4j1.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2r22z9ofn47oc4j1.o deleted file mode 100644 index e1b9e27..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2r22z9ofn47oc4j1.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2sccdbqbrudhvj77.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2sccdbqbrudhvj77.o deleted file mode 100644 index bb223f9..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2sccdbqbrudhvj77.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2t3s7crgpw662zj1.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2t3s7crgpw662zj1.o deleted file mode 100644 index 45b1ecf..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2t3s7crgpw662zj1.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2u3bo8l2wtoxgcwp.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2u3bo8l2wtoxgcwp.o deleted file mode 100644 index e6d3852..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2u3bo8l2wtoxgcwp.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2usct1gkpxkatia0.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2usct1gkpxkatia0.o deleted file mode 100644 index b8a55cf..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2usct1gkpxkatia0.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2w3f9pdgeb85csts.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2w3f9pdgeb85csts.o deleted file mode 100644 index 41a15ae..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2w3f9pdgeb85csts.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2yzu84d674hvhjux.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2yzu84d674hvhjux.o deleted file mode 100644 index f33ba5f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/2yzu84d674hvhjux.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3487wbnha2k54qf8.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3487wbnha2k54qf8.o deleted file mode 100644 index 6f8062a..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3487wbnha2k54qf8.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/379vhv4p6f2ea4ph.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/379vhv4p6f2ea4ph.o deleted file mode 100644 index 34e28d1..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/379vhv4p6f2ea4ph.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3ax4emdo87plvjie.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3ax4emdo87plvjie.o deleted file mode 100644 index 892a5eb..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3ax4emdo87plvjie.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3bygil9u0ptfttzs.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3bygil9u0ptfttzs.o deleted file mode 100644 index 05dd76f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3bygil9u0ptfttzs.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3d752cr1lki7jyde.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3d752cr1lki7jyde.o deleted file mode 100644 index 2c21eae..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3d752cr1lki7jyde.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3ik79htfijyo9463.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3ik79htfijyo9463.o deleted file mode 100644 index e96d78f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3ik79htfijyo9463.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3j6cxsywph2oikr1.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3j6cxsywph2oikr1.o deleted file mode 100644 index 9278014..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3j6cxsywph2oikr1.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3mddj0hgno5d2la4.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3mddj0hgno5d2la4.o deleted file mode 100644 index cab138f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3mddj0hgno5d2la4.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3rt43w2gi6442uxz.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3rt43w2gi6442uxz.o deleted file mode 100644 index a96e0cf..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3rt43w2gi6442uxz.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3t4yazd33nv4lwx8.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3t4yazd33nv4lwx8.o deleted file mode 100644 index c427eba..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3t4yazd33nv4lwx8.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3u2dw68l16azugiy.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3u2dw68l16azugiy.o deleted file mode 100644 index 81b7ee3..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3u2dw68l16azugiy.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3vud59z3ig2wlhlt.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3vud59z3ig2wlhlt.o deleted file mode 100644 index b2a43bc..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/3vud59z3ig2wlhlt.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/40dzkj3qxkd7am4i.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/40dzkj3qxkd7am4i.o deleted file mode 100644 index 80a726c..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/40dzkj3qxkd7am4i.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/41kxn2xmrnajvgsp.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/41kxn2xmrnajvgsp.o deleted file mode 100644 index 99483bf..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/41kxn2xmrnajvgsp.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4d01pj6cuf66hghy.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4d01pj6cuf66hghy.o deleted file mode 100644 index 827345e..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4d01pj6cuf66hghy.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4fifazekbcquawrp.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4fifazekbcquawrp.o deleted file mode 100644 index 2eac40e..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4fifazekbcquawrp.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4h63axb3t25okax0.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4h63axb3t25okax0.o deleted file mode 100644 index fbbb5b5..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4h63axb3t25okax0.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4kknbw6mj3akt5ak.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4kknbw6mj3akt5ak.o deleted file mode 100644 index 274360d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4kknbw6mj3akt5ak.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4ohdsp2nfuml6e9c.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4ohdsp2nfuml6e9c.o deleted file mode 100644 index 6e7d7c1..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4ohdsp2nfuml6e9c.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4re4zr61vr61s06t.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4re4zr61vr61s06t.o deleted file mode 100644 index 4e2ca2b..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4re4zr61vr61s06t.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4uutrwq2pz73sujn.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4uutrwq2pz73sujn.o deleted file mode 100644 index b65d2fa..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4uutrwq2pz73sujn.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4wt5xftbxzrpvvi2.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4wt5xftbxzrpvvi2.o deleted file mode 100644 index f635afa..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/4wt5xftbxzrpvvi2.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/52dlmtsug1n7oexd.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/52dlmtsug1n7oexd.o deleted file mode 100644 index 3d45c40..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/52dlmtsug1n7oexd.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5dytxdiodw44e1gd.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5dytxdiodw44e1gd.o deleted file mode 100644 index f12b235..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5dytxdiodw44e1gd.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5g9il1a2qmwf2zq9.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5g9il1a2qmwf2zq9.o deleted file mode 100644 index 7149801..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5g9il1a2qmwf2zq9.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5w56i4gits247kw.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5w56i4gits247kw.o deleted file mode 100644 index 989321d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/5w56i4gits247kw.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/7401e2fyftodwgf.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/7401e2fyftodwgf.o deleted file mode 100644 index fa3f4e4..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/7401e2fyftodwgf.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/a30zo1gm7xjcv2i.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/a30zo1gm7xjcv2i.o deleted file mode 100644 index 41e171a..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/a30zo1gm7xjcv2i.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/caz2r4eb0zjr6f3.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/caz2r4eb0zjr6f3.o deleted file mode 100644 index aebeee7..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/caz2r4eb0zjr6f3.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/dep-graph.bin b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/dep-graph.bin deleted file mode 100644 index bf0b3ff..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/fydypnhz4qynni8.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/fydypnhz4qynni8.o deleted file mode 100644 index 5b2ed6f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/fydypnhz4qynni8.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/hsjb6suxvji1bp1.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/hsjb6suxvji1bp1.o deleted file mode 100644 index 4662e94..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/hsjb6suxvji1bp1.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/kzjy6dldkn9fndf.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/kzjy6dldkn9fndf.o deleted file mode 100644 index 3b4db94..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/kzjy6dldkn9fndf.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/mju6knswjiunei4.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/mju6knswjiunei4.o deleted file mode 100644 index bdab091..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/mju6knswjiunei4.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/query-cache.bin b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/query-cache.bin deleted file mode 100644 index be3c927..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/query-cache.bin and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/ukwg6drm6wsx75r.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/ukwg6drm6wsx75r.o deleted file mode 100644 index 5c75f09..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/ukwg6drm6wsx75r.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/uzj7ovjywjkrfqn.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/uzj7ovjywjkrfqn.o deleted file mode 100644 index fb5d6ec..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/uzj7ovjywjkrfqn.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/w2tqoi0bqommzvu.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/w2tqoi0bqommzvu.o deleted file mode 100644 index 90e3e0c..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/w2tqoi0bqommzvu.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/work-products.bin b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/work-products.bin deleted file mode 100644 index 84ba4af..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/work-products.bin and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/x7lwjq5dzrqkey0.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/x7lwjq5dzrqkey0.o deleted file mode 100644 index 11f273f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/x7lwjq5dzrqkey0.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/xe0c6qeb4r8poxb.o b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/xe0c6qeb4r8poxb.o deleted file mode 100644 index 8b51b8f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v-69ipcebris7084jmw8mhp4prc/xe0c6qeb4r8poxb.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v.lock b/target/debug/incremental/Fast_Password_Generator-1ck72qpwnuumb/s-gn6n9bq5zz-1ywf54v.lock deleted file mode 100644 index e69de29..0000000 diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1bthnsyzv63vsbyj.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1bthnsyzv63vsbyj.o deleted file mode 100644 index bc6f74e..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1bthnsyzv63vsbyj.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1gtca77ci12wkzap.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1gtca77ci12wkzap.o deleted file mode 100644 index 246168f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1gtca77ci12wkzap.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1ifff4sd1jtljm64.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1ifff4sd1jtljm64.o deleted file mode 100644 index 8fb923d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1ifff4sd1jtljm64.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1m8s0yatzvhcyioh.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1m8s0yatzvhcyioh.o deleted file mode 100644 index bc400a7..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1m8s0yatzvhcyioh.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1sfips3qlsgyc2r0.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1sfips3qlsgyc2r0.o deleted file mode 100644 index e91a7db..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1sfips3qlsgyc2r0.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1u57ejlvgsa48i2c.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1u57ejlvgsa48i2c.o deleted file mode 100644 index 13bbcdb..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/1u57ejlvgsa48i2c.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/21l1di17m7ez9cy4.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/21l1di17m7ez9cy4.o deleted file mode 100644 index 1c119fb..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/21l1di17m7ez9cy4.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2420z7xz1mxvikie.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2420z7xz1mxvikie.o deleted file mode 100644 index 3d8aa8b..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2420z7xz1mxvikie.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2axbl9mlup93u127.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2axbl9mlup93u127.o deleted file mode 100644 index af3a3b2..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2axbl9mlup93u127.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2bqe8yageq35mx5w.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2bqe8yageq35mx5w.o deleted file mode 100644 index 3a6589c..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2bqe8yageq35mx5w.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2dbjvy7jiqpw1430.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2dbjvy7jiqpw1430.o deleted file mode 100644 index 8c47e6c..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2dbjvy7jiqpw1430.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2e8anf65xpw3513c.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2e8anf65xpw3513c.o deleted file mode 100644 index f5abd54..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2e8anf65xpw3513c.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2ftgtq3791wa4t86.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2ftgtq3791wa4t86.o deleted file mode 100644 index fed0cbc..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2ftgtq3791wa4t86.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2ijakb7dc5ezzwk1.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2ijakb7dc5ezzwk1.o deleted file mode 100644 index 4c005d8..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2ijakb7dc5ezzwk1.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2u03e50k8062u1qg.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2u03e50k8062u1qg.o deleted file mode 100644 index 148c492..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/2u03e50k8062u1qg.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/305ehdxtvay3nkss.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/305ehdxtvay3nkss.o deleted file mode 100644 index d149a79..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/305ehdxtvay3nkss.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3a1bg4h9fqcro7fe.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3a1bg4h9fqcro7fe.o deleted file mode 100644 index 4b8b46c..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3a1bg4h9fqcro7fe.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3g9h4mwafvmcmc27.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3g9h4mwafvmcmc27.o deleted file mode 100644 index a136f0e..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3g9h4mwafvmcmc27.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3modh9lo5o32t4x6.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3modh9lo5o32t4x6.o deleted file mode 100644 index c166719..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3modh9lo5o32t4x6.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3mxpeqe9hn2y5sa0.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3mxpeqe9hn2y5sa0.o deleted file mode 100644 index 359bf1d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3mxpeqe9hn2y5sa0.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3sokszp84pj3w676.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3sokszp84pj3w676.o deleted file mode 100644 index bd5dc16..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/3sokszp84pj3w676.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/457brzhb04rp2mdd.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/457brzhb04rp2mdd.o deleted file mode 100644 index f976426..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/457brzhb04rp2mdd.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/45liaykwdc9evxtm.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/45liaykwdc9evxtm.o deleted file mode 100644 index cc34dbc..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/45liaykwdc9evxtm.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/48r6njzwyypd82mo.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/48r6njzwyypd82mo.o deleted file mode 100644 index 48ed651..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/48r6njzwyypd82mo.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4g42bidrb1j598ee.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4g42bidrb1j598ee.o deleted file mode 100644 index fb5ec07..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4g42bidrb1j598ee.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4gbp83gd70y4sh13.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4gbp83gd70y4sh13.o deleted file mode 100644 index 0a6103d..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4gbp83gd70y4sh13.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4isu94ww1e62zrue.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4isu94ww1e62zrue.o deleted file mode 100644 index 817f2b2..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4isu94ww1e62zrue.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4rmtgd7gr01zp4cx.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4rmtgd7gr01zp4cx.o deleted file mode 100644 index 03f9582..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4rmtgd7gr01zp4cx.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4wa4v0e371lpfhl0.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4wa4v0e371lpfhl0.o deleted file mode 100644 index 677c4fa..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/4wa4v0e371lpfhl0.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/533t6dubaiyclwuy.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/533t6dubaiyclwuy.o deleted file mode 100644 index c26df0b..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/533t6dubaiyclwuy.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/9r4uwwjhimr80oz.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/9r4uwwjhimr80oz.o deleted file mode 100644 index adb62ff..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/9r4uwwjhimr80oz.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/dep-graph.bin b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/dep-graph.bin deleted file mode 100644 index b702a9b..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/dw6q3ag5g68no3u.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/dw6q3ag5g68no3u.o deleted file mode 100644 index 30d0443..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/dw6q3ag5g68no3u.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/e5ceuwa15u65rb4.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/e5ceuwa15u65rb4.o deleted file mode 100644 index f368c41..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/e5ceuwa15u65rb4.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/n4xg0vjwyhjwjk3.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/n4xg0vjwyhjwjk3.o deleted file mode 100644 index 56e6006..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/n4xg0vjwyhjwjk3.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/query-cache.bin b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/query-cache.bin deleted file mode 100644 index bbbdfad..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/query-cache.bin and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/ry82dg9bfv3x9aj.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/ry82dg9bfv3x9aj.o deleted file mode 100644 index 6c75dd4..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/ry82dg9bfv3x9aj.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/skfrw7e2vsgaeru.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/skfrw7e2vsgaeru.o deleted file mode 100644 index 387d771..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/skfrw7e2vsgaeru.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/uv2hka0st744r50.o b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/uv2hka0st744r50.o deleted file mode 100644 index ac1fe5f..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/uv2hka0st744r50.o and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/work-products.bin b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/work-products.bin deleted file mode 100644 index 5147140..0000000 Binary files a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr-4ra6jbtvov2s9nzcv7mfigb1m/work-products.bin and /dev/null differ diff --git a/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr.lock b/target/debug/incremental/Fast_Password_Generator-21pc7rum06xtt/s-gn5is39w1i-7zxlnr.lock deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/.cargo-lock b/target/release/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/bin-Fast_Password_Generator b/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/bin-Fast_Password_Generator deleted file mode 100644 index 29e2b6b..0000000 --- a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/bin-Fast_Password_Generator +++ /dev/null @@ -1 +0,0 @@ -75f55d5d48ba3a2a \ No newline at end of file diff --git a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/bin-Fast_Password_Generator.json b/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/bin-Fast_Password_Generator.json deleted file mode 100644 index 25adbdc..0000000 --- a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/bin-Fast_Password_Generator.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":16344651264385132259,"profile":3567329628440936607,"path":1684066648322511884,"deps":[[3083426555513292373,"copypasta",false,15432543094502215931],[5910892534286594076,"rand",false,5585396142110589720]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/dep-bin-Fast_Password_Generator"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/dep-bin-Fast_Password_Generator b/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/dep-bin-Fast_Password_Generator deleted file mode 100644 index 5501b24..0000000 Binary files a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/dep-bin-Fast_Password_Generator and /dev/null differ diff --git a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/invoked.timestamp b/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/Fast_Password_Generator-e3277a57d84f1650/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-dd002dbccd824fda/dep-lib-autocfg b/target/release/.fingerprint/autocfg-dd002dbccd824fda/dep-lib-autocfg deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/autocfg-dd002dbccd824fda/dep-lib-autocfg and /dev/null differ diff --git a/target/release/.fingerprint/autocfg-dd002dbccd824fda/invoked.timestamp b/target/release/.fingerprint/autocfg-dd002dbccd824fda/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/autocfg-dd002dbccd824fda/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-dd002dbccd824fda/lib-autocfg b/target/release/.fingerprint/autocfg-dd002dbccd824fda/lib-autocfg deleted file mode 100644 index 0fb2ca7..0000000 --- a/target/release/.fingerprint/autocfg-dd002dbccd824fda/lib-autocfg +++ /dev/null @@ -1 +0,0 @@ -35aad3d70cb83ec2 \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-dd002dbccd824fda/lib-autocfg.json b/target/release/.fingerprint/autocfg-dd002dbccd824fda/lib-autocfg.json deleted file mode 100644 index 207ec24..0000000 --- a/target/release/.fingerprint/autocfg-dd002dbccd824fda/lib-autocfg.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14886237245231788030,"profile":1986123101310938075,"path":2864906636355273100,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/autocfg-dd002dbccd824fda/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-64b739638b8c5e40/dep-lib-bitflags b/target/release/.fingerprint/bitflags-64b739638b8c5e40/dep-lib-bitflags deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/bitflags-64b739638b8c5e40/dep-lib-bitflags and /dev/null differ diff --git a/target/release/.fingerprint/bitflags-64b739638b8c5e40/invoked.timestamp b/target/release/.fingerprint/bitflags-64b739638b8c5e40/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/bitflags-64b739638b8c5e40/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-64b739638b8c5e40/lib-bitflags b/target/release/.fingerprint/bitflags-64b739638b8c5e40/lib-bitflags deleted file mode 100644 index e7f21af..0000000 --- a/target/release/.fingerprint/bitflags-64b739638b8c5e40/lib-bitflags +++ /dev/null @@ -1 +0,0 @@ -a65278c35b92a57e \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-64b739638b8c5e40/lib-bitflags.json b/target/release/.fingerprint/bitflags-64b739638b8c5e40/lib-bitflags.json deleted file mode 100644 index 85b8df0..0000000 --- a/target/release/.fingerprint/bitflags-64b739638b8c5e40/lib-bitflags.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":15712369643656012375,"profile":3567329628440936607,"path":3511512817866469484,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bitflags-64b739638b8c5e40/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/dep-lib-cfg-if b/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/dep-lib-cfg-if deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/dep-lib-cfg-if and /dev/null differ diff --git a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/invoked.timestamp b/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/lib-cfg-if b/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/lib-cfg-if deleted file mode 100644 index f78269f..0000000 --- a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/lib-cfg-if +++ /dev/null @@ -1 +0,0 @@ -9db53afc95616484 \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/lib-cfg-if.json b/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/lib-cfg-if.json deleted file mode 100644 index c4ec843..0000000 --- a/target/release/.fingerprint/cfg-if-9d0a835ca77085a7/lib-cfg-if.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":10623512480563079566,"profile":3567329628440936607,"path":10429846360450568020,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cfg-if-9d0a835ca77085a7/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/copypasta-78046eab1f7041c4/dep-lib-copypasta b/target/release/.fingerprint/copypasta-78046eab1f7041c4/dep-lib-copypasta deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/copypasta-78046eab1f7041c4/dep-lib-copypasta and /dev/null differ diff --git a/target/release/.fingerprint/copypasta-78046eab1f7041c4/invoked.timestamp b/target/release/.fingerprint/copypasta-78046eab1f7041c4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/copypasta-78046eab1f7041c4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/copypasta-78046eab1f7041c4/lib-copypasta b/target/release/.fingerprint/copypasta-78046eab1f7041c4/lib-copypasta deleted file mode 100644 index 2c7bbe6..0000000 --- a/target/release/.fingerprint/copypasta-78046eab1f7041c4/lib-copypasta +++ /dev/null @@ -1 +0,0 @@ -fb50b6e82d682bd6 \ No newline at end of file diff --git a/target/release/.fingerprint/copypasta-78046eab1f7041c4/lib-copypasta.json b/target/release/.fingerprint/copypasta-78046eab1f7041c4/lib-copypasta.json deleted file mode 100644 index 6a23d00..0000000 --- a/target/release/.fingerprint/copypasta-78046eab1f7041c4/lib-copypasta.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"smithay-clipboard\", \"wayland\", \"x11\", \"x11-clipboard\"]","target":7972745694412979922,"profile":3567329628440936607,"path":10818358479165355152,"deps":[[9459561631278736489,"smithay_clipboard",false,11157180458694449557],[13027543786508450568,"x11_clipboard",false,9874002105370297901]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/copypasta-78046eab1f7041c4/dep-lib-copypasta"}}],"rustflags":[],"metadata":3317546725659431772,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/dep-lib-dlib b/target/release/.fingerprint/dlib-e22def41c9e2ad2d/dep-lib-dlib deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/dep-lib-dlib and /dev/null differ diff --git a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/invoked.timestamp b/target/release/.fingerprint/dlib-e22def41c9e2ad2d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/lib-dlib b/target/release/.fingerprint/dlib-e22def41c9e2ad2d/lib-dlib deleted file mode 100644 index 76569cc..0000000 --- a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/lib-dlib +++ /dev/null @@ -1 +0,0 @@ -3bc0222adef45f91 \ No newline at end of file diff --git a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/lib-dlib.json b/target/release/.fingerprint/dlib-e22def41c9e2ad2d/lib-dlib.json deleted file mode 100644 index 3f8b4e6..0000000 --- a/target/release/.fingerprint/dlib-e22def41c9e2ad2d/lib-dlib.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":6999338767167956407,"profile":3567329628440936607,"path":13285617472452246236,"deps":[[8550539457301843222,"libloading",false,182677269331288145]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/dlib-e22def41c9e2ad2d/dep-lib-dlib"}}],"rustflags":[],"metadata":14915576400165441898,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/downcast-rs-66859557331581e9/dep-lib-downcast-rs b/target/release/.fingerprint/downcast-rs-66859557331581e9/dep-lib-downcast-rs deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/downcast-rs-66859557331581e9/dep-lib-downcast-rs and /dev/null differ diff --git a/target/release/.fingerprint/downcast-rs-66859557331581e9/invoked.timestamp b/target/release/.fingerprint/downcast-rs-66859557331581e9/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/downcast-rs-66859557331581e9/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/downcast-rs-66859557331581e9/lib-downcast-rs b/target/release/.fingerprint/downcast-rs-66859557331581e9/lib-downcast-rs deleted file mode 100644 index 41c900b..0000000 --- a/target/release/.fingerprint/downcast-rs-66859557331581e9/lib-downcast-rs +++ /dev/null @@ -1 +0,0 @@ -c7cb73c27d328f0d \ No newline at end of file diff --git a/target/release/.fingerprint/downcast-rs-66859557331581e9/lib-downcast-rs.json b/target/release/.fingerprint/downcast-rs-66859557331581e9/lib-downcast-rs.json deleted file mode 100644 index f4aceb7..0000000 --- a/target/release/.fingerprint/downcast-rs-66859557331581e9/lib-downcast-rs.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"std\"]","target":11833479043893298793,"profile":3567329628440936607,"path":4347770476481342406,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/downcast-rs-66859557331581e9/dep-lib-downcast-rs"}}],"rustflags":[],"metadata":14063588153147126258,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/dep-lib-gethostname b/target/release/.fingerprint/gethostname-9e32a55b8dec5947/dep-lib-gethostname deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/dep-lib-gethostname and /dev/null differ diff --git a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/invoked.timestamp b/target/release/.fingerprint/gethostname-9e32a55b8dec5947/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/lib-gethostname b/target/release/.fingerprint/gethostname-9e32a55b8dec5947/lib-gethostname deleted file mode 100644 index 6cbea45..0000000 --- a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/lib-gethostname +++ /dev/null @@ -1 +0,0 @@ -22dd48d1366e7576 \ No newline at end of file diff --git a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/lib-gethostname.json b/target/release/.fingerprint/gethostname-9e32a55b8dec5947/lib-gethostname.json deleted file mode 100644 index 8145a9e..0000000 --- a/target/release/.fingerprint/gethostname-9e32a55b8dec5947/lib-gethostname.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3027175314346830224,"profile":3567329628440936607,"path":10157346088843717788,"deps":[[2798846484360888381,"libc",false,13429669429900478771]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/gethostname-9e32a55b8dec5947/dep-lib-gethostname"}}],"rustflags":[],"metadata":4235199418446044842,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/getrandom-608ca04594cc5313/dep-lib-getrandom b/target/release/.fingerprint/getrandom-608ca04594cc5313/dep-lib-getrandom deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/getrandom-608ca04594cc5313/dep-lib-getrandom and /dev/null differ diff --git a/target/release/.fingerprint/getrandom-608ca04594cc5313/invoked.timestamp b/target/release/.fingerprint/getrandom-608ca04594cc5313/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/getrandom-608ca04594cc5313/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/getrandom-608ca04594cc5313/lib-getrandom b/target/release/.fingerprint/getrandom-608ca04594cc5313/lib-getrandom deleted file mode 100644 index f66fca5..0000000 --- a/target/release/.fingerprint/getrandom-608ca04594cc5313/lib-getrandom +++ /dev/null @@ -1 +0,0 @@ -1389206ee8febb32 \ No newline at end of file diff --git a/target/release/.fingerprint/getrandom-608ca04594cc5313/lib-getrandom.json b/target/release/.fingerprint/getrandom-608ca04594cc5313/lib-getrandom.json deleted file mode 100644 index b8edfa9..0000000 --- a/target/release/.fingerprint/getrandom-608ca04594cc5313/lib-getrandom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":16789414514566550411,"profile":3567329628440936607,"path":6498994150243112320,"deps":[[2452538001284770427,"cfg_if",false,9539857207487280541],[2798846484360888381,"libc",false,13429669429900478771]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/getrandom-608ca04594cc5313/dep-lib-getrandom"}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/dep-lib-lazy_static b/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/dep-lib-lazy_static deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/dep-lib-lazy_static and /dev/null differ diff --git a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/invoked.timestamp b/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/lib-lazy_static b/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/lib-lazy_static deleted file mode 100644 index 6e09373..0000000 --- a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/lib-lazy_static +++ /dev/null @@ -1 +0,0 @@ -9daf4526a441e98a \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/lib-lazy_static.json b/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/lib-lazy_static.json deleted file mode 100644 index e920583..0000000 --- a/target/release/.fingerprint/lazy_static-84c1fdcad92bf343/lib-lazy_static.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":1623840821729021818,"profile":3567329628440936607,"path":14909690414878957835,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/lazy_static-84c1fdcad92bf343/dep-lib-lazy_static"}}],"rustflags":[],"metadata":111743654650316589,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-52aee3d1d84a4121/build-script-build-script-build b/target/release/.fingerprint/libc-52aee3d1d84a4121/build-script-build-script-build deleted file mode 100644 index fca57f5..0000000 --- a/target/release/.fingerprint/libc-52aee3d1d84a4121/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -85a7c398c7853019 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-52aee3d1d84a4121/build-script-build-script-build.json b/target/release/.fingerprint/libc-52aee3d1d84a4121/build-script-build-script-build.json deleted file mode 100644 index 15d8682..0000000 --- a/target/release/.fingerprint/libc-52aee3d1d84a4121/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"extra_traits\", \"std\"]","target":8188216131759486267,"profile":1986123101310938075,"path":15801844498217677233,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-52aee3d1d84a4121/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-52aee3d1d84a4121/dep-build-script-build-script-build b/target/release/.fingerprint/libc-52aee3d1d84a4121/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/libc-52aee3d1d84a4121/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/libc-52aee3d1d84a4121/invoked.timestamp b/target/release/.fingerprint/libc-52aee3d1d84a4121/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/libc-52aee3d1d84a4121/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/libc-684158ad5586c029/run-build-script-build-script-build b/target/release/.fingerprint/libc-684158ad5586c029/run-build-script-build-script-build deleted file mode 100644 index 8325939..0000000 --- a/target/release/.fingerprint/libc-684158ad5586c029/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -112b9b35e1ee2e82 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-684158ad5586c029/run-build-script-build-script-build.json b/target/release/.fingerprint/libc-684158ad5586c029/run-build-script-build-script-build.json deleted file mode 100644 index b3e802d..0000000 --- a/target/release/.fingerprint/libc-684158ad5586c029/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[2798846484360888381,"build_script_build",false,1815097742138255237]],"local":[{"RerunIfChanged":{"output":"release/build/libc-684158ad5586c029/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-f53e97837426749d/dep-lib-libc b/target/release/.fingerprint/libc-f53e97837426749d/dep-lib-libc deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/libc-f53e97837426749d/dep-lib-libc and /dev/null differ diff --git a/target/release/.fingerprint/libc-f53e97837426749d/invoked.timestamp b/target/release/.fingerprint/libc-f53e97837426749d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/libc-f53e97837426749d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/libc-f53e97837426749d/lib-libc b/target/release/.fingerprint/libc-f53e97837426749d/lib-libc deleted file mode 100644 index 9587cd6..0000000 --- a/target/release/.fingerprint/libc-f53e97837426749d/lib-libc +++ /dev/null @@ -1 +0,0 @@ -3309246c31c55fba \ No newline at end of file diff --git a/target/release/.fingerprint/libc-f53e97837426749d/lib-libc.json b/target/release/.fingerprint/libc-f53e97837426749d/lib-libc.json deleted file mode 100644 index dab7e8e..0000000 --- a/target/release/.fingerprint/libc-f53e97837426749d/lib-libc.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"extra_traits\", \"std\"]","target":1307715644349195660,"profile":3567329628440936607,"path":13823011967339436655,"deps":[[2798846484360888381,"build_script_build",false,9380697724893735697]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-f53e97837426749d/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libloading-5c3658050162765a/dep-lib-libloading b/target/release/.fingerprint/libloading-5c3658050162765a/dep-lib-libloading deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/libloading-5c3658050162765a/dep-lib-libloading and /dev/null differ diff --git a/target/release/.fingerprint/libloading-5c3658050162765a/invoked.timestamp b/target/release/.fingerprint/libloading-5c3658050162765a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/libloading-5c3658050162765a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/libloading-5c3658050162765a/lib-libloading b/target/release/.fingerprint/libloading-5c3658050162765a/lib-libloading deleted file mode 100644 index 55326b2..0000000 --- a/target/release/.fingerprint/libloading-5c3658050162765a/lib-libloading +++ /dev/null @@ -1 +0,0 @@ -51a0073302008902 \ No newline at end of file diff --git a/target/release/.fingerprint/libloading-5c3658050162765a/lib-libloading.json b/target/release/.fingerprint/libloading-5c3658050162765a/lib-libloading.json deleted file mode 100644 index 133cbaa..0000000 --- a/target/release/.fingerprint/libloading-5c3658050162765a/lib-libloading.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3904882595153906123,"profile":3567329628440936607,"path":2524354147456831335,"deps":[[2452538001284770427,"cfg_if",false,9539857207487280541]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libloading-5c3658050162765a/dep-lib-libloading"}}],"rustflags":[],"metadata":17567831315501188372,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/log-664036b4b2a032b1/dep-lib-log b/target/release/.fingerprint/log-664036b4b2a032b1/dep-lib-log deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/log-664036b4b2a032b1/dep-lib-log and /dev/null differ diff --git a/target/release/.fingerprint/log-664036b4b2a032b1/invoked.timestamp b/target/release/.fingerprint/log-664036b4b2a032b1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/log-664036b4b2a032b1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/log-664036b4b2a032b1/lib-log b/target/release/.fingerprint/log-664036b4b2a032b1/lib-log deleted file mode 100644 index 76e0aa5..0000000 --- a/target/release/.fingerprint/log-664036b4b2a032b1/lib-log +++ /dev/null @@ -1 +0,0 @@ -be7fe7525c90b5fd \ No newline at end of file diff --git a/target/release/.fingerprint/log-664036b4b2a032b1/lib-log.json b/target/release/.fingerprint/log-664036b4b2a032b1/lib-log.json deleted file mode 100644 index 9763e77..0000000 --- a/target/release/.fingerprint/log-664036b4b2a032b1/lib-log.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":4487324886529943577,"profile":3567329628440936607,"path":15879963733942325703,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/log-664036b4b2a032b1/dep-lib-log"}}],"rustflags":[],"metadata":179143468214550567,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/build-script-build-script-build b/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/build-script-build-script-build deleted file mode 100644 index f97d888..0000000 --- a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -1b6e60621eec3dca \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/build-script-build-script-build.json b/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/build-script-build-script-build.json deleted file mode 100644 index 7aaa00c..0000000 --- a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":2297296889237502566,"profile":1986123101310938075,"path":11582060615545135133,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-0aee7e8cc7430fc3/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/dep-build-script-build-script-build b/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/invoked.timestamp b/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/memchr-0aee7e8cc7430fc3/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-768c6a564242ac72/run-build-script-build-script-build b/target/release/.fingerprint/memchr-768c6a564242ac72/run-build-script-build-script-build deleted file mode 100644 index 3cba24f..0000000 --- a/target/release/.fingerprint/memchr-768c6a564242ac72/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -b3ecc307ba097253 \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-768c6a564242ac72/run-build-script-build-script-build.json b/target/release/.fingerprint/memchr-768c6a564242ac72/run-build-script-build-script-build.json deleted file mode 100644 index 9f8d622..0000000 --- a/target/release/.fingerprint/memchr-768c6a564242ac72/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[6893260508610722743,"build_script_build",false,14573063584484453915]],"local":[{"Precalculated":"2.5.0"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/dep-lib-memchr b/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/dep-lib-memchr deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/dep-lib-memchr and /dev/null differ diff --git a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/invoked.timestamp b/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/lib-memchr b/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/lib-memchr deleted file mode 100644 index 9a5fdb7..0000000 --- a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/lib-memchr +++ /dev/null @@ -1 +0,0 @@ -e0984d987c5d567e \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/lib-memchr.json b/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/lib-memchr.json deleted file mode 100644 index d92a29d..0000000 --- a/target/release/.fingerprint/memchr-d7640fc5ce53fb0c/lib-memchr.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":3122691792076482017,"profile":3567329628440936607,"path":8362493403944333487,"deps":[[6893260508610722743,"build_script_build",false,6012879147091881139]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-d7640fc5ce53fb0c/dep-lib-memchr"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memmap2-e6ef43617b646b48/dep-lib-memmap2 b/target/release/.fingerprint/memmap2-e6ef43617b646b48/dep-lib-memmap2 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memmap2-e6ef43617b646b48/dep-lib-memmap2 and /dev/null differ diff --git a/target/release/.fingerprint/memmap2-e6ef43617b646b48/invoked.timestamp b/target/release/.fingerprint/memmap2-e6ef43617b646b48/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/memmap2-e6ef43617b646b48/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memmap2-e6ef43617b646b48/lib-memmap2 b/target/release/.fingerprint/memmap2-e6ef43617b646b48/lib-memmap2 deleted file mode 100644 index 82177b0..0000000 --- a/target/release/.fingerprint/memmap2-e6ef43617b646b48/lib-memmap2 +++ /dev/null @@ -1 +0,0 @@ -dbdacb7440f9473e \ No newline at end of file diff --git a/target/release/.fingerprint/memmap2-e6ef43617b646b48/lib-memmap2.json b/target/release/.fingerprint/memmap2-e6ef43617b646b48/lib-memmap2.json deleted file mode 100644 index ca77ebf..0000000 --- a/target/release/.fingerprint/memmap2-e6ef43617b646b48/lib-memmap2.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14437422156975073459,"profile":3567329628440936607,"path":9393730649597173391,"deps":[[2798846484360888381,"libc",false,13429669429900478771]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memmap2-e6ef43617b646b48/dep-lib-memmap2"}}],"rustflags":[],"metadata":7859718134507496869,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-09861a32d92b082e/run-build-script-build-script-build b/target/release/.fingerprint/memoffset-09861a32d92b082e/run-build-script-build-script-build deleted file mode 100644 index 579c73d..0000000 --- a/target/release/.fingerprint/memoffset-09861a32d92b082e/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -2534661b1bdeca56 \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-09861a32d92b082e/run-build-script-build-script-build.json b/target/release/.fingerprint/memoffset-09861a32d92b082e/run-build-script-build-script-build.json deleted file mode 100644 index 1dd7fd4..0000000 --- a/target/release/.fingerprint/memoffset-09861a32d92b082e/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[6458888162066361806,"build_script_build",false,11523514867250945816]],"local":[{"Precalculated":"0.6.5"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/build-script-build-script-build b/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/build-script-build-script-build deleted file mode 100644 index daf53d7..0000000 --- a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -18df6cb2b7bfeb9f \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/build-script-build-script-build.json b/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/build-script-build-script-build.json deleted file mode 100644 index 37adc78..0000000 --- a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":8188216131759486267,"profile":1986123101310938075,"path":7749016696249405209,"deps":[[14832468857926148571,"autocfg",false,13996827057214171701]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memoffset-37fcd3313f3dcac0/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/dep-build-script-build-script-build b/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/invoked.timestamp b/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/memoffset-37fcd3313f3dcac0/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/dep-lib-memoffset b/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/dep-lib-memoffset deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/dep-lib-memoffset and /dev/null differ diff --git a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/invoked.timestamp b/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/lib-memoffset b/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/lib-memoffset deleted file mode 100644 index d07d241..0000000 --- a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/lib-memoffset +++ /dev/null @@ -1 +0,0 @@ -e0a06a3a3986d56a \ No newline at end of file diff --git a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/lib-memoffset.json b/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/lib-memoffset.json deleted file mode 100644 index 871a37e..0000000 --- a/target/release/.fingerprint/memoffset-53e7c27bdbad7b72/lib-memoffset.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\"]","target":1229535848872979174,"profile":3567329628440936607,"path":11672403129109050514,"deps":[[6458888162066361806,"build_script_build",false,6254055240562521125]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memoffset-53e7c27bdbad7b72/dep-lib-memoffset"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/dep-lib-minimal-lexical b/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/dep-lib-minimal-lexical deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/dep-lib-minimal-lexical and /dev/null differ diff --git a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/invoked.timestamp b/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/lib-minimal-lexical b/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/lib-minimal-lexical deleted file mode 100644 index 2ec9fc9..0000000 --- a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/lib-minimal-lexical +++ /dev/null @@ -1 +0,0 @@ -d034dda285694f81 \ No newline at end of file diff --git a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/lib-minimal-lexical.json b/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/lib-minimal-lexical.json deleted file mode 100644 index bd57564..0000000 --- a/target/release/.fingerprint/minimal-lexical-70aa839262278bf4/lib-minimal-lexical.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":1009644266440026082,"profile":3567329628440936607,"path":7859083007998583758,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/minimal-lexical-70aa839262278bf4/dep-lib-minimal-lexical"}}],"rustflags":[],"metadata":2051824130325965549,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/nix-3515cd386fed2aae/dep-lib-nix b/target/release/.fingerprint/nix-3515cd386fed2aae/dep-lib-nix deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/nix-3515cd386fed2aae/dep-lib-nix and /dev/null differ diff --git a/target/release/.fingerprint/nix-3515cd386fed2aae/invoked.timestamp b/target/release/.fingerprint/nix-3515cd386fed2aae/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/nix-3515cd386fed2aae/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/nix-3515cd386fed2aae/lib-nix b/target/release/.fingerprint/nix-3515cd386fed2aae/lib-nix deleted file mode 100644 index 355dd37..0000000 --- a/target/release/.fingerprint/nix-3515cd386fed2aae/lib-nix +++ /dev/null @@ -1 +0,0 @@ -8e7dad6bdc04627f \ No newline at end of file diff --git a/target/release/.fingerprint/nix-3515cd386fed2aae/lib-nix.json b/target/release/.fingerprint/nix-3515cd386fed2aae/lib-nix.json deleted file mode 100644 index 03420ce..0000000 --- a/target/release/.fingerprint/nix-3515cd386fed2aae/lib-nix.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":3017721884411201274,"profile":3567329628440936607,"path":13900890255240335189,"deps":[[2452538001284770427,"cfg_if",false,9539857207487280541],[2798846484360888381,"libc",false,13429669429900478771],[6458888162066361806,"memoffset",false,7698206718411055328],[14051957667571541382,"bitflags",false,9125861142755300006]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nix-3515cd386fed2aae/dep-lib-nix"}}],"rustflags":[],"metadata":7592889295042356366,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/nom-fe065b00ae4de47a/dep-lib-nom b/target/release/.fingerprint/nom-fe065b00ae4de47a/dep-lib-nom deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/nom-fe065b00ae4de47a/dep-lib-nom and /dev/null differ diff --git a/target/release/.fingerprint/nom-fe065b00ae4de47a/invoked.timestamp b/target/release/.fingerprint/nom-fe065b00ae4de47a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/nom-fe065b00ae4de47a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/nom-fe065b00ae4de47a/lib-nom b/target/release/.fingerprint/nom-fe065b00ae4de47a/lib-nom deleted file mode 100644 index 388db52..0000000 --- a/target/release/.fingerprint/nom-fe065b00ae4de47a/lib-nom +++ /dev/null @@ -1 +0,0 @@ -659ff1299ecdc66e \ No newline at end of file diff --git a/target/release/.fingerprint/nom-fe065b00ae4de47a/lib-nom.json b/target/release/.fingerprint/nom-fe065b00ae4de47a/lib-nom.json deleted file mode 100644 index 5429ce5..0000000 --- a/target/release/.fingerprint/nom-fe065b00ae4de47a/lib-nom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"std\"]","target":1745534342555606081,"profile":3567329628440936607,"path":2412020075841791344,"deps":[[6893260508610722743,"memchr",false,9103566486488586464],[10953957149292187054,"minimal_lexical",false,9317782176736818384]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nom-fe065b00ae4de47a/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/dep-lib-once_cell b/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/dep-lib-once_cell deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/dep-lib-once_cell and /dev/null differ diff --git a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/invoked.timestamp b/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/lib-once_cell b/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/lib-once_cell deleted file mode 100644 index 6059911..0000000 --- a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/lib-once_cell +++ /dev/null @@ -1 +0,0 @@ -cf96bc028dedba8c \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/lib-once_cell.json b/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/lib-once_cell.json deleted file mode 100644 index 38b7019..0000000 --- a/target/release/.fingerprint/once_cell-03497bc7d36bfdaa/lib-once_cell.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","target":14856186769647684053,"profile":3567329628440936607,"path":8161630324693231681,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/once_cell-03497bc7d36bfdaa/dep-lib-once_cell"}}],"rustflags":[],"metadata":14177539708254521827,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/dep-lib-pkg-config b/target/release/.fingerprint/pkg-config-715abaf881bd0a50/dep-lib-pkg-config deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/dep-lib-pkg-config and /dev/null differ diff --git a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/invoked.timestamp b/target/release/.fingerprint/pkg-config-715abaf881bd0a50/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/lib-pkg-config b/target/release/.fingerprint/pkg-config-715abaf881bd0a50/lib-pkg-config deleted file mode 100644 index 3b59112..0000000 --- a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/lib-pkg-config +++ /dev/null @@ -1 +0,0 @@ -755ed3e0609fb297 \ No newline at end of file diff --git a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/lib-pkg-config.json b/target/release/.fingerprint/pkg-config-715abaf881bd0a50/lib-pkg-config.json deleted file mode 100644 index 3c0fb16..0000000 --- a/target/release/.fingerprint/pkg-config-715abaf881bd0a50/lib-pkg-config.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":15725624806819206206,"profile":1986123101310938075,"path":16404730370269568787,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/pkg-config-715abaf881bd0a50/dep-lib-pkg-config"}}],"rustflags":[],"metadata":6346311810227624339,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/dep-lib-ppv-lite86 b/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/dep-lib-ppv-lite86 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/dep-lib-ppv-lite86 and /dev/null differ diff --git a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/invoked.timestamp b/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/lib-ppv-lite86 b/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/lib-ppv-lite86 deleted file mode 100644 index 09a2fad..0000000 --- a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/lib-ppv-lite86 +++ /dev/null @@ -1 +0,0 @@ -8c586b56444e9bab \ No newline at end of file diff --git a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/lib-ppv-lite86.json b/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/lib-ppv-lite86.json deleted file mode 100644 index 75292bb..0000000 --- a/target/release/.fingerprint/ppv-lite86-437f603f74b6c4f3/lib-ppv-lite86.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"simd\", \"std\"]","target":602634026009422966,"profile":3567329628440936607,"path":10138868418580815995,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ppv-lite86-437f603f74b6c4f3/dep-lib-ppv-lite86"}}],"rustflags":[],"metadata":14155036307809790115,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-3ab8b680f253f272/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-3ab8b680f253f272/run-build-script-build-script-build deleted file mode 100644 index 3c40718..0000000 --- a/target/release/.fingerprint/proc-macro2-3ab8b680f253f272/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -79d6c957a71057f9 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-3ab8b680f253f272/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-3ab8b680f253f272/run-build-script-build-script-build.json deleted file mode 100644 index c19a4fa..0000000 --- a/target/release/.fingerprint/proc-macro2-3ab8b680f253f272/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[2275467556785573469,"build_script_build",false,15040661271974314067]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-3ab8b680f253f272/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/build-script-build-script-build b/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/build-script-build-script-build deleted file mode 100644 index c6d70da..0000000 --- a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -530001efbc29bbd0 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/build-script-build-script-build.json deleted file mode 100644 index b1eb893..0000000 --- a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"proc-macro\"]","target":427768481117760528,"profile":1986123101310938075,"path":18305302880047366859,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-78b4e5f08e573c6a/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/invoked.timestamp b/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/proc-macro2-78b4e5f08e573c6a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/dep-lib-proc-macro2 b/target/release/.fingerprint/proc-macro2-9238c67c427d9278/dep-lib-proc-macro2 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/dep-lib-proc-macro2 and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/invoked.timestamp b/target/release/.fingerprint/proc-macro2-9238c67c427d9278/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/lib-proc-macro2 b/target/release/.fingerprint/proc-macro2-9238c67c427d9278/lib-proc-macro2 deleted file mode 100644 index 95520fb..0000000 --- a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/lib-proc-macro2 +++ /dev/null @@ -1 +0,0 @@ -eebf31025b374d74 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/lib-proc-macro2.json b/target/release/.fingerprint/proc-macro2-9238c67c427d9278/lib-proc-macro2.json deleted file mode 100644 index ad2ae31..0000000 --- a/target/release/.fingerprint/proc-macro2-9238c67c427d9278/lib-proc-macro2.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"proc-macro\"]","target":16714894217519287322,"profile":1986123101310938075,"path":1816841969921009812,"deps":[[2275467556785573469,"build_script_build",false,17966847549336311417],[10721203361745528474,"unicode_ident",false,10207360315561328820]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-9238c67c427d9278/dep-lib-proc-macro2"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-12cad9da97ce9f15/dep-lib-quote b/target/release/.fingerprint/quote-12cad9da97ce9f15/dep-lib-quote deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/quote-12cad9da97ce9f15/dep-lib-quote and /dev/null differ diff --git a/target/release/.fingerprint/quote-12cad9da97ce9f15/invoked.timestamp b/target/release/.fingerprint/quote-12cad9da97ce9f15/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/quote-12cad9da97ce9f15/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/quote-12cad9da97ce9f15/lib-quote b/target/release/.fingerprint/quote-12cad9da97ce9f15/lib-quote deleted file mode 100644 index 3050591..0000000 --- a/target/release/.fingerprint/quote-12cad9da97ce9f15/lib-quote +++ /dev/null @@ -1 +0,0 @@ -547bc3ea212ffcce \ No newline at end of file diff --git a/target/release/.fingerprint/quote-12cad9da97ce9f15/lib-quote.json b/target/release/.fingerprint/quote-12cad9da97ce9f15/lib-quote.json deleted file mode 100644 index 9d53fd7..0000000 --- a/target/release/.fingerprint/quote-12cad9da97ce9f15/lib-quote.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"proc-macro\"]","target":10824007166531090010,"profile":1986123101310938075,"path":16872971562102161078,"deps":[[2275467556785573469,"proc_macro2",false,8380415345624727534]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-12cad9da97ce9f15/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rand-8546ee8461177403/dep-lib-rand b/target/release/.fingerprint/rand-8546ee8461177403/dep-lib-rand deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/rand-8546ee8461177403/dep-lib-rand and /dev/null differ diff --git a/target/release/.fingerprint/rand-8546ee8461177403/invoked.timestamp b/target/release/.fingerprint/rand-8546ee8461177403/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/rand-8546ee8461177403/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rand-8546ee8461177403/lib-rand b/target/release/.fingerprint/rand-8546ee8461177403/lib-rand deleted file mode 100644 index aa1b673..0000000 --- a/target/release/.fingerprint/rand-8546ee8461177403/lib-rand +++ /dev/null @@ -1 +0,0 @@ -18c356d43250834d \ No newline at end of file diff --git a/target/release/.fingerprint/rand-8546ee8461177403/lib-rand.json b/target/release/.fingerprint/rand-8546ee8461177403/lib-rand.json deleted file mode 100644 index 08b9fbf..0000000 --- a/target/release/.fingerprint/rand-8546ee8461177403/lib-rand.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","target":17786277519600763311,"profile":3567329628440936607,"path":5886328101731989687,"deps":[[1565494060434293766,"rand_core",false,1128892602043486173],[2798846484360888381,"libc",false,13429669429900478771],[12017018019769837221,"rand_chacha",false,541383245685793792]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rand-8546ee8461177403/dep-lib-rand"}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/dep-lib-rand_chacha b/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/dep-lib-rand_chacha deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/dep-lib-rand_chacha and /dev/null differ diff --git a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/invoked.timestamp b/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/lib-rand_chacha b/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/lib-rand_chacha deleted file mode 100644 index eb87167..0000000 --- a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/lib-rand_chacha +++ /dev/null @@ -1 +0,0 @@ -0024738e31618307 \ No newline at end of file diff --git a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/lib-rand_chacha.json b/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/lib-rand_chacha.json deleted file mode 100644 index f20acee..0000000 --- a/target/release/.fingerprint/rand_chacha-8863cd74b8d7665a/lib-rand_chacha.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"std\"]","target":3291831172522752161,"profile":3567329628440936607,"path":16178273441518982686,"deps":[[1565494060434293766,"rand_core",false,1128892602043486173],[4511957894497802922,"ppv_lite86",false,12365563257290446988]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rand_chacha-8863cd74b8d7665a/dep-lib-rand_chacha"}}],"rustflags":[],"metadata":2235018391756195449,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rand_core-812d693beb7349ec/dep-lib-rand_core b/target/release/.fingerprint/rand_core-812d693beb7349ec/dep-lib-rand_core deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/rand_core-812d693beb7349ec/dep-lib-rand_core and /dev/null differ diff --git a/target/release/.fingerprint/rand_core-812d693beb7349ec/invoked.timestamp b/target/release/.fingerprint/rand_core-812d693beb7349ec/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/rand_core-812d693beb7349ec/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rand_core-812d693beb7349ec/lib-rand_core b/target/release/.fingerprint/rand_core-812d693beb7349ec/lib-rand_core deleted file mode 100644 index d3ed06b..0000000 --- a/target/release/.fingerprint/rand_core-812d693beb7349ec/lib-rand_core +++ /dev/null @@ -1 +0,0 @@ -dd4f5e26d7a1aa0f \ No newline at end of file diff --git a/target/release/.fingerprint/rand_core-812d693beb7349ec/lib-rand_core.json b/target/release/.fingerprint/rand_core-812d693beb7349ec/lib-rand_core.json deleted file mode 100644 index e394e98..0000000 --- a/target/release/.fingerprint/rand_core-812d693beb7349ec/lib-rand_core.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"alloc\", \"getrandom\", \"std\"]","target":3042383198953219556,"profile":3567329628440936607,"path":12854911787025030344,"deps":[[12202314575583203756,"getrandom",false,3655795796774783251]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rand_core-812d693beb7349ec/dep-lib-rand_core"}}],"rustflags":[],"metadata":3275543247315060703,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/dep-lib-scoped-tls b/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/dep-lib-scoped-tls deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/dep-lib-scoped-tls and /dev/null differ diff --git a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/invoked.timestamp b/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/lib-scoped-tls b/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/lib-scoped-tls deleted file mode 100644 index 703e167..0000000 --- a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/lib-scoped-tls +++ /dev/null @@ -1 +0,0 @@ -bf0c1dab40d8a8c4 \ No newline at end of file diff --git a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/lib-scoped-tls.json b/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/lib-scoped-tls.json deleted file mode 100644 index b387dfb..0000000 --- a/target/release/.fingerprint/scoped-tls-10a47a489fdf16ed/lib-scoped-tls.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13840842063485176643,"profile":3567329628440936607,"path":13612145635931593162,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/scoped-tls-10a47a489fdf16ed/dep-lib-scoped-tls"}}],"rustflags":[],"metadata":2149360364700900626,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/dep-lib-smallvec b/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/dep-lib-smallvec deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/dep-lib-smallvec and /dev/null differ diff --git a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/invoked.timestamp b/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/lib-smallvec b/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/lib-smallvec deleted file mode 100644 index aae6f93..0000000 --- a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/lib-smallvec +++ /dev/null @@ -1 +0,0 @@ -e9f0263cf174a4b2 \ No newline at end of file diff --git a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/lib-smallvec.json b/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/lib-smallvec.json deleted file mode 100644 index af9c238..0000000 --- a/target/release/.fingerprint/smallvec-eb80c4e2392b13eb/lib-smallvec.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":15021638563153388439,"profile":3567329628440936607,"path":1772779278127255522,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/smallvec-eb80c4e2392b13eb/dep-lib-smallvec"}}],"rustflags":[],"metadata":15767570753543272391,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-40ec55b3488bb39c/run-build-script-build-script-build b/target/release/.fingerprint/smithay-client-toolkit-40ec55b3488bb39c/run-build-script-build-script-build deleted file mode 100644 index 709a2a2..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-40ec55b3488bb39c/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -19778c56093ffb57 \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-40ec55b3488bb39c/run-build-script-build-script-build.json b/target/release/.fingerprint/smithay-client-toolkit-40ec55b3488bb39c/run-build-script-build-script-build.json deleted file mode 100644 index 2ac7f51..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-40ec55b3488bb39c/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[16832502711214903246,"build_script_build",false,3233695780941390206]],"local":[{"Precalculated":"0.16.0"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/build-script-build-script-build b/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/build-script-build-script-build deleted file mode 100644 index 1b49fc5..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -7ee1b00e2e65e02c \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/build-script-build-script-build.json b/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/build-script-build-script-build.json deleted file mode 100644 index 4e37a0d..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\"]","target":2297296889237502566,"profile":1986123101310938075,"path":1236036709910078898,"deps":[[7306026711749381407,"pkg_config",false,10930974484019240565]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/smithay-client-toolkit-7205652829032719/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6713962624978474474,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/dep-build-script-build-script-build b/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/invoked.timestamp b/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-7205652829032719/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/dep-lib-smithay-client-toolkit b/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/dep-lib-smithay-client-toolkit deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/dep-lib-smithay-client-toolkit and /dev/null differ diff --git a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/invoked.timestamp b/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/lib-smithay-client-toolkit b/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/lib-smithay-client-toolkit deleted file mode 100644 index 39d7e10..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/lib-smithay-client-toolkit +++ /dev/null @@ -1 +0,0 @@ -fccc052c4a221016 \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/lib-smithay-client-toolkit.json b/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/lib-smithay-client-toolkit.json deleted file mode 100644 index 71f750d..0000000 --- a/target/release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/lib-smithay-client-toolkit.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\"]","target":1645736066008932730,"profile":3567329628440936607,"path":18359400088547290815,"deps":[[2755275374599566682,"memmap2",false,4487829608930728667],[3454912282745707850,"dlib",false,10475360493313900603],[6685014296130524576,"lazy_static",false,10009603820080181149],[11003812557521234370,"log",false,18281676988582690750],[11213784026784147602,"wayland_cursor",false,5692960478056120095],[12492735776745679186,"wayland_protocols",false,13738548267259224758],[14051957667571541382,"bitflags",false,9125861142755300006],[16651451181094857152,"nix",false,9178904335280340366],[16832502711214903246,"build_script_build",false,6339730209793406745],[18047320069137138570,"wayland_client",false,13540302298875134991]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/smithay-client-toolkit-c175afe48df4f755/dep-lib-smithay-client-toolkit"}}],"rustflags":[],"metadata":6713962624978474474,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/dep-lib-smithay-clipboard b/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/dep-lib-smithay-clipboard deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/dep-lib-smithay-clipboard and /dev/null differ diff --git a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/invoked.timestamp b/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/lib-smithay-clipboard b/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/lib-smithay-clipboard deleted file mode 100644 index d0cd1d6..0000000 --- a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/lib-smithay-clipboard +++ /dev/null @@ -1 +0,0 @@ -9599698f8344d69a \ No newline at end of file diff --git a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/lib-smithay-clipboard.json b/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/lib-smithay-clipboard.json deleted file mode 100644 index 2840151..0000000 --- a/target/release/.fingerprint/smithay-clipboard-1e179346fd1118a0/lib-smithay-clipboard.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"dlopen\"]","target":18341345375543786598,"profile":3567329628440936607,"path":12127985698073258857,"deps":[[16832502711214903246,"sctk",false,1589808370423287036],[18047320069137138570,"wayland_client",false,13540302298875134991]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/smithay-clipboard-1e179346fd1118a0/dep-lib-smithay-clipboard"}}],"rustflags":[],"metadata":3331842656219828140,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/dep-lib-unicode-ident b/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/dep-lib-unicode-ident deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/dep-lib-unicode-ident and /dev/null differ diff --git a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/invoked.timestamp b/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/lib-unicode-ident b/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/lib-unicode-ident deleted file mode 100644 index 2af8687..0000000 --- a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/lib-unicode-ident +++ /dev/null @@ -1 +0,0 @@ -b4c0734720d4a78d \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/lib-unicode-ident.json b/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/lib-unicode-ident.json deleted file mode 100644 index 7f060f5..0000000 --- a/target/release/.fingerprint/unicode-ident-f2b1f8f207a97b82/lib-unicode-ident.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":7243519288898877878,"profile":1986123101310938075,"path":6202606100060907640,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-ident-f2b1f8f207a97b82/dep-lib-unicode-ident"}}],"rustflags":[],"metadata":1159190378059262574,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-337aa938d371d658/run-build-script-build-script-build b/target/release/.fingerprint/wayland-client-337aa938d371d658/run-build-script-build-script-build deleted file mode 100644 index cacf85f..0000000 --- a/target/release/.fingerprint/wayland-client-337aa938d371d658/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -b99750119c614c2c \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-337aa938d371d658/run-build-script-build-script-build.json b/target/release/.fingerprint/wayland-client-337aa938d371d658/run-build-script-build-script-build.json deleted file mode 100644 index 1d952ac..0000000 --- a/target/release/.fingerprint/wayland-client-337aa938d371d658/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[18047320069137138570,"build_script_build",false,1131634417474101658]],"local":[{"RerunIfChanged":{"output":"release/build/wayland-client-337aa938d371d658/output","paths":["./wayland.xml"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/build-script-build-script-build b/target/release/.fingerprint/wayland-client-77ef80cd3b064331/build-script-build-script-build deleted file mode 100644 index 4d70ada..0000000 --- a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -9a6126cd815fb40f \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/build-script-build-script-build.json b/target/release/.fingerprint/wayland-client-77ef80cd3b064331/build-script-build-script-build.json deleted file mode 100644 index 4d113f1..0000000 --- a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\", \"scoped-tls\", \"use_system_lib\"]","target":2297296889237502566,"profile":1986123101310938075,"path":13739413380317238868,"deps":[[7784637021643553129,"wayland_scanner",false,2230311475105292712]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-client-77ef80cd3b064331/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":12138571088257282696,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/dep-build-script-build-script-build b/target/release/.fingerprint/wayland-client-77ef80cd3b064331/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/invoked.timestamp b/target/release/.fingerprint/wayland-client-77ef80cd3b064331/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-client-77ef80cd3b064331/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/dep-lib-wayland-client b/target/release/.fingerprint/wayland-client-c1b085b95164ac69/dep-lib-wayland-client deleted file mode 100644 index 399d0c4..0000000 Binary files a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/dep-lib-wayland-client and /dev/null differ diff --git a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/invoked.timestamp b/target/release/.fingerprint/wayland-client-c1b085b95164ac69/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/lib-wayland-client b/target/release/.fingerprint/wayland-client-c1b085b95164ac69/lib-wayland-client deleted file mode 100644 index 69f8756..0000000 --- a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/lib-wayland-client +++ /dev/null @@ -1 +0,0 @@ -0f84db8333d1e8bb \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/lib-wayland-client.json b/target/release/.fingerprint/wayland-client-c1b085b95164ac69/lib-wayland-client.json deleted file mode 100644 index 9ac1a0f..0000000 --- a/target/release/.fingerprint/wayland-client-c1b085b95164ac69/lib-wayland-client.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"dlopen\", \"scoped-tls\", \"use_system_lib\"]","target":8830642575506446204,"profile":3567329628440936607,"path":11920666446233189562,"deps":[[2798846484360888381,"libc",false,13429669429900478771],[2920709549851776663,"downcast_rs",false,977055159877356487],[6826192140200703270,"scoped_tls",false,14170813999781579967],[8078440120124259786,"wayland_commons",false,14277147749412290287],[12329203111399117198,"wayland_sys",false,16560068408594217684],[14051957667571541382,"bitflags",false,9125861142755300006],[16651451181094857152,"nix",false,9178904335280340366],[18047320069137138570,"build_script_build",false,3192033558832125881]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-client-c1b085b95164ac69/dep-lib-wayland-client"}}],"rustflags":[],"metadata":12138571088257282696,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/dep-lib-wayland-commons b/target/release/.fingerprint/wayland-commons-3541f118c90dec68/dep-lib-wayland-commons deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/dep-lib-wayland-commons and /dev/null differ diff --git a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/invoked.timestamp b/target/release/.fingerprint/wayland-commons-3541f118c90dec68/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/lib-wayland-commons b/target/release/.fingerprint/wayland-commons-3541f118c90dec68/lib-wayland-commons deleted file mode 100644 index adf1086..0000000 --- a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/lib-wayland-commons +++ /dev/null @@ -1 +0,0 @@ -efbe7c093c9e22c6 \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/lib-wayland-commons.json b/target/release/.fingerprint/wayland-commons-3541f118c90dec68/lib-wayland-commons.json deleted file mode 100644 index e406639..0000000 --- a/target/release/.fingerprint/wayland-commons-3541f118c90dec68/lib-wayland-commons.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13533037008250744741,"profile":3567329628440936607,"path":16750276836418622592,"deps":[[4424799446218848649,"once_cell",false,10140678700870178511],[12329203111399117198,"wayland_sys",false,16560068408594217684],[13327724608739232567,"smallvec",false,12872542214376845545],[16651451181094857152,"nix",false,9178904335280340366]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-commons-3541f118c90dec68/dep-lib-wayland-commons"}}],"rustflags":[],"metadata":15453107457803631891,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/dep-lib-wayland-cursor b/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/dep-lib-wayland-cursor deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/dep-lib-wayland-cursor and /dev/null differ diff --git a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/invoked.timestamp b/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/lib-wayland-cursor b/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/lib-wayland-cursor deleted file mode 100644 index 2d07ea3..0000000 --- a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/lib-wayland-cursor +++ /dev/null @@ -1 +0,0 @@ -1f7fdf666475014f \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/lib-wayland-cursor.json b/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/lib-wayland-cursor.json deleted file mode 100644 index 8a8f09d..0000000 --- a/target/release/.fingerprint/wayland-cursor-a26a1de45be57dcf/lib-wayland-cursor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13312342084314954272,"profile":3567329628440936607,"path":11561334683117757127,"deps":[[5217999806347776737,"xcursor",false,12821646684688042312],[16651451181094857152,"nix",false,9178904335280340366],[18047320069137138570,"wayland_client",false,13540302298875134991]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-cursor-a26a1de45be57dcf/dep-lib-wayland-cursor"}}],"rustflags":[],"metadata":15036803528122731246,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/build-script-build-script-build b/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/build-script-build-script-build deleted file mode 100644 index b049c4b..0000000 --- a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -0c5ae67a04c70c41 \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/build-script-build-script-build.json b/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/build-script-build-script-build.json deleted file mode 100644 index 4e11609..0000000 --- a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"unstable_protocols\", \"wayland-client\"]","target":2297296889237502566,"profile":1986123101310938075,"path":3223245370220743660,"deps":[[7784637021643553129,"wayland_scanner",false,2230311475105292712]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-protocols-015dfec90b61ee5d/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":5448603257851817465,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/dep-build-script-build-script-build b/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/invoked.timestamp b/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-protocols-015dfec90b61ee5d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-334c48720a6100cb/run-build-script-build-script-build b/target/release/.fingerprint/wayland-protocols-334c48720a6100cb/run-build-script-build-script-build deleted file mode 100644 index 3cb98fc..0000000 --- a/target/release/.fingerprint/wayland-protocols-334c48720a6100cb/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -26dad31d56005f23 \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-334c48720a6100cb/run-build-script-build-script-build.json b/target/release/.fingerprint/wayland-protocols-334c48720a6100cb/run-build-script-build-script-build.json deleted file mode 100644 index 25809d8..0000000 --- a/target/release/.fingerprint/wayland-protocols-334c48720a6100cb/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[12492735776745679186,"build_script_build",false,4687340134241557004]],"local":[{"RerunIfChanged":{"output":"release/build/wayland-protocols-334c48720a6100cb/output","paths":["./protocols/stable/presentation-time/presentation-time.xml","./protocols/stable/viewporter/viewporter.xml","./protocols/stable/xdg-shell/xdg-shell.xml","./misc/gtk-primary-selection.xml","./misc/input-method-unstable-v2.xml","./misc/server-decoration.xml","./protocols/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml","./protocols/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml","./protocols/unstable/input-method/input-method-unstable-v1.xml","./protocols/unstable/input-timestamps/input-timestamps-unstable-v1.xml","./protocols/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml","./protocols/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml","./protocols/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml","./protocols/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml","./protocols/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml","./protocols/unstable/primary-selection/primary-selection-unstable-v1.xml","./protocols/unstable/relative-pointer/relative-pointer-unstable-v1.xml","./protocols/unstable/tablet/tablet-unstable-v1.xml","./protocols/unstable/tablet/tablet-unstable-v2.xml","./protocols/unstable/text-input/text-input-unstable-v1.xml","./protocols/unstable/text-input/text-input-unstable-v3.xml","./protocols/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml","./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml","./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml","./protocols/unstable/xdg-output/xdg-output-unstable-v1.xml","./protocols/unstable/xdg-shell/xdg-shell-unstable-v5.xml","./protocols/unstable/xdg-shell/xdg-shell-unstable-v6.xml","./protocols/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml","./wlr-protocols/unstable/wlr-data-control-unstable-v1.xml","./wlr-protocols/unstable/wlr-export-dmabuf-unstable-v1.xml","./wlr-protocols/unstable/wlr-foreign-toplevel-management-unstable-v1.xml","./wlr-protocols/unstable/wlr-gamma-control-unstable-v1.xml","./wlr-protocols/unstable/wlr-input-inhibitor-unstable-v1.xml","./wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml","./wlr-protocols/unstable/wlr-output-management-unstable-v1.xml","./wlr-protocols/unstable/wlr-output-power-management-unstable-v1.xml","./wlr-protocols/unstable/wlr-screencopy-unstable-v1.xml","./wlr-protocols/unstable/wlr-virtual-pointer-unstable-v1.xml"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/dep-lib-wayland-protocols b/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/dep-lib-wayland-protocols deleted file mode 100644 index f3e47b5..0000000 Binary files a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/dep-lib-wayland-protocols and /dev/null differ diff --git a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/invoked.timestamp b/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/lib-wayland-protocols b/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/lib-wayland-protocols deleted file mode 100644 index c380e19..0000000 --- a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/lib-wayland-protocols +++ /dev/null @@ -1 +0,0 @@ -b6628befdb20a9be \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/lib-wayland-protocols.json b/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/lib-wayland-protocols.json deleted file mode 100644 index c2985f9..0000000 --- a/target/release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/lib-wayland-protocols.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"unstable_protocols\", \"wayland-client\"]","target":16039357341521637980,"profile":3567329628440936607,"path":6496046473489473682,"deps":[[8078440120124259786,"wayland_commons",false,14277147749412290287],[12492735776745679186,"build_script_build",false,2548756283982600742],[14051957667571541382,"bitflags",false,9125861142755300006],[18047320069137138570,"wayland_client",false,13540302298875134991]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-protocols-ab9978d0903a2b4a/dep-lib-wayland-protocols"}}],"rustflags":[],"metadata":5448603257851817465,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/dep-lib-wayland-scanner b/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/dep-lib-wayland-scanner deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/dep-lib-wayland-scanner and /dev/null differ diff --git a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/invoked.timestamp b/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/lib-wayland-scanner b/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/lib-wayland-scanner deleted file mode 100644 index 1fa6e29..0000000 --- a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/lib-wayland-scanner +++ /dev/null @@ -1 +0,0 @@ -a8e1204c78a8f31e \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/lib-wayland-scanner.json b/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/lib-wayland-scanner.json deleted file mode 100644 index 2df9ddd..0000000 --- a/target/release/.fingerprint/wayland-scanner-8adea65e57289d38/lib-wayland-scanner.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":13693045885187626535,"profile":1986123101310938075,"path":279432381414401243,"deps":[[2275467556785573469,"proc_macro2",false,8380415345624727534],[3475017103742128739,"quote",false,14914847888663346004],[14312076917259852888,"xml",false,14175970647899689207]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-scanner-8adea65e57289d38/dep-lib-wayland-scanner"}}],"rustflags":[],"metadata":12721312787639587656,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-682a5e9255364583/dep-lib-wayland-sys b/target/release/.fingerprint/wayland-sys-682a5e9255364583/dep-lib-wayland-sys deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-sys-682a5e9255364583/dep-lib-wayland-sys and /dev/null differ diff --git a/target/release/.fingerprint/wayland-sys-682a5e9255364583/invoked.timestamp b/target/release/.fingerprint/wayland-sys-682a5e9255364583/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-sys-682a5e9255364583/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-682a5e9255364583/lib-wayland-sys b/target/release/.fingerprint/wayland-sys-682a5e9255364583/lib-wayland-sys deleted file mode 100644 index 9ee349e..0000000 --- a/target/release/.fingerprint/wayland-sys-682a5e9255364583/lib-wayland-sys +++ /dev/null @@ -1 +0,0 @@ -d43a6d867a2ed1e5 \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-682a5e9255364583/lib-wayland-sys.json b/target/release/.fingerprint/wayland-sys-682a5e9255364583/lib-wayland-sys.json deleted file mode 100644 index 298a250..0000000 --- a/target/release/.fingerprint/wayland-sys-682a5e9255364583/lib-wayland-sys.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"dlib\", \"dlopen\", \"lazy_static\"]","target":6996853422386109668,"profile":3567329628440936607,"path":10066269731329268278,"deps":[[3454912282745707850,"dlib",false,10475360493313900603],[6685014296130524576,"lazy_static",false,10009603820080181149],[12329203111399117198,"build_script_build",false,3589969813489127233]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-sys-682a5e9255364583/dep-lib-wayland-sys"}}],"rustflags":[],"metadata":8369019086640056789,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-9be84ef10bd93169/run-build-script-build-script-build b/target/release/.fingerprint/wayland-sys-9be84ef10bd93169/run-build-script-build-script-build deleted file mode 100644 index 94ef9f0..0000000 --- a/target/release/.fingerprint/wayland-sys-9be84ef10bd93169/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -410f655f8622d231 \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-9be84ef10bd93169/run-build-script-build-script-build.json b/target/release/.fingerprint/wayland-sys-9be84ef10bd93169/run-build-script-build-script-build.json deleted file mode 100644 index 3d5e21b..0000000 --- a/target/release/.fingerprint/wayland-sys-9be84ef10bd93169/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"","target":0,"profile":0,"path":0,"deps":[[12329203111399117198,"build_script_build",false,1442187596819718662]],"local":[{"Precalculated":"0.29.5"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/build-script-build-script-build b/target/release/.fingerprint/wayland-sys-c33facd47af31f43/build-script-build-script-build deleted file mode 100644 index aefb8c4..0000000 --- a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -06e2e96ffaad0314 \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/build-script-build-script-build.json b/target/release/.fingerprint/wayland-sys-c33facd47af31f43/build-script-build-script-build.json deleted file mode 100644 index 42ce65b..0000000 --- a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"client\", \"dlib\", \"dlopen\", \"lazy_static\"]","target":2297296889237502566,"profile":1986123101310938075,"path":12292591643432465670,"deps":[[7306026711749381407,"pkg_config",false,10930974484019240565]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/wayland-sys-c33facd47af31f43/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":8369019086640056789,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/dep-build-script-build-script-build b/target/release/.fingerprint/wayland-sys-c33facd47af31f43/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/invoked.timestamp b/target/release/.fingerprint/wayland-sys-c33facd47af31f43/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/wayland-sys-c33facd47af31f43/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/dep-lib-x11-clipboard b/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/dep-lib-x11-clipboard deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/dep-lib-x11-clipboard and /dev/null differ diff --git a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/invoked.timestamp b/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/lib-x11-clipboard b/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/lib-x11-clipboard deleted file mode 100644 index a0c5b1b..0000000 --- a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/lib-x11-clipboard +++ /dev/null @@ -1 +0,0 @@ -2d460ea299800789 \ No newline at end of file diff --git a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/lib-x11-clipboard.json b/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/lib-x11-clipboard.json deleted file mode 100644 index 41d471a..0000000 --- a/target/release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/lib-x11-clipboard.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":3724932318939941341,"profile":3567329628440936607,"path":7630385497493509968,"deps":[[17880482883397757429,"x11rb",false,5894527586320077958]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/x11-clipboard-6c2c5d6b9840ef53/dep-lib-x11-clipboard"}}],"rustflags":[],"metadata":8750150688868579534,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/dep-lib-x11rb b/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/dep-lib-x11rb deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/dep-lib-x11rb and /dev/null differ diff --git a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/invoked.timestamp b/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/lib-x11rb b/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/lib-x11rb deleted file mode 100644 index 14960ba..0000000 --- a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/lib-x11rb +++ /dev/null @@ -1 +0,0 @@ -865459f59b91cd51 \ No newline at end of file diff --git a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/lib-x11rb.json b/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/lib-x11rb.json deleted file mode 100644 index 3e38ab2..0000000 --- a/target/release/.fingerprint/x11rb-0c57bb3a1e1cc07a/lib-x11rb.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"render\", \"shape\", \"xfixes\"]","target":16975432436819232461,"profile":3567329628440936607,"path":5627129961152325665,"deps":[[6025843456484356564,"x11rb_protocol",false,573588110163185791],[13892780867721656537,"gethostname",false,8535849850469145890],[16651451181094857152,"nix",false,9178904335280340366]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/x11rb-0c57bb3a1e1cc07a/dep-lib-x11rb"}}],"rustflags":[],"metadata":13849931517493031234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/dep-lib-x11rb-protocol b/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/dep-lib-x11rb-protocol deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/dep-lib-x11rb-protocol and /dev/null differ diff --git a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/invoked.timestamp b/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/lib-x11rb-protocol b/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/lib-x11rb-protocol deleted file mode 100644 index 09543fa..0000000 --- a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/lib-x11rb-protocol +++ /dev/null @@ -1 +0,0 @@ -7f10aae158cbf507 \ No newline at end of file diff --git a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/lib-x11rb-protocol.json b/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/lib-x11rb-protocol.json deleted file mode 100644 index cdb3e6e..0000000 --- a/target/release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/lib-x11rb-protocol.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[\"default\", \"nix\", \"render\", \"shape\", \"std\", \"xfixes\"]","target":16841609643206287419,"profile":3567329628440936607,"path":18131878450974829851,"deps":[[16651451181094857152,"nix",false,9178904335280340366]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/x11rb-protocol-f090899d7b2eb42b/dep-lib-x11rb-protocol"}}],"rustflags":[],"metadata":13849931517493031234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/dep-lib-xcursor b/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/dep-lib-xcursor deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/dep-lib-xcursor and /dev/null differ diff --git a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/invoked.timestamp b/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/lib-xcursor b/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/lib-xcursor deleted file mode 100644 index ed12617..0000000 --- a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/lib-xcursor +++ /dev/null @@ -1 +0,0 @@ -4849654cbaa3efb1 \ No newline at end of file diff --git a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/lib-xcursor.json b/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/lib-xcursor.json deleted file mode 100644 index 55c9cb1..0000000 --- a/target/release/.fingerprint/xcursor-00ef66e97a78b7aa/lib-xcursor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":10727463418502062191,"profile":3567329628440936607,"path":6586148654262831305,"deps":[[6954241390595330609,"nom",false,7982293468753010533]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/xcursor-00ef66e97a78b7aa/dep-lib-xcursor"}}],"rustflags":[],"metadata":4529178492820213734,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/dep-lib-xml b/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/dep-lib-xml deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/dep-lib-xml and /dev/null differ diff --git a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/invoked.timestamp b/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/lib-xml b/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/lib-xml deleted file mode 100644 index fc691ee..0000000 --- a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/lib-xml +++ /dev/null @@ -1 +0,0 @@ -f7d06c5e322abbc4 \ No newline at end of file diff --git a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/lib-xml.json b/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/lib-xml.json deleted file mode 100644 index b95d315..0000000 --- a/target/release/.fingerprint/xml-rs-06aa19ed188e2d84/lib-xml.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13806626623373421372,"features":"[]","target":14507557404748729204,"profile":1986123101310938075,"path":6908005168413633856,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/xml-rs-06aa19ed188e2d84/dep-lib-xml"}}],"rustflags":[],"metadata":5156272954509598117,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/Fast_Password_Generator b/target/release/Fast_Password_Generator deleted file mode 100755 index 747398a..0000000 Binary files a/target/release/Fast_Password_Generator and /dev/null differ diff --git a/target/release/Fast_Password_Generator.d b/target/release/Fast_Password_Generator.d deleted file mode 100644 index 924a658..0000000 --- a/target/release/Fast_Password_Generator.d +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/Fast_Password_Generator: /home/mohuva/Documents/Fast_Password_Generator/src/generator.rs /home/mohuva/Documents/Fast_Password_Generator/src/main.rs diff --git a/target/release/build/libc-52aee3d1d84a4121/build-script-build b/target/release/build/libc-52aee3d1d84a4121/build-script-build deleted file mode 100755 index 591f693..0000000 Binary files a/target/release/build/libc-52aee3d1d84a4121/build-script-build and /dev/null differ diff --git a/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121 b/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121 deleted file mode 100755 index 591f693..0000000 Binary files a/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121 and /dev/null differ diff --git a/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121.d b/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121.d deleted file mode 100644 index be1ad84..0000000 --- a/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/libc-52aee3d1d84a4121/build_script_build-52aee3d1d84a4121.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/build.rs: diff --git a/target/release/build/libc-684158ad5586c029/invoked.timestamp b/target/release/build/libc-684158ad5586c029/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/libc-684158ad5586c029/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/libc-684158ad5586c029/output b/target/release/build/libc-684158ad5586c029/output deleted file mode 100644 index 5e1874c..0000000 --- a/target/release/build/libc-684158ad5586c029/output +++ /dev/null @@ -1,15 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rustc-cfg=freebsd11 -cargo:rustc-cfg=libc_priv_mod_use -cargo:rustc-cfg=libc_union -cargo:rustc-cfg=libc_const_size_of -cargo:rustc-cfg=libc_align -cargo:rustc-cfg=libc_int128 -cargo:rustc-cfg=libc_core_cvoid -cargo:rustc-cfg=libc_packedN -cargo:rustc-cfg=libc_cfg_target_vendor -cargo:rustc-cfg=libc_non_exhaustive -cargo:rustc-cfg=libc_long_array -cargo:rustc-cfg=libc_ptr_addr_of -cargo:rustc-cfg=libc_underscore_const_names -cargo:rustc-cfg=libc_const_extern_fn diff --git a/target/release/build/libc-684158ad5586c029/root-output b/target/release/build/libc-684158ad5586c029/root-output deleted file mode 100644 index 3941b26..0000000 --- a/target/release/build/libc-684158ad5586c029/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/libc-684158ad5586c029/out \ No newline at end of file diff --git a/target/release/build/libc-684158ad5586c029/stderr b/target/release/build/libc-684158ad5586c029/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/memchr-0aee7e8cc7430fc3/build-script-build b/target/release/build/memchr-0aee7e8cc7430fc3/build-script-build deleted file mode 100755 index f50f98f..0000000 Binary files a/target/release/build/memchr-0aee7e8cc7430fc3/build-script-build and /dev/null differ diff --git a/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3 b/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3 deleted file mode 100755 index f50f98f..0000000 Binary files a/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3 and /dev/null differ diff --git a/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3.d b/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3.d deleted file mode 100644 index ec76b3f..0000000 --- a/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/memchr-0aee7e8cc7430fc3/build_script_build-0aee7e8cc7430fc3.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/build.rs: diff --git a/target/release/build/memchr-768c6a564242ac72/invoked.timestamp b/target/release/build/memchr-768c6a564242ac72/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/memchr-768c6a564242ac72/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/memchr-768c6a564242ac72/output b/target/release/build/memchr-768c6a564242ac72/output deleted file mode 100644 index 520482b..0000000 --- a/target/release/build/memchr-768c6a564242ac72/output +++ /dev/null @@ -1,4 +0,0 @@ -cargo:rustc-cfg=memchr_runtime_simd -cargo:rustc-cfg=memchr_runtime_sse2 -cargo:rustc-cfg=memchr_runtime_sse42 -cargo:rustc-cfg=memchr_runtime_avx diff --git a/target/release/build/memchr-768c6a564242ac72/root-output b/target/release/build/memchr-768c6a564242ac72/root-output deleted file mode 100644 index f1dd59c..0000000 --- a/target/release/build/memchr-768c6a564242ac72/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/memchr-768c6a564242ac72/out \ No newline at end of file diff --git a/target/release/build/memchr-768c6a564242ac72/stderr b/target/release/build/memchr-768c6a564242ac72/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/memoffset-09861a32d92b082e/invoked.timestamp b/target/release/build/memoffset-09861a32d92b082e/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/memoffset-09861a32d92b082e/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/memoffset-09861a32d92b082e/out/probe0.ll b/target/release/build/memoffset-09861a32d92b082e/out/probe0.ll deleted file mode 100644 index fe2485e..0000000 --- a/target/release/build/memoffset-09861a32d92b082e/out/probe0.ll +++ /dev/null @@ -1,9 +0,0 @@ -; ModuleID = 'probe0.352f8c44edfbeb71-cgu.0' -source_filename = "probe0.352f8c44edfbeb71-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 8, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/release/build/memoffset-09861a32d92b082e/output b/target/release/build/memoffset-09861a32d92b082e/output deleted file mode 100644 index 45e8868..0000000 --- a/target/release/build/memoffset-09861a32d92b082e/output +++ /dev/null @@ -1,5 +0,0 @@ -cargo:rustc-cfg=tuple_ty -cargo:rustc-cfg=allow_clippy -cargo:rustc-cfg=maybe_uninit -cargo:rustc-cfg=doctests -cargo:rustc-cfg=raw_ref_macros diff --git a/target/release/build/memoffset-09861a32d92b082e/root-output b/target/release/build/memoffset-09861a32d92b082e/root-output deleted file mode 100644 index 6b882ad..0000000 --- a/target/release/build/memoffset-09861a32d92b082e/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/memoffset-09861a32d92b082e/out \ No newline at end of file diff --git a/target/release/build/memoffset-09861a32d92b082e/stderr b/target/release/build/memoffset-09861a32d92b082e/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/memoffset-37fcd3313f3dcac0/build-script-build b/target/release/build/memoffset-37fcd3313f3dcac0/build-script-build deleted file mode 100755 index 8479900..0000000 Binary files a/target/release/build/memoffset-37fcd3313f3dcac0/build-script-build and /dev/null differ diff --git a/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0 b/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0 deleted file mode 100755 index 8479900..0000000 Binary files a/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0 and /dev/null differ diff --git a/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0.d b/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0.d deleted file mode 100644 index a0c8887..0000000 --- a/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/memoffset-37fcd3313f3dcac0/build_script_build-37fcd3313f3dcac0.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/build.rs: diff --git a/target/release/build/proc-macro2-3ab8b680f253f272/invoked.timestamp b/target/release/build/proc-macro2-3ab8b680f253f272/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/proc-macro2-3ab8b680f253f272/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro2-3ab8b680f253f272/output b/target/release/build/proc-macro2-3ab8b680f253f272/output deleted file mode 100644 index 18f1bc8..0000000 --- a/target/release/build/proc-macro2-3ab8b680f253f272/output +++ /dev/null @@ -1,2 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rustc-cfg=wrap_proc_macro diff --git a/target/release/build/proc-macro2-3ab8b680f253f272/root-output b/target/release/build/proc-macro2-3ab8b680f253f272/root-output deleted file mode 100644 index dccdc4f..0000000 --- a/target/release/build/proc-macro2-3ab8b680f253f272/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/proc-macro2-3ab8b680f253f272/out \ No newline at end of file diff --git a/target/release/build/proc-macro2-3ab8b680f253f272/stderr b/target/release/build/proc-macro2-3ab8b680f253f272/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/proc-macro2-78b4e5f08e573c6a/build-script-build b/target/release/build/proc-macro2-78b4e5f08e573c6a/build-script-build deleted file mode 100755 index e41c4f3..0000000 Binary files a/target/release/build/proc-macro2-78b4e5f08e573c6a/build-script-build and /dev/null differ diff --git a/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a b/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a deleted file mode 100755 index e41c4f3..0000000 Binary files a/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a and /dev/null differ diff --git a/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a.d b/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a.d deleted file mode 100644 index f6e4b51..0000000 --- a/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/proc-macro2-78b4e5f08e573c6a/build_script_build-78b4e5f08e573c6a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/build.rs: diff --git a/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/invoked.timestamp b/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/output b/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/output deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/root-output b/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/root-output deleted file mode 100644 index 53a0a73..0000000 --- a/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/out \ No newline at end of file diff --git a/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/stderr b/target/release/build/smithay-client-toolkit-40ec55b3488bb39c/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/smithay-client-toolkit-7205652829032719/build-script-build b/target/release/build/smithay-client-toolkit-7205652829032719/build-script-build deleted file mode 100755 index ba63abd..0000000 Binary files a/target/release/build/smithay-client-toolkit-7205652829032719/build-script-build and /dev/null differ diff --git a/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719 b/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719 deleted file mode 100755 index ba63abd..0000000 Binary files a/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719 and /dev/null differ diff --git a/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719.d b/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719.d deleted file mode 100644 index 8050a62..0000000 --- a/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/smithay-client-toolkit-7205652829032719/build_script_build-7205652829032719.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/build.rs: diff --git a/target/release/build/wayland-client-337aa938d371d658/invoked.timestamp b/target/release/build/wayland-client-337aa938d371d658/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/wayland-client-337aa938d371d658/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs b/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs deleted file mode 100644 index 10f12ee..0000000 --- a/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs +++ /dev/null @@ -1,9923 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 8] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "core global object\n\nThe core global object. This is a special singleton object. It\nis used for internal Wayland protocol features."] -pub mod wl_display { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "global error values\n\nThese errors are global and can be emitted in response to any\nserver request."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "server couldn't find object"] - InvalidObject = 0, - #[doc = "method doesn't exist on the specified interface or malformed request"] - InvalidMethod = 1, - #[doc = "server is out of memory"] - NoMemory = 2, - #[doc = "implementation error in compositor"] - Implementation = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidObject), - 1 => Some(Error::InvalidMethod), - 2 => Some(Error::NoMemory), - 3 => Some(Error::Implementation), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "asynchronous roundtrip\n\nThe sync request asks the server to emit the 'done' event\non the returned wl_callback object. Since requests are\nhandled in-order and events are delivered in-order, this can\nbe used as a barrier to ensure all previous requests and the\nresulting events have been handled.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the event serial."] - Sync {}, - #[doc = "get global registry object\n\nThis request creates a registry object that allows the client\nto list and bind the global objects available from the\ncompositor.\n\nIt should be noted that the server side resources consumed in\nresponse to a get_registry request can only be released when the\nclient disconnects, not when the client side proxy is destroyed.\nTherefore, clients should invoke get_registry as infrequently as\npossible to avoid wasting memory."] - GetRegistry {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "sync", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_registry", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Sync { .. } => 0, - Request::GetRegistry { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Sync { .. } => 1, - Request::GetRegistry { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Sync {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetRegistry {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Sync {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetRegistry {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "fatal error event\n\nThe error event is sent out when a fatal (non-recoverable)\nerror has occurred. The object_id argument is the object\nwhere the error occurred, most often in response to a request\nto that object. The code identifies the error and is defined\nby the object interface. As such, each interface defines its\nown set of error codes. The message is a brief description\nof the error, for (debugging) convenience."] - Error { - object_id: AnonymousObject, - code: u32, - message: String, - }, - #[doc = "acknowledge object ID deletion\n\nThis event is used internally by the object ID management\nlogic. When a client deletes an object that it had created,\nthe server will send this event to acknowledge that it has\nseen the delete request. When the client receives this event,\nit will know that it can safely reuse the object ID."] - DeleteId { id: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "error", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "delete_id", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Error { .. } => 0, - Event::DeleteId { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Error { .. } => 1, - Event::DeleteId { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Error { - object_id: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - code: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - message: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::DeleteId { - id: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Error { - object_id: Proxy::::from_c_ptr(_args[0].o as *mut _) - .into(), - code: _args[1].u, - message: ::std::ffi::CStr::from_ptr(_args[2].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DeleteId { id: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDisplay(Proxy); - impl AsRef> for WlDisplay { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDisplay { - #[inline] - fn from(value: Proxy) -> Self { - WlDisplay(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDisplay) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDisplay { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDisplay { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_display"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_display_interface } - } - } - impl WlDisplay { - #[doc = "asynchronous roundtrip\n\nThe sync request asks the server to emit the 'done' event\non the returned wl_callback object. Since requests are\nhandled in-order and events are delivered in-order, this can\nbe used as a barrier to ensure all previous requests and the\nresulting events have been handled.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the event serial."] - pub fn sync(&self) -> Main { - let msg = Request::Sync {}; - self.0.send(msg, None).unwrap() - } - #[doc = "get global registry object\n\nThis request creates a registry object that allows the client\nto list and bind the global objects available from the\ncompositor.\n\nIt should be noted that the server side resources consumed in\nresponse to a get_registry request can only be released when the\nclient disconnects, not when the client side proxy is destroyed.\nTherefore, clients should invoke get_registry as infrequently as\npossible to avoid wasting memory."] - pub fn get_registry(&self) -> Main { - let msg = Request::GetRegistry {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SYNC_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_REGISTRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ERROR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DELETE_ID_SINCE: u32 = 1u32; - static mut wl_display_requests_sync_types: [*const wl_interface; 1] = - [unsafe { &super::wl_callback::wl_callback_interface as *const wl_interface }]; - static mut wl_display_requests_get_registry_types: [*const wl_interface; 1] = - [unsafe { &super::wl_registry::wl_registry_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_display_requests: [wl_message; 2] = [ - wl_message { - name: b"sync\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_display_requests_sync_types as *const _ }, - }, - wl_message { - name: b"get_registry\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_display_requests_get_registry_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_display_events: [wl_message; 2] = [ - wl_message { - name: b"error\0" as *const u8 as *const c_char, - signature: b"ous\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_id\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_display_interface: wl_interface = wl_interface { - name: b"wl_display\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wl_display_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_display_events as *const _ }, - }; -} -#[doc = "global registry object\n\nThe singleton global registry object. The server has a number of\nglobal objects that are available to all clients. These objects\ntypically represent an actual object in the server (for example,\nan input device) or they are singleton objects that provide\nextension functionality.\n\nWhen a client creates a registry object, the registry object\nwill emit a global event for each global currently in the\nregistry. Globals come and go as a result of device or\nmonitor hotplugs, reconfiguration or other events, and the\nregistry will send out global and global_remove events to\nkeep the client up to date with the changes. To mark the end\nof the initial burst of events, the client can use the\nwl_display.sync request immediately after calling\nwl_display.get_registry.\n\nA client can bind to a global object by using the bind\nrequest. This creates a client-side handle that lets the object\nemit events to the client and lets the client invoke requests on\nthe object."] -pub mod wl_registry { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "bind an object to the display\n\nBinds a new, client-created object to the server using the\nspecified name as the identifier."] - Bind { name: u32, id: (String, u32) }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "bind", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::NewId], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Bind { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Bind { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Bind { name, id } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(name), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(id.0.into()) - })), - Argument::Uint(id.1), - Argument::NewId(0), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Bind { name, id } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = name; - let _arg_1_s = ::std::ffi::CString::new(id.0).unwrap(); - _args_array[1].s = _arg_1_s.as_ptr(); - _args_array[2].u = id.1; - _args_array[3].o = ::std::ptr::null_mut(); - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "announce global object\n\nNotify the client of global objects.\n\nThe event notifies the client that a global object with\nthe given name is now available, and it implements the\ngiven version of the given interface."] - Global { - name: u32, - interface: String, - version: u32, - }, - #[doc = "announce removal of global object\n\nNotify the client of removed global objects.\n\nThis event notifies the client that the global identified\nby name is no longer available. If the client bound to\nthe global using the bind request, the client should now\ndestroy that object.\n\nThe object remains valid and requests to the object will be\nignored until the client destroys it, to avoid races between\nthe global going away and a client sending a request to it."] - GlobalRemove { name: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "global", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "global_remove", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Global { .. } => 0, - Event::GlobalRemove { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Global { .. } => 1, - Event::GlobalRemove { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Global { - name: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - interface: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - version: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::GlobalRemove { - name: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Global { - name: _args[0].u, - interface: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - version: _args[2].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::GlobalRemove { name: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlRegistry(Proxy); - impl AsRef> for WlRegistry { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlRegistry { - #[inline] - fn from(value: Proxy) -> Self { - WlRegistry(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlRegistry) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlRegistry { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlRegistry { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_registry"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_registry_interface } - } - } - impl WlRegistry { - #[doc = "bind an object to the display\n\nBinds a new, client-created object to the server using the\nspecified name as the identifier."] - pub fn bind> + AsRef>>( - &self, - version: u32, - name: u32, - ) -> Main { - let msg = Request::Bind { - name: name, - id: (T::NAME.into(), version), - }; - self.0.send(msg, Some(version)).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_BIND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GLOBAL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GLOBAL_REMOVE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_registry_requests: [wl_message; 1] = [wl_message { - name: b"bind\0" as *const u8 as *const c_char, - signature: b"usun\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_registry_events: [wl_message; 2] = [ - wl_message { - name: b"global\0" as *const u8 as *const c_char, - signature: b"usu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"global_remove\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_registry_interface: wl_interface = wl_interface { - name: b"wl_registry\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_registry_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_registry_events as *const _ }, - }; -} -#[doc = "callback object\n\nClients can handle the 'done' event to get notified when\nthe related request is done."] -pub mod wl_callback { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "done event\n\nNotify the client when the related request is done.\n\nThis is a destructor, once received this object cannot be used any longer."] - Done { callback_data: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "done", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Event::Done { .. } => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Done { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Done { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Done { - callback_data: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Done { - callback_data: _args[0].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlCallback(Proxy); - impl AsRef> for WlCallback { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlCallback { - #[inline] - fn from(value: Proxy) -> Self { - WlCallback(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlCallback) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlCallback { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlCallback { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_callback"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_callback_interface } - } - } - impl WlCallback {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_callback_events: [wl_message; 1] = [wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_callback_interface: wl_interface = wl_interface { - name: b"wl_callback\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 1, - events: unsafe { &wl_callback_events as *const _ }, - }; -} -#[doc = "the compositor singleton\n\nA compositor. This object is a singleton global. The\ncompositor is in charge of combining the contents of multiple\nsurfaces into one displayable output."] -pub mod wl_compositor { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create new surface\n\nAsk the compositor to create a new surface."] - CreateSurface {}, - #[doc = "create new region\n\nAsk the compositor to create a new region."] - CreateRegion {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_surface", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "create_region", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateSurface { .. } => 0, - Request::CreateRegion { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateSurface { .. } => 1, - Request::CreateRegion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateSurface {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::CreateRegion {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateSurface {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::CreateRegion {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlCompositor(Proxy); - impl AsRef> for WlCompositor { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlCompositor { - #[inline] - fn from(value: Proxy) -> Self { - WlCompositor(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlCompositor) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlCompositor { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlCompositor { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_compositor"; - const VERSION: u32 = 5; - fn c_interface() -> *const wl_interface { - unsafe { &wl_compositor_interface } - } - } - impl WlCompositor { - #[doc = "create new surface\n\nAsk the compositor to create a new surface."] - pub fn create_surface(&self) -> Main { - let msg = Request::CreateSurface {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create new region\n\nAsk the compositor to create a new region."] - pub fn create_region(&self) -> Main { - let msg = Request::CreateRegion {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_REGION_SINCE: u32 = 1u32; - static mut wl_compositor_requests_create_surface_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - static mut wl_compositor_requests_create_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_compositor_requests: [wl_message; 2] = [ - wl_message { - name: b"create_surface\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_compositor_requests_create_surface_types as *const _ }, - }, - wl_message { - name: b"create_region\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_compositor_requests_create_region_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_compositor_interface: wl_interface = wl_interface { - name: b"wl_compositor\0" as *const u8 as *const c_char, - version: 5, - request_count: 2, - requests: unsafe { &wl_compositor_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a shared memory pool\n\nThe wl_shm_pool object encapsulates a piece of memory shared\nbetween the compositor and client. Through the wl_shm_pool\nobject, the client can allocate shared memory wl_buffer objects.\nAll objects created through the same pool share the same\nunderlying mapped memory. Reusing the mapped memory avoids the\nsetup/teardown overhead and is useful when interactively resizing\na surface or for many small buffers."] -pub mod wl_shm_pool { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a buffer from the pool\n\nCreate a wl_buffer object from the pool.\n\nThe buffer is created offset bytes into the pool and has\nwidth and height as specified. The stride argument specifies\nthe number of bytes from the beginning of one row to the beginning\nof the next. The format is the pixel format of the buffer and\nmust be one of those advertised through the wl_shm.format event.\n\nA buffer will keep a reference to the pool it was created from\nso it is valid to destroy the pool immediately after creating\na buffer from it."] - CreateBuffer { - offset: i32, - width: i32, - height: i32, - stride: i32, - format: super::wl_shm::Format, - }, - #[doc = "destroy the pool\n\nDestroy the shared memory pool.\n\nThe mmapped memory will be released when all\nbuffers that have been created from this pool\nare gone.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "change the size of the pool mapping\n\nThis request will cause the server to remap the backing memory\nfor the pool from the file descriptor passed when the pool was\ncreated, but using the new size. This request can only be\nused to make the pool bigger."] - Resize { size: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_buffer", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateBuffer { .. } => 0, - Request::Destroy => 1, - Request::Resize { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateBuffer { .. } => 1, - Request::Destroy => 1, - Request::Resize { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateBuffer { - offset, - width, - height, - stride, - format, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Int(offset), - Argument::Int(width), - Argument::Int(height), - Argument::Int(stride), - Argument::Uint(format.to_raw()), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::Resize { size } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(size),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateBuffer { - offset, - width, - height, - stride, - format, - } => { - let mut _args_array: [wl_argument; 6] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = offset; - _args_array[2].i = width; - _args_array[3].i = height; - _args_array[4].i = stride; - _args_array[5].u = format.to_raw(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::Resize { size } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = size; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShmPool(Proxy); - impl AsRef> for WlShmPool { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShmPool { - #[inline] - fn from(value: Proxy) -> Self { - WlShmPool(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShmPool) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShmPool { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShmPool { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shm_pool"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shm_pool_interface } - } - } - impl WlShmPool { - #[doc = "create a buffer from the pool\n\nCreate a wl_buffer object from the pool.\n\nThe buffer is created offset bytes into the pool and has\nwidth and height as specified. The stride argument specifies\nthe number of bytes from the beginning of one row to the beginning\nof the next. The format is the pixel format of the buffer and\nmust be one of those advertised through the wl_shm.format event.\n\nA buffer will keep a reference to the pool it was created from\nso it is valid to destroy the pool immediately after creating\na buffer from it."] - pub fn create_buffer( - &self, - offset: i32, - width: i32, - height: i32, - stride: i32, - format: super::wl_shm::Format, - ) -> Main { - let msg = Request::CreateBuffer { - offset: offset, - width: width, - height: height, - stride: stride, - format: format, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the pool\n\nDestroy the shared memory pool.\n\nThe mmapped memory will be released when all\nbuffers that have been created from this pool\nare gone.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "change the size of the pool mapping\n\nThis request will cause the server to remap the backing memory\nfor the pool from the file descriptor passed when the pool was\ncreated, but using the new size. This request can only be\nused to make the pool bigger."] - pub fn resize(&self, size: i32) -> () { - let msg = Request::Resize { size: size }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_BUFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - static mut wl_shm_pool_requests_create_buffer_types: [*const wl_interface; 6] = [ - unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shm_pool_requests: [wl_message; 3] = [ - wl_message { - name: b"create_buffer\0" as *const u8 as *const c_char, - signature: b"niiiiu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shm_pool_requests_create_buffer_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shm_pool_interface: wl_interface = wl_interface { - name: b"wl_shm_pool\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &wl_shm_pool_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "shared memory support\n\nA singleton global object that provides support for shared\nmemory.\n\nClients can create wl_shm_pool objects using the create_pool\nrequest.\n\nAt connection setup time, the wl_shm object emits one or more\nformat events to inform clients about the valid pixel formats\nthat can be used for buffers."] -pub mod wl_shm { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "wl_shm error values\n\nThese errors can be emitted in response to wl_shm requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "buffer format is not known"] - InvalidFormat = 0, - #[doc = "invalid size or stride during pool or buffer creation"] - InvalidStride = 1, - #[doc = "mmapping the file descriptor failed"] - InvalidFd = 2, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidFormat), - 1 => Some(Error::InvalidStride), - 2 => Some(Error::InvalidFd), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "pixel formats\n\nThis describes the memory layout of an individual pixel.\n\nAll renderers should support argb8888 and xrgb8888 but any other\nformats are optional and may not be supported by the particular\nrenderer in use.\n\nThe drm format codes match the macros defined in drm_fourcc.h, except\nargb8888 and xrgb8888. The formats actually supported by the compositor\nwill be reported by the format event.\n\nFor all wl_shm formats and unless specified in another protocol\nextension, pre-multiplied alpha is used for pixel values."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Format { - #[doc = "32-bit ARGB format, [31:0] A:R:G:B 8:8:8:8 little endian"] - Argb8888 = 0, - #[doc = "32-bit RGB format, [31:0] x:R:G:B 8:8:8:8 little endian"] - Xrgb8888 = 1, - #[doc = "8-bit color index format, [7:0] C"] - C8 = 538982467, - #[doc = "8-bit RGB format, [7:0] R:G:B 3:3:2"] - Rgb332 = 943867730, - #[doc = "8-bit BGR format, [7:0] B:G:R 2:3:3"] - Bgr233 = 944916290, - #[doc = "16-bit xRGB format, [15:0] x:R:G:B 4:4:4:4 little endian"] - Xrgb4444 = 842093144, - #[doc = "16-bit xBGR format, [15:0] x:B:G:R 4:4:4:4 little endian"] - Xbgr4444 = 842089048, - #[doc = "16-bit RGBx format, [15:0] R:G:B:x 4:4:4:4 little endian"] - Rgbx4444 = 842094674, - #[doc = "16-bit BGRx format, [15:0] B:G:R:x 4:4:4:4 little endian"] - Bgrx4444 = 842094658, - #[doc = "16-bit ARGB format, [15:0] A:R:G:B 4:4:4:4 little endian"] - Argb4444 = 842093121, - #[doc = "16-bit ABGR format, [15:0] A:B:G:R 4:4:4:4 little endian"] - Abgr4444 = 842089025, - #[doc = "16-bit RBGA format, [15:0] R:G:B:A 4:4:4:4 little endian"] - Rgba4444 = 842088786, - #[doc = "16-bit BGRA format, [15:0] B:G:R:A 4:4:4:4 little endian"] - Bgra4444 = 842088770, - #[doc = "16-bit xRGB format, [15:0] x:R:G:B 1:5:5:5 little endian"] - Xrgb1555 = 892424792, - #[doc = "16-bit xBGR 1555 format, [15:0] x:B:G:R 1:5:5:5 little endian"] - Xbgr1555 = 892420696, - #[doc = "16-bit RGBx 5551 format, [15:0] R:G:B:x 5:5:5:1 little endian"] - Rgbx5551 = 892426322, - #[doc = "16-bit BGRx 5551 format, [15:0] B:G:R:x 5:5:5:1 little endian"] - Bgrx5551 = 892426306, - #[doc = "16-bit ARGB 1555 format, [15:0] A:R:G:B 1:5:5:5 little endian"] - Argb1555 = 892424769, - #[doc = "16-bit ABGR 1555 format, [15:0] A:B:G:R 1:5:5:5 little endian"] - Abgr1555 = 892420673, - #[doc = "16-bit RGBA 5551 format, [15:0] R:G:B:A 5:5:5:1 little endian"] - Rgba5551 = 892420434, - #[doc = "16-bit BGRA 5551 format, [15:0] B:G:R:A 5:5:5:1 little endian"] - Bgra5551 = 892420418, - #[doc = "16-bit RGB 565 format, [15:0] R:G:B 5:6:5 little endian"] - Rgb565 = 909199186, - #[doc = "16-bit BGR 565 format, [15:0] B:G:R 5:6:5 little endian"] - Bgr565 = 909199170, - #[doc = "24-bit RGB format, [23:0] R:G:B little endian"] - Rgb888 = 875710290, - #[doc = "24-bit BGR format, [23:0] B:G:R little endian"] - Bgr888 = 875710274, - #[doc = "32-bit xBGR format, [31:0] x:B:G:R 8:8:8:8 little endian"] - Xbgr8888 = 875709016, - #[doc = "32-bit RGBx format, [31:0] R:G:B:x 8:8:8:8 little endian"] - Rgbx8888 = 875714642, - #[doc = "32-bit BGRx format, [31:0] B:G:R:x 8:8:8:8 little endian"] - Bgrx8888 = 875714626, - #[doc = "32-bit ABGR format, [31:0] A:B:G:R 8:8:8:8 little endian"] - Abgr8888 = 875708993, - #[doc = "32-bit RGBA format, [31:0] R:G:B:A 8:8:8:8 little endian"] - Rgba8888 = 875708754, - #[doc = "32-bit BGRA format, [31:0] B:G:R:A 8:8:8:8 little endian"] - Bgra8888 = 875708738, - #[doc = "32-bit xRGB format, [31:0] x:R:G:B 2:10:10:10 little endian"] - Xrgb2101010 = 808669784, - #[doc = "32-bit xBGR format, [31:0] x:B:G:R 2:10:10:10 little endian"] - Xbgr2101010 = 808665688, - #[doc = "32-bit RGBx format, [31:0] R:G:B:x 10:10:10:2 little endian"] - Rgbx1010102 = 808671314, - #[doc = "32-bit BGRx format, [31:0] B:G:R:x 10:10:10:2 little endian"] - Bgrx1010102 = 808671298, - #[doc = "32-bit ARGB format, [31:0] A:R:G:B 2:10:10:10 little endian"] - Argb2101010 = 808669761, - #[doc = "32-bit ABGR format, [31:0] A:B:G:R 2:10:10:10 little endian"] - Abgr2101010 = 808665665, - #[doc = "32-bit RGBA format, [31:0] R:G:B:A 10:10:10:2 little endian"] - Rgba1010102 = 808665426, - #[doc = "32-bit BGRA format, [31:0] B:G:R:A 10:10:10:2 little endian"] - Bgra1010102 = 808665410, - #[doc = "packed YCbCr format, [31:0] Cr0:Y1:Cb0:Y0 8:8:8:8 little endian"] - Yuyv = 1448695129, - #[doc = "packed YCbCr format, [31:0] Cb0:Y1:Cr0:Y0 8:8:8:8 little endian"] - Yvyu = 1431918169, - #[doc = "packed YCbCr format, [31:0] Y1:Cr0:Y0:Cb0 8:8:8:8 little endian"] - Uyvy = 1498831189, - #[doc = "packed YCbCr format, [31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian"] - Vyuy = 1498765654, - #[doc = "packed AYCbCr format, [31:0] A:Y:Cb:Cr 8:8:8:8 little endian"] - Ayuv = 1448433985, - #[doc = "2 plane YCbCr Cr:Cb format, 2x2 subsampled Cr:Cb plane"] - Nv12 = 842094158, - #[doc = "2 plane YCbCr Cb:Cr format, 2x2 subsampled Cb:Cr plane"] - Nv21 = 825382478, - #[doc = "2 plane YCbCr Cr:Cb format, 2x1 subsampled Cr:Cb plane"] - Nv16 = 909203022, - #[doc = "2 plane YCbCr Cb:Cr format, 2x1 subsampled Cb:Cr plane"] - Nv61 = 825644622, - #[doc = "3 plane YCbCr format, 4x4 subsampled Cb (1) and Cr (2) planes"] - Yuv410 = 961959257, - #[doc = "3 plane YCbCr format, 4x4 subsampled Cr (1) and Cb (2) planes"] - Yvu410 = 961893977, - #[doc = "3 plane YCbCr format, 4x1 subsampled Cb (1) and Cr (2) planes"] - Yuv411 = 825316697, - #[doc = "3 plane YCbCr format, 4x1 subsampled Cr (1) and Cb (2) planes"] - Yvu411 = 825316953, - #[doc = "3 plane YCbCr format, 2x2 subsampled Cb (1) and Cr (2) planes"] - Yuv420 = 842093913, - #[doc = "3 plane YCbCr format, 2x2 subsampled Cr (1) and Cb (2) planes"] - Yvu420 = 842094169, - #[doc = "3 plane YCbCr format, 2x1 subsampled Cb (1) and Cr (2) planes"] - Yuv422 = 909202777, - #[doc = "3 plane YCbCr format, 2x1 subsampled Cr (1) and Cb (2) planes"] - Yvu422 = 909203033, - #[doc = "3 plane YCbCr format, non-subsampled Cb (1) and Cr (2) planes"] - Yuv444 = 875713881, - #[doc = "3 plane YCbCr format, non-subsampled Cr (1) and Cb (2) planes"] - Yvu444 = 875714137, - #[doc = "[7:0] R"] - R8 = 538982482, - #[doc = "[15:0] R little endian"] - R16 = 540422482, - #[doc = "[15:0] R:G 8:8 little endian"] - Rg88 = 943212370, - #[doc = "[15:0] G:R 8:8 little endian"] - Gr88 = 943215175, - #[doc = "[31:0] R:G 16:16 little endian"] - Rg1616 = 842221394, - #[doc = "[31:0] G:R 16:16 little endian"] - Gr1616 = 842224199, - #[doc = "[63:0] x:R:G:B 16:16:16:16 little endian"] - Xrgb16161616f = 1211388504, - #[doc = "[63:0] x:B:G:R 16:16:16:16 little endian"] - Xbgr16161616f = 1211384408, - #[doc = "[63:0] A:R:G:B 16:16:16:16 little endian"] - Argb16161616f = 1211388481, - #[doc = "[63:0] A:B:G:R 16:16:16:16 little endian"] - Abgr16161616f = 1211384385, - #[doc = "[31:0] X:Y:Cb:Cr 8:8:8:8 little endian"] - Xyuv8888 = 1448434008, - #[doc = "[23:0] Cr:Cb:Y 8:8:8 little endian"] - Vuy888 = 875713878, - #[doc = "Y followed by U then V, 10:10:10. Non-linear modifier only"] - Vuy101010 = 808670550, - #[doc = "[63:0] Cr0:0:Y1:0:Cb0:0:Y0:0 10:6:10:6:10:6:10:6 little endian per 2 Y pixels"] - Y210 = 808530521, - #[doc = "[63:0] Cr0:0:Y1:0:Cb0:0:Y0:0 12:4:12:4:12:4:12:4 little endian per 2 Y pixels"] - Y212 = 842084953, - #[doc = "[63:0] Cr0:Y1:Cb0:Y0 16:16:16:16 little endian per 2 Y pixels"] - Y216 = 909193817, - #[doc = "[31:0] A:Cr:Y:Cb 2:10:10:10 little endian"] - Y410 = 808531033, - #[doc = "[63:0] A:0:Cr:0:Y:0:Cb:0 12:4:12:4:12:4:12:4 little endian"] - Y412 = 842085465, - #[doc = "[63:0] A:Cr:Y:Cb 16:16:16:16 little endian"] - Y416 = 909194329, - #[doc = "[31:0] X:Cr:Y:Cb 2:10:10:10 little endian"] - Xvyu2101010 = 808670808, - #[doc = "[63:0] X:0:Cr:0:Y:0:Cb:0 12:4:12:4:12:4:12:4 little endian"] - Xvyu1216161616 = 909334104, - #[doc = "[63:0] X:Cr:Y:Cb 16:16:16:16 little endian"] - Xvyu16161616 = 942954072, - #[doc = "[63:0] A3:A2:Y3:0:Cr0:0:Y2:0:A1:A0:Y1:0:Cb0:0:Y0:0 1:1:8:2:8:2:8:2:1:1:8:2:8:2:8:2 little endian"] - Y0l0 = 810299481, - #[doc = "[63:0] X3:X2:Y3:0:Cr0:0:Y2:0:X1:X0:Y1:0:Cb0:0:Y0:0 1:1:8:2:8:2:8:2:1:1:8:2:8:2:8:2 little endian"] - X0l0 = 810299480, - #[doc = "[63:0] A3:A2:Y3:Cr0:Y2:A1:A0:Y1:Cb0:Y0 1:1:10:10:10:1:1:10:10:10 little endian"] - Y0l2 = 843853913, - #[doc = "[63:0] X3:X2:Y3:Cr0:Y2:X1:X0:Y1:Cb0:Y0 1:1:10:10:10:1:1:10:10:10 little endian"] - X0l2 = 843853912, - Yuv4208bit = 942691673, - Yuv42010bit = 808539481, - Xrgb8888A8 = 943805016, - Xbgr8888A8 = 943800920, - Rgbx8888A8 = 943806546, - Bgrx8888A8 = 943806530, - Rgb888A8 = 943798354, - Bgr888A8 = 943798338, - Rgb565A8 = 943797586, - Bgr565A8 = 943797570, - #[doc = "non-subsampled Cr:Cb plane"] - Nv24 = 875714126, - #[doc = "non-subsampled Cb:Cr plane"] - Nv42 = 842290766, - #[doc = "2x1 subsampled Cr:Cb plane, 10 bit per channel"] - P210 = 808530512, - #[doc = "2x2 subsampled Cr:Cb plane 10 bits per channel"] - P010 = 808530000, - #[doc = "2x2 subsampled Cr:Cb plane 12 bits per channel"] - P012 = 842084432, - #[doc = "2x2 subsampled Cr:Cb plane 16 bits per channel"] - P016 = 909193296, - #[doc = "[63:0] A:x:B:x:G:x:R:x 10:6:10:6:10:6:10:6 little endian"] - Axbxgxrx106106106106 = 808534593, - #[doc = "2x2 subsampled Cr:Cb plane"] - Nv15 = 892425806, - Q410 = 808531025, - Q401 = 825242705, - #[doc = "[63:0] x:R:G:B 16:16:16:16 little endian"] - Xrgb16161616 = 942953048, - #[doc = "[63:0] x:B:G:R 16:16:16:16 little endian"] - Xbgr16161616 = 942948952, - #[doc = "[63:0] A:R:G:B 16:16:16:16 little endian"] - Argb16161616 = 942953025, - #[doc = "[63:0] A:B:G:R 16:16:16:16 little endian"] - Abgr16161616 = 942948929, - } - impl Format { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Format::Argb8888), - 1 => Some(Format::Xrgb8888), - 538982467 => Some(Format::C8), - 943867730 => Some(Format::Rgb332), - 944916290 => Some(Format::Bgr233), - 842093144 => Some(Format::Xrgb4444), - 842089048 => Some(Format::Xbgr4444), - 842094674 => Some(Format::Rgbx4444), - 842094658 => Some(Format::Bgrx4444), - 842093121 => Some(Format::Argb4444), - 842089025 => Some(Format::Abgr4444), - 842088786 => Some(Format::Rgba4444), - 842088770 => Some(Format::Bgra4444), - 892424792 => Some(Format::Xrgb1555), - 892420696 => Some(Format::Xbgr1555), - 892426322 => Some(Format::Rgbx5551), - 892426306 => Some(Format::Bgrx5551), - 892424769 => Some(Format::Argb1555), - 892420673 => Some(Format::Abgr1555), - 892420434 => Some(Format::Rgba5551), - 892420418 => Some(Format::Bgra5551), - 909199186 => Some(Format::Rgb565), - 909199170 => Some(Format::Bgr565), - 875710290 => Some(Format::Rgb888), - 875710274 => Some(Format::Bgr888), - 875709016 => Some(Format::Xbgr8888), - 875714642 => Some(Format::Rgbx8888), - 875714626 => Some(Format::Bgrx8888), - 875708993 => Some(Format::Abgr8888), - 875708754 => Some(Format::Rgba8888), - 875708738 => Some(Format::Bgra8888), - 808669784 => Some(Format::Xrgb2101010), - 808665688 => Some(Format::Xbgr2101010), - 808671314 => Some(Format::Rgbx1010102), - 808671298 => Some(Format::Bgrx1010102), - 808669761 => Some(Format::Argb2101010), - 808665665 => Some(Format::Abgr2101010), - 808665426 => Some(Format::Rgba1010102), - 808665410 => Some(Format::Bgra1010102), - 1448695129 => Some(Format::Yuyv), - 1431918169 => Some(Format::Yvyu), - 1498831189 => Some(Format::Uyvy), - 1498765654 => Some(Format::Vyuy), - 1448433985 => Some(Format::Ayuv), - 842094158 => Some(Format::Nv12), - 825382478 => Some(Format::Nv21), - 909203022 => Some(Format::Nv16), - 825644622 => Some(Format::Nv61), - 961959257 => Some(Format::Yuv410), - 961893977 => Some(Format::Yvu410), - 825316697 => Some(Format::Yuv411), - 825316953 => Some(Format::Yvu411), - 842093913 => Some(Format::Yuv420), - 842094169 => Some(Format::Yvu420), - 909202777 => Some(Format::Yuv422), - 909203033 => Some(Format::Yvu422), - 875713881 => Some(Format::Yuv444), - 875714137 => Some(Format::Yvu444), - 538982482 => Some(Format::R8), - 540422482 => Some(Format::R16), - 943212370 => Some(Format::Rg88), - 943215175 => Some(Format::Gr88), - 842221394 => Some(Format::Rg1616), - 842224199 => Some(Format::Gr1616), - 1211388504 => Some(Format::Xrgb16161616f), - 1211384408 => Some(Format::Xbgr16161616f), - 1211388481 => Some(Format::Argb16161616f), - 1211384385 => Some(Format::Abgr16161616f), - 1448434008 => Some(Format::Xyuv8888), - 875713878 => Some(Format::Vuy888), - 808670550 => Some(Format::Vuy101010), - 808530521 => Some(Format::Y210), - 842084953 => Some(Format::Y212), - 909193817 => Some(Format::Y216), - 808531033 => Some(Format::Y410), - 842085465 => Some(Format::Y412), - 909194329 => Some(Format::Y416), - 808670808 => Some(Format::Xvyu2101010), - 909334104 => Some(Format::Xvyu1216161616), - 942954072 => Some(Format::Xvyu16161616), - 810299481 => Some(Format::Y0l0), - 810299480 => Some(Format::X0l0), - 843853913 => Some(Format::Y0l2), - 843853912 => Some(Format::X0l2), - 942691673 => Some(Format::Yuv4208bit), - 808539481 => Some(Format::Yuv42010bit), - 943805016 => Some(Format::Xrgb8888A8), - 943800920 => Some(Format::Xbgr8888A8), - 943806546 => Some(Format::Rgbx8888A8), - 943806530 => Some(Format::Bgrx8888A8), - 943798354 => Some(Format::Rgb888A8), - 943798338 => Some(Format::Bgr888A8), - 943797586 => Some(Format::Rgb565A8), - 943797570 => Some(Format::Bgr565A8), - 875714126 => Some(Format::Nv24), - 842290766 => Some(Format::Nv42), - 808530512 => Some(Format::P210), - 808530000 => Some(Format::P010), - 842084432 => Some(Format::P012), - 909193296 => Some(Format::P016), - 808534593 => Some(Format::Axbxgxrx106106106106), - 892425806 => Some(Format::Nv15), - 808531025 => Some(Format::Q410), - 825242705 => Some(Format::Q401), - 942953048 => Some(Format::Xrgb16161616), - 942948952 => Some(Format::Xbgr16161616), - 942953025 => Some(Format::Argb16161616), - 942948929 => Some(Format::Abgr16161616), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a shm pool\n\nCreate a new wl_shm_pool object.\n\nThe pool can be used to create shared memory based buffer\nobjects. The server will mmap size bytes of the passed file\ndescriptor, to use as backing memory for the pool."] - CreatePool { - fd: ::std::os::unix::io::RawFd, - size: i32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "create_pool", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Fd, - super::ArgumentType::Int, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreatePool { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreatePool { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreatePool { fd, size } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Fd(fd), Argument::Int(size),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreatePool { fd, size } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].h = fd; - _args_array[2].i = size; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "pixel format description\n\nInforms the client about a valid pixel format that\ncan be used for buffers. Known formats include\nargb8888 and xrgb8888."] - Format { format: Format }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "format", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Format { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Format { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Format { - format: { - if let Some(Argument::Uint(val)) = args.next() { - Format::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Format { - format: Format::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShm(Proxy); - impl AsRef> for WlShm { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShm { - #[inline] - fn from(value: Proxy) -> Self { - WlShm(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShm) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShm { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShm { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shm"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shm_interface } - } - } - impl WlShm { - #[doc = "create a shm pool\n\nCreate a new wl_shm_pool object.\n\nThe pool can be used to create shared memory based buffer\nobjects. The server will mmap size bytes of the passed file\ndescriptor, to use as backing memory for the pool."] - pub fn create_pool( - &self, - fd: ::std::os::unix::io::RawFd, - size: i32, - ) -> Main { - let msg = Request::CreatePool { fd: fd, size: size }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_POOL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FORMAT_SINCE: u32 = 1u32; - static mut wl_shm_requests_create_pool_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_shm_pool::wl_shm_pool_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shm_requests: [wl_message; 1] = [wl_message { - name: b"create_pool\0" as *const u8 as *const c_char, - signature: b"nhi\0" as *const u8 as *const c_char, - types: unsafe { &wl_shm_requests_create_pool_types as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shm_events: [wl_message; 1] = [wl_message { - name: b"format\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shm_interface: wl_interface = wl_interface { - name: b"wl_shm\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_shm_requests as *const _ }, - event_count: 1, - events: unsafe { &wl_shm_events as *const _ }, - }; -} -#[doc = "content for a wl_surface\n\nA buffer provides the content for a wl_surface. Buffers are\ncreated through factory interfaces such as wl_shm, wp_linux_buffer_params\n(from the linux-dmabuf protocol extension) or similar. It has a width and\na height and can be attached to a wl_surface, but the mechanism by which a\nclient provides and updates the contents is defined by the buffer factory\ninterface.\n\nIf the buffer uses a format that has an alpha channel, the alpha channel\nis assumed to be premultiplied in the color channels unless otherwise\nspecified."] -pub mod wl_buffer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy a buffer\n\nDestroy a buffer. If and how you need to release the backing\nstorage is defined by the buffer factory interface.\n\nFor possible side-effects to a surface, see wl_surface.attach.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "compositor releases buffer\n\nSent when this wl_buffer is no longer used by the compositor.\nThe client is now free to reuse or destroy this buffer and its\nbacking storage.\n\nIf a client receives a release event before the frame callback\nrequested in the same wl_surface.commit that attaches this\nwl_buffer to a surface, then the client is immediately free to\nreuse the buffer and its backing storage, and does not need a\nsecond buffer for the next surface content update. Typically\nthis is possible, when the compositor maintains a copy of the\nwl_surface contents, e.g. as a GL texture. This is an important\noptimization for GL(ES) compositors with wl_shm clients."] - Release, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Release => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Release), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Release), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlBuffer(Proxy); - impl AsRef> for WlBuffer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlBuffer { - #[inline] - fn from(value: Proxy) -> Self { - WlBuffer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlBuffer) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlBuffer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlBuffer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_buffer"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_buffer_interface } - } - } - impl WlBuffer { - #[doc = "destroy a buffer\n\nDestroy a buffer. If and how you need to release the backing\nstorage is defined by the buffer factory interface.\n\nFor possible side-effects to a surface, see wl_surface.attach.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RELEASE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_buffer_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_buffer_events: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_buffer_interface: wl_interface = wl_interface { - name: b"wl_buffer\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_buffer_requests as *const _ }, - event_count: 1, - events: unsafe { &wl_buffer_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nA wl_data_offer represents a piece of data offered for transfer\nby another client (the source client). It is used by the\ncopy-and-paste and drag-and-drop mechanisms. The offer\ndescribes the different mime types that the data can be\nconverted to and provides the mechanism for transferring the\ndata directly from the source client."] -pub mod wl_data_offer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "finish request was called untimely"] - InvalidFinish = 0, - #[doc = "action mask contains invalid values"] - InvalidActionMask = 1, - #[doc = "action argument has an invalid value"] - InvalidAction = 2, - #[doc = "offer doesn't accept this request"] - InvalidOffer = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidFinish), - 1 => Some(Error::InvalidActionMask), - 2 => Some(Error::InvalidAction), - 3 => Some(Error::InvalidOffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "accept one of the offered mime types\n\nIndicate that the client can accept the given mime type, or\nNULL for not accepted.\n\nFor objects of version 2 or older, this request is used by the\nclient to give feedback whether the client can receive the given\nmime type, or NULL if none is accepted; the feedback does not\ndetermine whether the drag-and-drop operation succeeds or not.\n\nFor objects of version 3 or newer, this request determines the\nfinal result of the drag-and-drop operation. If the end result\nis that no mime types were accepted, the drag-and-drop operation\nwill be cancelled and the corresponding drag source will receive\nwl_data_source.cancelled. Clients may still use this event in\nconjunction with wl_data_source.action for feedback."] - Accept { - serial: u32, - mime_type: Option, - }, - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request\nand indicates the mime type it wants to receive. The transfer\nhappens through the passed file descriptor (typically created\nwith the pipe system call). The source client writes the data\nin the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until\nEOF and then closes its end, at which point the transfer is\ncomplete.\n\nThis request may happen multiple times for different mime types,\nboth before and after wl_data_device.drop. Drag-and-drop destination\nclients may preemptively fetch data or examine it more closely to\ndetermine acceptance."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy data offer\n\nDestroy the data offer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "the offer will no longer be used\n\nNotifies the compositor that the drag destination successfully\nfinished the drag-and-drop operation.\n\nUpon receiving this request, the compositor will emit\nwl_data_source.dnd_finished on the drag source client.\n\nIt is a client error to perform other requests than\nwl_data_offer.destroy after this one. It is also an error to perform\nthis request after a NULL mime type has been set in\nwl_data_offer.accept or no action was received through\nwl_data_offer.action.\n\nIf wl_data_offer.finish request is received for a non drag and drop\noperation, the invalid_finish protocol error is raised.\n\nOnly available since version 3 of the interface"] - Finish, - #[doc = "set the available/preferred drag-and-drop actions\n\nSets the actions that the destination side client supports for\nthis operation. This request may trigger the emission of\nwl_data_source.action and wl_data_offer.action events if the compositor\nneeds to change the selected action.\n\nThis request can be called multiple times throughout the\ndrag-and-drop operation, typically in response to wl_data_device.enter\nor wl_data_device.motion events.\n\nThis request determines the final result of the drag-and-drop\noperation. If the end result is that no action is accepted,\nthe drag source will receive wl_data_source.cancelled.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, and the preferred_action\nargument must only contain one of those values set, otherwise it\nwill result in a protocol error.\n\nWhile managing an \"ask\" action, the destination drag-and-drop client\nmay perform further wl_data_offer.receive requests, and is expected\nto perform one last wl_data_offer.set_actions request with a preferred\naction other than \"ask\" (and optionally wl_data_offer.accept) before\nrequesting wl_data_offer.finish, in order to convey the action selected\nby the user. If the preferred action is not in the\nwl_data_offer.source_actions mask, an error will be raised.\n\nIf the \"ask\" action is dismissed (e.g. user cancellation), the client\nis expected to perform wl_data_offer.destroy right away.\n\nThis request can only be made on drag-and-drop offers, a protocol error\nwill be raised otherwise.\n\nOnly available since version 3 of the interface"] - SetActions { - dnd_actions: super::wl_data_device_manager::DndAction, - preferred_action: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "accept", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "finish", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_actions", - since: 3, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Accept { .. } => 0, - Request::Receive { .. } => 1, - Request::Destroy => 2, - Request::Finish => 3, - Request::SetActions { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Accept { .. } => 1, - Request::Receive { .. } => 1, - Request::Destroy => 1, - Request::Finish => 3, - Request::SetActions { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Accept { serial, mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked( - mime_type.map(Into::into).unwrap_or_else(Vec::new), - ) - })), - ], - }, - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::Finish => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::SetActions { - dnd_actions, - preferred_action, - } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Uint(dnd_actions.to_raw()), - Argument::Uint(preferred_action.to_raw()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Accept { serial, mime_type } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = mime_type.map(|s| ::std::ffi::CString::new(s).unwrap()); - _args_array[1].s = (&_arg_1) - .as_ref() - .map(|s| s.as_ptr()) - .unwrap_or(::std::ptr::null()); - f(0, &mut _args_array) - } - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::Finish => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::SetActions { - dnd_actions, - preferred_action, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = dnd_actions.to_raw(); - _args_array[1].u = preferred_action.to_raw(); - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered mime type\n\nSent immediately after creating the wl_data_offer object. One\nevent per offered mime type."] - Offer { mime_type: String }, - #[doc = "notify the source-side available actions\n\nThis event indicates the actions offered by the data source. It\nwill be sent right after wl_data_device.enter, or anytime the source\nside changes its offered actions through wl_data_source.set_actions.\n\nOnly available since version 3 of the interface"] - SourceActions { - source_actions: super::wl_data_device_manager::DndAction, - }, - #[doc = "notify the selected action\n\nThis event indicates the action selected by the compositor after\nmatching the source/destination side actions. Only one action (or\nnone) will be offered here.\n\nThis event can be emitted multiple times during the drag-and-drop\noperation in response to destination side action changes through\nwl_data_offer.set_actions.\n\nThis event will no longer be emitted after wl_data_device.drop\nhappened on the drag-and-drop destination, the client must\nhonor the last action received, or the last preferred one set\nthrough wl_data_offer.set_actions when handling an \"ask\" action.\n\nCompositors may also change the selected action on the fly, mainly\nin response to keyboard modifier changes during the drag-and-drop\noperation.\n\nThe most recent action received is always the valid one. Prior to\nreceiving wl_data_device.drop, the chosen action may change (e.g.\ndue to keyboard modifiers being pressed). At the time of receiving\nwl_data_device.drop the drag-and-drop destination must honor the\nlast action received.\n\nAction changes may still happen after wl_data_device.drop,\nespecially on \"ask\" actions, where the drag-and-drop destination\nmay choose another action afterwards. Action changes happening\nat this stage are always the result of inter-client negotiation, the\ncompositor shall no longer be able to induce a different action.\n\nUpon \"ask\" actions, it is expected that the drag-and-drop destination\nmay potentially choose a different action and/or mime type,\nbased on wl_data_offer.source_actions and finally chosen by the\nuser (e.g. popping up a menu with the available options). The\nfinal wl_data_offer.set_actions and wl_data_offer.accept requests\nmust happen before the call to wl_data_offer.finish.\n\nOnly available since version 3 of the interface"] - Action { - dnd_action: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "source_actions", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "action", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - Event::SourceActions { .. } => 1, - Event::Action { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - Event::SourceActions { .. } => 3, - Event::Action { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::SourceActions { - source_actions: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_data_device_manager::DndAction::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Action { - dnd_action: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_data_device_manager::DndAction::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::SourceActions { - source_actions: super::wl_data_device_manager::DndAction::from_raw( - _args[0].u, - ) - .ok_or(())?, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Action { - dnd_action: super::wl_data_device_manager::DndAction::from_raw(_args[0].u) - .ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataOffer(Proxy); - impl AsRef> for WlDataOffer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataOffer { - #[inline] - fn from(value: Proxy) -> Self { - WlDataOffer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataOffer) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataOffer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataOffer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_offer"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_offer_interface } - } - } - impl WlDataOffer { - #[doc = "accept one of the offered mime types\n\nIndicate that the client can accept the given mime type, or\nNULL for not accepted.\n\nFor objects of version 2 or older, this request is used by the\nclient to give feedback whether the client can receive the given\nmime type, or NULL if none is accepted; the feedback does not\ndetermine whether the drag-and-drop operation succeeds or not.\n\nFor objects of version 3 or newer, this request determines the\nfinal result of the drag-and-drop operation. If the end result\nis that no mime types were accepted, the drag-and-drop operation\nwill be cancelled and the corresponding drag source will receive\nwl_data_source.cancelled. Clients may still use this event in\nconjunction with wl_data_source.action for feedback."] - pub fn accept(&self, serial: u32, mime_type: Option) -> () { - let msg = Request::Accept { - serial: serial, - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request\nand indicates the mime type it wants to receive. The transfer\nhappens through the passed file descriptor (typically created\nwith the pipe system call). The source client writes the data\nin the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until\nEOF and then closes its end, at which point the transfer is\ncomplete.\n\nThis request may happen multiple times for different mime types,\nboth before and after wl_data_device.drop. Drag-and-drop destination\nclients may preemptively fetch data or examine it more closely to\ndetermine acceptance."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy data offer\n\nDestroy the data offer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "the offer will no longer be used\n\nNotifies the compositor that the drag destination successfully\nfinished the drag-and-drop operation.\n\nUpon receiving this request, the compositor will emit\nwl_data_source.dnd_finished on the drag source client.\n\nIt is a client error to perform other requests than\nwl_data_offer.destroy after this one. It is also an error to perform\nthis request after a NULL mime type has been set in\nwl_data_offer.accept or no action was received through\nwl_data_offer.action.\n\nIf wl_data_offer.finish request is received for a non drag and drop\noperation, the invalid_finish protocol error is raised.\n\nOnly available since version 3 of the interface."] - pub fn finish(&self) -> () { - let msg = Request::Finish; - self.0.send::(msg, None); - } - #[doc = "set the available/preferred drag-and-drop actions\n\nSets the actions that the destination side client supports for\nthis operation. This request may trigger the emission of\nwl_data_source.action and wl_data_offer.action events if the compositor\nneeds to change the selected action.\n\nThis request can be called multiple times throughout the\ndrag-and-drop operation, typically in response to wl_data_device.enter\nor wl_data_device.motion events.\n\nThis request determines the final result of the drag-and-drop\noperation. If the end result is that no action is accepted,\nthe drag source will receive wl_data_source.cancelled.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, and the preferred_action\nargument must only contain one of those values set, otherwise it\nwill result in a protocol error.\n\nWhile managing an \"ask\" action, the destination drag-and-drop client\nmay perform further wl_data_offer.receive requests, and is expected\nto perform one last wl_data_offer.set_actions request with a preferred\naction other than \"ask\" (and optionally wl_data_offer.accept) before\nrequesting wl_data_offer.finish, in order to convey the action selected\nby the user. If the preferred action is not in the\nwl_data_offer.source_actions mask, an error will be raised.\n\nIf the \"ask\" action is dismissed (e.g. user cancellation), the client\nis expected to perform wl_data_offer.destroy right away.\n\nThis request can only be made on drag-and-drop offers, a protocol error\nwill be raised otherwise.\n\nOnly available since version 3 of the interface."] - pub fn set_actions( - &self, - dnd_actions: super::wl_data_device_manager::DndAction, - preferred_action: super::wl_data_device_manager::DndAction, - ) -> () { - let msg = Request::SetActions { - dnd_actions: dnd_actions, - preferred_action: preferred_action, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACCEPT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FINISH_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ACTIONS_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SOURCE_ACTIONS_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTION_SINCE: u32 = 3u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_offer_requests: [wl_message; 5] = [ - wl_message { - name: b"accept\0" as *const u8 as *const c_char, - signature: b"u?s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finish\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_actions\0" as *const u8 as *const c_char, - signature: b"3uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_offer_events: [wl_message; 3] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"source_actions\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"action\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_offer_interface: wl_interface = wl_interface { - name: b"wl_data_offer\0" as *const u8 as *const c_char, - version: 3, - request_count: 5, - requests: unsafe { &wl_data_offer_requests as *const _ }, - event_count: 3, - events: unsafe { &wl_data_offer_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nThe wl_data_source object is the source side of a wl_data_offer.\nIt is created by the source client in a data transfer and\nprovides a way to describe the offered data and a way to respond\nto requests to transfer the data."] -pub mod wl_data_source { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "action mask contains invalid values"] - InvalidActionMask = 0, - #[doc = "source doesn't accept this request"] - InvalidSource = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidActionMask), - 1 => Some(Error::InvalidSource), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types\nadvertised to targets. Can be called several times to offer\nmultiple types."] - Offer { mime_type: String }, - #[doc = "destroy the data source\n\nDestroy the data source.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the available drag-and-drop actions\n\nSets the actions that the source side client supports for this\noperation. This request may trigger wl_data_source.action and\nwl_data_offer.action events if the compositor needs to change the\nselected action.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, otherwise it will result\nin a protocol error.\n\nThis request must be made once only, and can only be made on sources\nused in drag-and-drop, so it must be performed before\nwl_data_device.start_drag. Attempting to use the source other than\nfor drag-and-drop will raise a protocol error.\n\nOnly available since version 3 of the interface"] - SetActions { - dnd_actions: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_actions", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - Request::SetActions { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - Request::SetActions { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::SetActions { dnd_actions } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Uint(dnd_actions.to_raw()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::SetActions { dnd_actions } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = dnd_actions.to_raw(); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "a target accepts an offered mime type\n\nSent when a target accepts pointer_focus or motion events. If\na target does not accept any of the offered types, type is NULL.\n\nUsed for feedback during drag-and-drop."] - Target { mime_type: Option }, - #[doc = "send the data\n\nRequest for data from the client. Send the data as the\nspecified mime type over the passed file descriptor, then\nclose it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "selection was cancelled\n\nThis data source is no longer valid. There are several reasons why\nthis could happen:\n\n- The data source has been replaced by another data source.\n- The drag-and-drop operation was performed, but the drop destination\ndid not accept any of the mime types offered through\nwl_data_source.target.\n- The drag-and-drop operation was performed, but the drop destination\ndid not select any of the actions present in the mask offered through\nwl_data_source.action.\n- The drag-and-drop operation was performed but didn't happen over a\nsurface.\n- The compositor cancelled the drag-and-drop operation (e.g. compositor\ndependent timeouts to avoid stale drag-and-drop transfers).\n\nThe client should clean up and destroy this data source.\n\nFor objects of version 2 or older, wl_data_source.cancelled will\nonly be emitted if the data source was replaced by another data\nsource."] - Cancelled, - #[doc = "the drag-and-drop operation physically finished\n\nThe user performed the drop action. This event does not indicate\nacceptance, wl_data_source.cancelled may still be emitted afterwards\nif the drop destination does not accept any mime type.\n\nHowever, this event might however not be received if the compositor\ncancelled the drag-and-drop operation before this event could happen.\n\nNote that the data_source may still be used in the future and should\nnot be destroyed here.\n\nOnly available since version 3 of the interface"] - DndDropPerformed, - #[doc = "the drag-and-drop operation concluded\n\nThe drop destination finished interoperating with this data\nsource, so the client is now free to destroy this data source and\nfree all associated data.\n\nIf the action used to perform the operation was \"move\", the\nsource can now delete the transferred data.\n\nOnly available since version 3 of the interface"] - DndFinished, - #[doc = "notify the selected action\n\nThis event indicates the action selected by the compositor after\nmatching the source/destination side actions. Only one action (or\nnone) will be offered here.\n\nThis event can be emitted multiple times during the drag-and-drop\noperation, mainly in response to destination side changes through\nwl_data_offer.set_actions, and as the data device enters/leaves\nsurfaces.\n\nIt is only possible to receive this event after\nwl_data_source.dnd_drop_performed if the drag-and-drop operation\nended in an \"ask\" action, in which case the final wl_data_source.action\nevent will happen immediately before wl_data_source.dnd_finished.\n\nCompositors may also change the selected action on the fly, mainly\nin response to keyboard modifier changes during the drag-and-drop\noperation.\n\nThe most recent action received is always the valid one. The chosen\naction may change alongside negotiation (e.g. an \"ask\" action can turn\ninto a \"move\" operation), so the effects of the final action must\nalways be applied in wl_data_offer.dnd_finished.\n\nClients can trigger cursor surface changes from this point, so\nthey reflect the current action.\n\nOnly available since version 3 of the interface"] - Action { - dnd_action: super::wl_data_device_manager::DndAction, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "target", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "dnd_drop_performed", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "dnd_finished", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "action", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Target { .. } => 0, - Event::Send { .. } => 1, - Event::Cancelled => 2, - Event::DndDropPerformed => 3, - Event::DndFinished => 4, - Event::Action { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Target { .. } => 1, - Event::Send { .. } => 1, - Event::Cancelled => 1, - Event::DndDropPerformed => 3, - Event::DndFinished => 3, - Event::Action { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Target { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - if s.len() == 0 { - None - } else { - Some(s) - } - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Cancelled), - 3 => Ok(Event::DndDropPerformed), - 4 => Ok(Event::DndFinished), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Action { - dnd_action: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_data_device_manager::DndAction::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Target { - mime_type: if _args[0].s.is_null() { - None - } else { - Some( - ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - ) - }, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 2 => Ok(Event::Cancelled), - 3 => Ok(Event::DndDropPerformed), - 4 => Ok(Event::DndFinished), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Action { - dnd_action: super::wl_data_device_manager::DndAction::from_raw(_args[0].u) - .ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataSource(Proxy); - impl AsRef> for WlDataSource { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataSource { - #[inline] - fn from(value: Proxy) -> Self { - WlDataSource(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataSource) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataSource { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataSource { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_source"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_source_interface } - } - } - impl WlDataSource { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types\nadvertised to targets. Can be called several times to offer\nmultiple types."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the data source\n\nDestroy the data source.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the available drag-and-drop actions\n\nSets the actions that the source side client supports for this\noperation. This request may trigger wl_data_source.action and\nwl_data_offer.action events if the compositor needs to change the\nselected action.\n\nThe dnd_actions argument must contain only values expressed in the\nwl_data_device_manager.dnd_actions enum, otherwise it will result\nin a protocol error.\n\nThis request must be made once only, and can only be made on sources\nused in drag-and-drop, so it must be performed before\nwl_data_device.start_drag. Attempting to use the source other than\nfor drag-and-drop will raise a protocol error.\n\nOnly available since version 3 of the interface."] - pub fn set_actions(&self, dnd_actions: super::wl_data_device_manager::DndAction) -> () { - let msg = Request::SetActions { - dnd_actions: dnd_actions, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ACTIONS_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TARGET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DND_DROP_PERFORMED_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DND_FINISHED_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTION_SINCE: u32 = 3u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_source_requests: [wl_message; 3] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_actions\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_source_events: [wl_message; 6] = [ - wl_message { - name: b"target\0" as *const u8 as *const c_char, - signature: b"?s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"dnd_drop_performed\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"dnd_finished\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"action\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_source_interface: wl_interface = wl_interface { - name: b"wl_data_source\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &wl_data_source_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_data_source_events as *const _ }, - }; -} -#[doc = "data transfer device\n\nThere is one wl_data_device per seat which can be obtained\nfrom the global wl_data_device_manager singleton.\n\nA wl_data_device provides access to inter-client data transfer\nmechanisms such as copy-and-paste and drag-and-drop."] -pub mod wl_data_device { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "start drag-and-drop operation\n\nThis request asks the compositor to start a drag-and-drop\noperation on behalf of the client.\n\nThe source argument is the data source that provides the data\nfor the eventual data transfer. If source is NULL, enter, leave\nand motion events are sent only to the client that initiated the\ndrag and the client is expected to handle the data passing\ninternally. If source is destroyed, the drag-and-drop session will be\ncancelled.\n\nThe origin surface is the surface where the drag originates and\nthe client must have an active implicit grab that matches the\nserial.\n\nThe icon surface is an optional (can be NULL) surface that\nprovides an icon to be moved around with the cursor. Initially,\nthe top-left corner of the icon surface is placed at the cursor\nhotspot, but subsequent wl_surface.attach request can move the\nrelative position. Attach requests must be confirmed with\nwl_surface.commit as usual. The icon surface is given the role of\na drag-and-drop icon. If the icon surface already has another role,\nit raises a protocol error.\n\nThe current and pending input regions of the icon wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the icon surface. When the use\nas an icon ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped."] - StartDrag { - source: Option, - origin: super::wl_surface::WlSurface, - icon: Option, - serial: u32, - }, - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection\nto the data from the source on behalf of the client.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - serial: u32, - }, - #[doc = "destroy data device\n\nThis request destroys the data device.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 2 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "start_drag", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 2, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::StartDrag { .. } => 0, - Request::SetSelection { .. } => 1, - Request::Release => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::StartDrag { .. } => 1, - Request::SetSelection { .. } => 1, - Request::Release => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::StartDrag { - source, - origin, - icon, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Object(origin.as_ref().id()), - Argument::Object(icon.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::SetSelection { source, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::StartDrag { - source, - origin, - icon, - serial, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].o = origin.as_ref().c_ptr() as *mut _; - _args_array[2].o = icon - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[3].u = serial; - f(0, &mut _args_array) - } - Request::SetSelection { source, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = serial; - f(1, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wl_data_offer\n\nThe data_offer event introduces a new wl_data_offer object,\nwhich will subsequently be used in either the\ndata_device.enter event (for drag-and-drop) or the\ndata_device.selection event (for selections). Immediately\nfollowing the data_device_data_offer event, the new data_offer\nobject will send out data_offer.offer events to describe the\nmime types it offers."] - DataOffer { - id: Main, - }, - #[doc = "initiate drag-and-drop session\n\nThis event is sent when an active drag-and-drop pointer enters\na surface owned by the client. The position of the pointer at\nenter time is provided by the x and y arguments, in surface-local\ncoordinates."] - Enter { - serial: u32, - surface: super::wl_surface::WlSurface, - x: f64, - y: f64, - id: Option, - }, - #[doc = "end drag-and-drop session\n\nThis event is sent when the drag-and-drop pointer leaves the\nsurface and the session ends. The client must destroy the\nwl_data_offer introduced at enter time at this point."] - Leave, - #[doc = "drag-and-drop session motion\n\nThis event is sent when the drag-and-drop pointer moves within\nthe currently focused surface. The new position of the pointer\nis provided by the x and y arguments, in surface-local\ncoordinates."] - Motion { time: u32, x: f64, y: f64 }, - #[doc = "end drag-and-drop session successfully\n\nThe event is sent when a drag-and-drop operation is ended\nbecause the implicit grab is removed.\n\nThe drag-and-drop destination is expected to honor the last action\nreceived through wl_data_offer.action, if the resulting action is\n\"copy\" or \"move\", the destination can still perform\nwl_data_offer.receive requests, and is expected to end all\ntransfers with a wl_data_offer.finish request.\n\nIf the resulting action is \"ask\", the action will not be considered\nfinal. The drag-and-drop destination is expected to perform one last\nwl_data_offer.set_actions request, or wl_data_offer.destroy in order\nto cancel the operation."] - Drop, - #[doc = "advertise new selection\n\nThe selection event is sent out to notify the client of a new\nwl_data_offer for the selection for this device. The\ndata_device.data_offer and the data_offer.offer events are\nsent out immediately before this event to introduce the data\noffer object. The selection event is sent to a client\nimmediately before receiving keyboard focus and when a new\nselection is set while the client has keyboard focus. The\ndata_offer is valid until a new data_offer or NULL is received\nor until the client loses keyboard focus. Switching surface with\nkeyboard focus within the same client doesn't mean a new selection\nwill be sent. The client must destroy the previous selection\ndata_offer, if any, upon receiving this event."] - Selection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "drop", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Enter { .. } => 1, - Event::Leave => 2, - Event::Motion { .. } => 3, - Event::Drop => 4, - Event::Selection { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Enter { .. } => 1, - Event::Leave => 1, - Event::Motion { .. } => 1, - Event::Drop => 1, - Event::Selection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Leave), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Drop), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DataOffer { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Enter { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - x: (_args[2].f as f64) / 256., - y: (_args[3].f as f64) / 256., - id: if _args[4].o.is_null() { - None - } else { - Some( - Proxy::::from_c_ptr( - _args[4].o as *mut _, - ) - .into(), - ) - }, - }) - } - 2 => Ok(Event::Leave), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Motion { - time: _args[0].u, - x: (_args[1].f as f64) / 256., - y: (_args[2].f as f64) / 256., - }) - } - 4 => Ok(Event::Drop), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some( - Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - ) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataDevice(Proxy); - impl AsRef> for WlDataDevice { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataDevice { - #[inline] - fn from(value: Proxy) -> Self { - WlDataDevice(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataDevice) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataDevice { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataDevice { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_device"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_device_interface } - } - } - impl WlDataDevice { - #[doc = "start drag-and-drop operation\n\nThis request asks the compositor to start a drag-and-drop\noperation on behalf of the client.\n\nThe source argument is the data source that provides the data\nfor the eventual data transfer. If source is NULL, enter, leave\nand motion events are sent only to the client that initiated the\ndrag and the client is expected to handle the data passing\ninternally. If source is destroyed, the drag-and-drop session will be\ncancelled.\n\nThe origin surface is the surface where the drag originates and\nthe client must have an active implicit grab that matches the\nserial.\n\nThe icon surface is an optional (can be NULL) surface that\nprovides an icon to be moved around with the cursor. Initially,\nthe top-left corner of the icon surface is placed at the cursor\nhotspot, but subsequent wl_surface.attach request can move the\nrelative position. Attach requests must be confirmed with\nwl_surface.commit as usual. The icon surface is given the role of\na drag-and-drop icon. If the icon surface already has another role,\nit raises a protocol error.\n\nThe current and pending input regions of the icon wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the icon surface. When the use\nas an icon ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped."] - pub fn start_drag( - &self, - source: Option<&super::wl_data_source::WlDataSource>, - origin: &super::wl_surface::WlSurface, - icon: Option<&super::wl_surface::WlSurface>, - serial: u32, - ) -> () { - let msg = Request::StartDrag { - source: source.map(|o| o.clone()), - origin: origin.clone(), - icon: icon.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection\nto the data from the source on behalf of the client.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::wl_data_source::WlDataSource>, - serial: u32, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy data device\n\nThis request destroys the data device.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 2 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_START_DRAG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DROP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - static mut wl_data_device_requests_start_drag_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_data_source::wl_data_source_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut wl_data_device_requests_set_selection_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_data_source::wl_data_source_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_device_requests: [wl_message; 3] = [ - wl_message { - name: b"start_drag\0" as *const u8 as *const c_char, - signature: b"?oo?ou\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_requests_start_drag_types as *const _ }, - }, - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?ou\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_requests_set_selection_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut wl_data_device_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { &super::wl_data_offer::wl_data_offer_interface as *const wl_interface }]; - static mut wl_data_device_events_enter_types: [*const wl_interface; 5] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_data_offer::wl_data_offer_interface as *const wl_interface }, - ]; - static mut wl_data_device_events_selection_types: [*const wl_interface; 1] = - [unsafe { &super::wl_data_offer::wl_data_offer_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_device_events: [wl_message; 6] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoff?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"drop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_events_selection_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_device_interface: wl_interface = wl_interface { - name: b"wl_data_device\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &wl_data_device_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_data_device_events as *const _ }, - }; -} -#[doc = "data transfer interface\n\nThe wl_data_device_manager is a singleton global object that\nprovides access to inter-client data transfer mechanisms such as\ncopy-and-paste and drag-and-drop. These mechanisms are tied to\na wl_seat and this interface lets a client get a wl_data_device\ncorresponding to a wl_seat.\n\nDepending on the version bound, the objects created from the bound\nwl_data_device_manager object will have different requirements for\nfunctioning properly. See wl_data_source.set_actions,\nwl_data_offer.accept and wl_data_offer.finish for details."] -pub mod wl_data_device_manager { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "drag and drop actions\n\nThis is a bitmask of the available/preferred actions in a\ndrag-and-drop operation.\n\nIn the compositor, the selected action is a result of matching the\nactions offered by the source and destination sides. \"action\" events\nwith a \"none\" action will be sent to both source and destination if\nthere is no match. All further checks will effectively happen on\n(source actions ∩ destination actions).\n\nIn addition, compositors may also pick different actions in\nreaction to key modifiers being pressed. One common design that\nis used in major toolkits (and the behavior recommended for\ncompositors) is:\n\n- If no modifiers are pressed, the first match (in bit order)\nwill be used.\n- Pressing Shift selects \"move\", if enabled in the mask.\n- Pressing Control selects \"copy\", if enabled in the mask.\n\nBehavior beyond that is considered implementation-dependent.\nCompositors may for example bind other modifiers (like Alt/Meta)\nor drags initiated with other buttons than BTN_LEFT to specific\nactions (e.g. \"ask\")."] pub struct DndAction : u32 { # [doc = "no action"] const None = 0 ; # [doc = "copy action"] const Copy = 1 ; # [doc = "move action"] const Move = 2 ; # [doc = "ask action"] const Ask = 4 ; } } - impl DndAction { - pub fn from_raw(n: u32) -> Option { - Some(DndAction::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new data source\n\nCreate a new data source."] - CreateDataSource {}, - #[doc = "create a new data device\n\nCreate a new data device for a given seat."] - GetDataDevice { seat: super::wl_seat::WlSeat }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_data_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_data_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateDataSource { .. } => 0, - Request::GetDataDevice { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateDataSource { .. } => 1, - Request::GetDataDevice { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateDataSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDataDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateDataSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDataDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlDataDeviceManager(Proxy); - impl AsRef> for WlDataDeviceManager { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlDataDeviceManager { - #[inline] - fn from(value: Proxy) -> Self { - WlDataDeviceManager(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlDataDeviceManager) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlDataDeviceManager { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlDataDeviceManager { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_data_device_manager"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &wl_data_device_manager_interface } - } - } - impl WlDataDeviceManager { - #[doc = "create a new data source\n\nCreate a new data source."] - pub fn create_data_source(&self) -> Main { - let msg = Request::CreateDataSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a new data device\n\nCreate a new data device for a given seat."] - pub fn get_data_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDataDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_DATA_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DATA_DEVICE_SINCE: u32 = 1u32; - static mut wl_data_device_manager_requests_create_data_source_types: [*const wl_interface; 1] = - [unsafe { &super::wl_data_source::wl_data_source_interface as *const wl_interface }]; - static mut wl_data_device_manager_requests_get_data_device_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_data_device::wl_data_device_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_data_device_manager_requests: [wl_message; 2] = [ - wl_message { - name: b"create_data_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_manager_requests_create_data_source_types as *const _ }, - }, - wl_message { - name: b"get_data_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &wl_data_device_manager_requests_get_data_device_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_data_device_manager_interface: wl_interface = wl_interface { - name: b"wl_data_device_manager\0" as *const u8 as *const c_char, - version: 3, - request_count: 2, - requests: unsafe { &wl_data_device_manager_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "create desktop-style surfaces\n\nThis interface is implemented by servers that provide\ndesktop-style user interfaces.\n\nIt allows clients to associate a wl_shell_surface with\na basic surface.\n\nNote! This protocol is deprecated and not intended for production use.\nFor desktop-style user interfaces, use xdg_shell."] -pub mod wl_shell { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a shell surface from a surface\n\nCreate a shell surface for an existing surface. This gives\nthe wl_surface the role of a shell surface. If the wl_surface\nalready has another role, it raises a protocol error.\n\nOnly one shell surface can be associated with a given surface."] - GetShellSurface { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "get_shell_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetShellSurface { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetShellSurface { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::wl_shell_surface::WlShellSurface, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetShellSurface { surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetShellSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShell(Proxy); - impl AsRef> for WlShell { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShell { - #[inline] - fn from(value: Proxy) -> Self { - WlShell(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShell) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShell { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShell { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shell"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shell_interface } - } - } - impl WlShell { - #[doc = "create a shell surface from a surface\n\nCreate a shell surface for an existing surface. This gives\nthe wl_surface the role of a shell surface. If the wl_surface\nalready has another role, it raises a protocol error.\n\nOnly one shell surface can be associated with a given surface."] - pub fn get_shell_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetShellSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SHELL_SURFACE_SINCE: u32 = 1u32; - static mut wl_shell_requests_get_shell_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_shell_surface::wl_shell_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shell_requests: [wl_message; 1] = [wl_message { - name: b"get_shell_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_requests_get_shell_surface_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shell_interface: wl_interface = wl_interface { - name: b"wl_shell\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &wl_shell_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "desktop-style metadata interface\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides requests to treat surfaces like toplevel, fullscreen\nor popup windows, move, resize or maximize them, associate\nmetadata like title and class, etc.\n\nOn the server side the object is automatically destroyed when\nthe related wl_surface is destroyed. On the client side,\nwl_shell_surface_destroy() must be called before destroying\nthe wl_surface object."] -pub mod wl_shell_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation. The server may\nuse this information to adapt its behavior, e.g. choose\nan appropriate cursor image."] pub struct Resize : u32 { # [doc = "no edge"] const None = 0 ; # [doc = "top edge"] const Top = 1 ; # [doc = "bottom edge"] const Bottom = 2 ; # [doc = "left edge"] const Left = 4 ; # [doc = "top and left edges"] const TopLeft = 5 ; # [doc = "bottom and left edges"] const BottomLeft = 6 ; # [doc = "right edge"] const Right = 8 ; # [doc = "top and right edges"] const TopRight = 9 ; # [doc = "bottom and right edges"] const BottomRight = 10 ; } } - impl Resize { - pub fn from_raw(n: u32) -> Option { - Some(Resize::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - bitflags! { # [doc = "details of transient behaviour\n\nThese flags specify details of the expected behaviour\nof transient surfaces. Used in the set_transient request."] pub struct Transient : u32 { # [doc = "do not set keyboard focus"] const Inactive = 1 ; } } - impl Transient { - pub fn from_raw(n: u32) -> Option { - Some(Transient::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "different method to set the surface fullscreen\n\nHints to indicate to the compositor how to deal with a conflict\nbetween the dimensions of the surface and the dimensions of the\noutput. The compositor is free to ignore this parameter."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum FullscreenMethod { - #[doc = "no preference, apply default policy"] - Default = 0, - #[doc = "scale, preserve the surface's aspect ratio and center on output"] - Scale = 1, - #[doc = "switch output mode to the smallest mode that can fit the surface, add black borders to compensate size mismatch"] - Driver = 2, - #[doc = "no upscaling, center on output and add black borders to compensate size mismatch"] - Fill = 3, - } - impl FullscreenMethod { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(FullscreenMethod::Default), - 1 => Some(FullscreenMethod::Scale), - 2 => Some(FullscreenMethod::Driver), - 3 => Some(FullscreenMethod::Fill), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - Pong { serial: u32 }, - #[doc = "start an interactive move\n\nStart a pointer-driven move of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a pointer-driven resizing of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: Resize, - }, - #[doc = "make the surface a toplevel surface\n\nMap the surface as a toplevel surface.\n\nA toplevel surface is not fullscreen, maximized or transient."] - SetToplevel, - #[doc = "make the surface a transient surface\n\nMap the surface relative to an existing surface.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates.\n\nThe flags argument controls details of the transient behaviour."] - SetTransient { - parent: super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - }, - #[doc = "make the surface a fullscreen surface\n\nMap the surface as a fullscreen surface.\n\nIf an output parameter is given then the surface will be made\nfullscreen on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe client may specify a method to resolve a size conflict\nbetween the output size and the surface size - this is provided\nthrough the method parameter.\n\nThe framerate parameter is used only when the method is set\nto \"driver\", to indicate the preferred framerate. A value of 0\nindicates that the client does not care about framerate. The\nframerate is specified in mHz, that is framerate of 60000 is 60Hz.\n\nA method of \"scale\" or \"driver\" implies a scaling operation of\nthe surface, either via a direct scaling operation or a change of\nthe output mode. This will override any kind of output scaling, so\nthat mapping a surface with a buffer size equal to the mode can\nfill the screen independent of buffer_scale.\n\nA method of \"fill\" means we don't scale up the buffer, however\nany output scale is applied. This means that you may run into\nan edge case where the application maps a buffer with the same\nsize of the output mode but buffer_scale 1 (thus making a\nsurface larger than the output). In this case it is allowed to\ndownscale the results to fit the screen.\n\nThe compositor must reply to this request with a configure event\nwith the dimensions for the output on which the surface will\nbe made fullscreen."] - SetFullscreen { - method: FullscreenMethod, - framerate: u32, - output: Option, - }, - #[doc = "make the surface a popup surface\n\nMap the surface as a popup.\n\nA popup surface is a transient surface with an added pointer\ngrab.\n\nAn existing implicit grab will be changed to owner-events mode,\nand the popup grab will continue after the implicit grab ends\n(i.e. releasing the mouse button does not cause the popup to\nbe unmapped).\n\nThe popup grab continues until the window is destroyed or a\nmouse button is pressed in any other client's window. A click\nin any of the client's surfaces is reported as normal, however,\nclicks in other clients' surfaces will be discarded and trigger\nthe callback.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates."] - SetPopup { - seat: super::wl_seat::WlSeat, - serial: u32, - parent: super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - }, - #[doc = "make the surface a maximized surface\n\nMap the surface as a maximized surface.\n\nIf an output parameter is given then the surface will be\nmaximized on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe compositor will reply with a configure event telling\nthe expected new surface size. The operation is completed\non the next buffer attach to this surface.\n\nA maximized surface typically fills the entire output it is\nbound to, except for desktop elements such as panels. This is\nthe main difference between a maximized shell surface and a\nfullscreen shell surface.\n\nThe details depend on the compositor implementation."] - SetMaximized { - output: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set surface class\n\nSet a class for the surface.\n\nThe surface class identifies the general class of applications\nto which the surface belongs. A common convention is to use the\nfile name (or the full path if it is a non-standard location) of\nthe application's .desktop file as the class."] - SetClass { class_: String }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_toplevel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_transient", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_popup", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_class", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Pong { .. } => 0, - Request::Move { .. } => 1, - Request::Resize { .. } => 2, - Request::SetToplevel => 3, - Request::SetTransient { .. } => 4, - Request::SetFullscreen { .. } => 5, - Request::SetPopup { .. } => 6, - Request::SetMaximized { .. } => 7, - Request::SetTitle { .. } => 8, - Request::SetClass { .. } => 9, - } - } - fn since(&self) -> u32 { - match *self { - Request::Pong { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::SetToplevel => 1, - Request::SetTransient { .. } => 1, - Request::SetFullscreen { .. } => 1, - Request::SetPopup { .. } => 1, - Request::SetMaximized { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetClass { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Uint(serial),], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges.to_raw()), - ], - }, - Request::SetToplevel => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::SetTransient { - parent, - x, - y, - flags, - } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(parent.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Uint(flags.to_raw()), - ], - }, - Request::SetFullscreen { - method, - framerate, - output, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![ - Argument::Uint(method.to_raw()), - Argument::Uint(framerate), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - ], - }, - Request::SetPopup { - seat, - serial, - parent, - x, - y, - flags, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Object(parent.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Uint(flags.to_raw()), - ], - }, - Request::SetMaximized { output } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetClass { class_ } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(class_.into()) - })),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(0, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(1, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges.to_raw(); - f(2, &mut _args_array) - } - Request::SetToplevel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::SetTransient { - parent, - x, - y, - flags, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent.as_ref().c_ptr() as *mut _; - _args_array[1].i = x; - _args_array[2].i = y; - _args_array[3].u = flags.to_raw(); - f(4, &mut _args_array) - } - Request::SetFullscreen { - method, - framerate, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = method.to_raw(); - _args_array[1].u = framerate; - _args_array[2].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(5, &mut _args_array) - } - Request::SetPopup { - seat, - serial, - parent, - x, - y, - flags, - } => { - let mut _args_array: [wl_argument; 6] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].o = parent.as_ref().c_ptr() as *mut _; - _args_array[3].i = x; - _args_array[4].i = y; - _args_array[5].u = flags.to_raw(); - f(6, &mut _args_array) - } - Request::SetMaximized { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(7, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(8, &mut _args_array) - } - Request::SetClass { class_ } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(class_).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(9, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "ping client\n\nPing a client to check if it is receiving events and sending\nrequests. A client is expected to reply with a pong request."] - Ping { serial: u32 }, - #[doc = "suggest resize\n\nThe configure event asks the client to resize its surface.\n\nThe size is a hint, in the sense that the client is free to\nignore it if it doesn't resize, pick a smaller size (to\nsatisfy aspect ratio or resize in steps of NxM pixels).\n\nThe edges parameter provides a hint about how the surface\nwas resized. The client may use this information to decide\nhow to adjust its content to the new size (e.g. a scrolling\narea might adjust its content position to leave the viewable\ncontent unmoved).\n\nThe client is free to dismiss all but the last configure\nevent it received.\n\nThe width and height arguments specify the size of the window\nin surface-local coordinates."] - Configure { - edges: Resize, - width: i32, - height: i32, - }, - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup grab is broken,\nthat is, when the user clicks a surface that doesn't belong\nto the client owning the popup surface."] - PopupDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - Event::Configure { .. } => 1, - Event::PopupDone => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - Event::Configure { .. } => 1, - Event::PopupDone => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - edges: { - if let Some(Argument::Uint(val)) = args.next() { - Resize::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::PopupDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - edges: Resize::from_raw(_args[0].u).ok_or(())?, - width: _args[1].i, - height: _args[2].i, - }) - } - 2 => Ok(Event::PopupDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlShellSurface(Proxy); - impl AsRef> for WlShellSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlShellSurface { - #[inline] - fn from(value: Proxy) -> Self { - WlShellSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlShellSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlShellSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlShellSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_shell_surface"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_shell_surface_interface } - } - } - impl WlShellSurface { - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart a pointer-driven move of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a pointer-driven resizing of the surface.\n\nThis request must be used in response to a button press event.\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized)."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: Resize) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a toplevel surface\n\nMap the surface as a toplevel surface.\n\nA toplevel surface is not fullscreen, maximized or transient."] - pub fn set_toplevel(&self) -> () { - let msg = Request::SetToplevel; - self.0.send::(msg, None); - } - #[doc = "make the surface a transient surface\n\nMap the surface relative to an existing surface.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates.\n\nThe flags argument controls details of the transient behaviour."] - pub fn set_transient( - &self, - parent: &super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - ) -> () { - let msg = Request::SetTransient { - parent: parent.clone(), - x: x, - y: y, - flags: flags, - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a fullscreen surface\n\nMap the surface as a fullscreen surface.\n\nIf an output parameter is given then the surface will be made\nfullscreen on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe client may specify a method to resolve a size conflict\nbetween the output size and the surface size - this is provided\nthrough the method parameter.\n\nThe framerate parameter is used only when the method is set\nto \"driver\", to indicate the preferred framerate. A value of 0\nindicates that the client does not care about framerate. The\nframerate is specified in mHz, that is framerate of 60000 is 60Hz.\n\nA method of \"scale\" or \"driver\" implies a scaling operation of\nthe surface, either via a direct scaling operation or a change of\nthe output mode. This will override any kind of output scaling, so\nthat mapping a surface with a buffer size equal to the mode can\nfill the screen independent of buffer_scale.\n\nA method of \"fill\" means we don't scale up the buffer, however\nany output scale is applied. This means that you may run into\nan edge case where the application maps a buffer with the same\nsize of the output mode but buffer_scale 1 (thus making a\nsurface larger than the output). In this case it is allowed to\ndownscale the results to fit the screen.\n\nThe compositor must reply to this request with a configure event\nwith the dimensions for the output on which the surface will\nbe made fullscreen."] - pub fn set_fullscreen( - &self, - method: FullscreenMethod, - framerate: u32, - output: Option<&super::wl_output::WlOutput>, - ) -> () { - let msg = Request::SetFullscreen { - method: method, - framerate: framerate, - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a popup surface\n\nMap the surface as a popup.\n\nA popup surface is a transient surface with an added pointer\ngrab.\n\nAn existing implicit grab will be changed to owner-events mode,\nand the popup grab will continue after the implicit grab ends\n(i.e. releasing the mouse button does not cause the popup to\nbe unmapped).\n\nThe popup grab continues until the window is destroyed or a\nmouse button is pressed in any other client's window. A click\nin any of the client's surfaces is reported as normal, however,\nclicks in other clients' surfaces will be discarded and trigger\nthe callback.\n\nThe x and y arguments specify the location of the upper left\ncorner of the surface relative to the upper left corner of the\nparent surface, in surface-local coordinates."] - pub fn set_popup( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - parent: &super::wl_surface::WlSurface, - x: i32, - y: i32, - flags: Transient, - ) -> () { - let msg = Request::SetPopup { - seat: seat.clone(), - serial: serial, - parent: parent.clone(), - x: x, - y: y, - flags: flags, - }; - self.0.send::(msg, None); - } - #[doc = "make the surface a maximized surface\n\nMap the surface as a maximized surface.\n\nIf an output parameter is given then the surface will be\nmaximized on that output. If the client does not specify the\noutput then the compositor will apply its policy - usually\nchoosing the output on which the surface has the biggest surface\narea.\n\nThe compositor will reply with a configure event telling\nthe expected new surface size. The operation is completed\non the next buffer attach to this surface.\n\nA maximized surface typically fills the entire output it is\nbound to, except for desktop elements such as panels. This is\nthe main difference between a maximized shell surface and a\nfullscreen shell surface.\n\nThe details depend on the compositor implementation."] - pub fn set_maximized(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetMaximized { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set surface class\n\nSet a class for the surface.\n\nThe surface class identifies the general class of applications\nto which the surface belongs. A common convention is to use the\nfile name (or the full path if it is a non-standard location) of\nthe application's .desktop file as the class."] - pub fn set_class(&self, class_: String) -> () { - let msg = Request::SetClass { class_: class_ }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TRANSIENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CLASS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - static mut wl_shell_surface_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_set_transient_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_set_fullscreen_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - static mut wl_shell_surface_requests_set_popup_types: [*const wl_interface; 6] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_shell_surface_requests_set_maximized_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shell_surface_requests: [wl_message; 10] = [ - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_resize_types as *const _ }, - }, - wl_message { - name: b"set_toplevel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_transient\0" as *const u8 as *const c_char, - signature: b"oiiu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_transient_types as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"uu?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"set_popup\0" as *const u8 as *const c_char, - signature: b"ouoiiu\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_popup_types as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_shell_surface_requests_set_maximized_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_class\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_shell_surface_events: [wl_message; 3] = [ - wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"uii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_shell_surface_interface: wl_interface = wl_interface { - name: b"wl_shell_surface\0" as *const u8 as *const c_char, - version: 1, - request_count: 10, - requests: unsafe { &wl_shell_surface_requests as *const _ }, - event_count: 3, - events: unsafe { &wl_shell_surface_events as *const _ }, - }; -} -#[doc = "an onscreen surface\n\nA surface is a rectangular area that may be displayed on zero\nor more outputs, and shown any number of times at the compositor's\ndiscretion. They can present wl_buffers, receive user input, and\ndefine a local coordinate system.\n\nThe size of a surface (and relative positions on it) is described\nin surface-local coordinates, which may differ from the buffer\ncoordinates of the pixel content, in case a buffer_transform\nor a buffer_scale is used.\n\nA surface without a \"role\" is fairly useless: a compositor does\nnot know where, when or how to present it. The role is the\npurpose of a wl_surface. Examples of roles are a cursor for a\npointer (as set by wl_pointer.set_cursor), a drag icon\n(wl_data_device.start_drag), a sub-surface\n(wl_subcompositor.get_subsurface), and a window as defined by a\nshell protocol (e.g. wl_shell.get_shell_surface).\n\nA surface can have only one role at a time. Initially a\nwl_surface does not have a role. Once a wl_surface is given a\nrole, it is set permanently for the whole lifetime of the\nwl_surface object. Giving the current role again is allowed,\nunless explicitly forbidden by the relevant interface\nspecification.\n\nSurface roles are given by requests in other interfaces such as\nwl_pointer.set_cursor. The request should explicitly mention\nthat this request gives a role to a wl_surface. Often, this\nrequest also creates a new protocol object that represents the\nrole and adds additional functionality to wl_surface. When a\nclient wants to destroy a wl_surface, they must destroy this 'role\nobject' before the wl_surface.\n\nDestroying the role object does not remove the role from the\nwl_surface, but it may stop the wl_surface from \"playing the role\".\nFor instance, if a wl_subsurface object is destroyed, the wl_surface\nit was created for will be unmapped and forget its position and\nz-order. It is allowed to create a wl_subsurface for the same\nwl_surface again, but it is not allowed to use the wl_surface as\na cursor (cursor is a different role than sub-surface, and role\nswitching is not allowed)."] -pub mod wl_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "wl_surface error values\n\nThese errors can be emitted in response to wl_surface requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "buffer scale value is invalid"] - InvalidScale = 0, - #[doc = "buffer transform value is invalid"] - InvalidTransform = 1, - #[doc = "buffer size is invalid"] - InvalidSize = 2, - #[doc = "buffer offset is invalid"] - InvalidOffset = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidScale), - 1 => Some(Error::InvalidTransform), - 2 => Some(Error::InvalidSize), - 3 => Some(Error::InvalidOffset), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "delete surface\n\nDeletes the surface and invalidates its object ID.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the surface contents\n\nSet a buffer as the content of this surface.\n\nThe new size of the surface is calculated based on the buffer\nsize transformed by the inverse buffer_transform and the\ninverse buffer_scale. This means that at commit time the supplied\nbuffer size must be an integer multiple of the buffer_scale. If\nthat's not the case, an invalid_size error is sent.\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes. Setting anything other than 0\nas x and y arguments is discouraged, and should instead be replaced\nwith using the separate wl_surface.offset request.\n\nWhen the bound wl_surface version is 5 or higher, passing any\nnon-zero x or y is a protocol violation, and will result in an\n'invalid_offset' error being raised. To achieve equivalent semantics,\nuse wl_surface.offset.\n\nSurface contents are double-buffered state, see wl_surface.commit.\n\nThe initial surface contents are void; there is no content.\nwl_surface.attach assigns the given wl_buffer as the pending\nwl_buffer. wl_surface.commit makes the pending wl_buffer the new\nsurface contents, and the size of the surface becomes the size\ncalculated from the wl_buffer, as described above. After commit,\nthere is no pending buffer until the next attach.\n\nCommitting a pending wl_buffer allows the compositor to read the\npixels in the wl_buffer. The compositor may access the pixels at\nany time after the wl_surface.commit request. When the compositor\nwill not access the pixels anymore, it will send the\nwl_buffer.release event. Only after receiving wl_buffer.release,\nthe client may reuse the wl_buffer. A wl_buffer that has been\nattached and then replaced by another attach instead of committed\nwill not receive a release event, and is not used by the\ncompositor.\n\nIf a pending wl_buffer has been committed to more than one wl_surface,\nthe delivery of wl_buffer.release events becomes undefined. A well\nbehaved client should not rely on wl_buffer.release events in this\ncase. Alternatively, a client could create multiple wl_buffer objects\nfrom the same backing storage or use wp_linux_buffer_release.\n\nDestroying the wl_buffer after wl_buffer.release does not change\nthe surface contents. Destroying the wl_buffer before wl_buffer.release\nis allowed as long as the underlying buffer storage isn't re-used (this\ncan happen e.g. on client process termination). However, if the client\ndestroys the wl_buffer before receiving the wl_buffer.release event and\nmutates the underlying buffer storage, the surface contents become\nundefined immediately.\n\nIf wl_surface.attach is sent with a NULL wl_buffer, the\nfollowing wl_surface.commit will remove the surface content."] - Attach { - buffer: Option, - x: i32, - y: i32, - }, - #[doc = "mark part of the surface damaged\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in surface-local coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage adds pending damage: the new pending damage\nis the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nNote! New clients should not use this request. Instead damage can be\nposted with wl_surface.damage_buffer which uses buffer coordinates\ninstead of surface coordinates."] - Damage { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "request a frame throttling hint\n\nRequest a notification when it is a good time to start drawing a new\nframe, by creating a frame callback. This is useful for throttling\nredrawing operations, and driving animations.\n\nWhen a client is animating on a wl_surface, it can use the 'frame'\nrequest to get notified when it is a good time to draw and commit the\nnext frame of animation. If the client commits an update earlier than\nthat, it is likely that some updates will not make it to the display,\nand the client is wasting resources by drawing too often.\n\nThe frame request will take effect on the next wl_surface.commit.\nThe notification will only be posted for one frame unless\nrequested again. For a wl_surface, the notifications are posted in\nthe order the frame requests were committed.\n\nThe server must send the notifications so that a client\nwill not send excessive updates, while still allowing\nthe highest possible update rate for clients that wait for the reply\nbefore drawing again. The server should give some time for the client\nto draw and commit after sending the frame callback events to let it\nhit the next output refresh.\n\nA server should avoid signaling the frame callbacks if the\nsurface is not visible in any way, e.g. the surface is off-screen,\nor completely obscured by other opaque surfaces.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the current time, in\nmilliseconds, with an undefined base."] - Frame {}, - #[doc = "set opaque region\n\nThis request sets the region of the surface that contains\nopaque content.\n\nThe opaque region is an optimization hint for the compositor\nthat lets it optimize the redrawing of content behind opaque\nregions. Setting an opaque region is not required for correct\nbehaviour, but marking transparent content as opaque will result\nin repaint artifacts.\n\nThe opaque region is specified in surface-local coordinates.\n\nThe compositor ignores the parts of the opaque region that fall\noutside of the surface.\n\nOpaque region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_opaque_region changes the pending opaque region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise, the pending and current regions are never changed.\n\nThe initial value for an opaque region is empty. Setting the pending\nopaque region has copy semantics, and the wl_region object can be\ndestroyed immediately. A NULL wl_region causes the pending opaque\nregion to be set to empty."] - SetOpaqueRegion { - region: Option, - }, - #[doc = "set input region\n\nThis request sets the region of the surface that can receive\npointer and touch events.\n\nInput events happening outside of this region will try the next\nsurface in the server surface stack. The compositor ignores the\nparts of the input region that fall outside of the surface.\n\nThe input region is specified in surface-local coordinates.\n\nInput region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_input_region changes the pending input region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise the pending and current regions are never changed,\nexcept cursor and icon surfaces are special cases, see\nwl_pointer.set_cursor and wl_data_device.start_drag.\n\nThe initial value for an input region is infinite. That means the\nwhole surface will accept input. Setting the pending input region\nhas copy semantics, and the wl_region object can be destroyed\nimmediately. A NULL wl_region causes the input region to be set\nto infinite."] - SetInputRegion { - region: Option, - }, - #[doc = "commit pending surface state\n\nSurface state (input, opaque, and damage regions, attached buffers,\netc.) is double-buffered. Protocol requests modify the pending state,\nas opposed to the current state in use by the compositor. A commit\nrequest atomically applies all pending state, replacing the current\nstate. After commit, the new pending state is as documented for each\nrelated request.\n\nOn commit, a pending wl_buffer is applied first, and all other state\nsecond. This means that all coordinates in double-buffered state are\nrelative to the new wl_buffer coming into use, except for\nwl_surface.attach itself. If there is no pending wl_buffer, the\ncoordinates are relative to the current surface contents.\n\nAll requests that need a commit to become effective are documented\nto affect double-buffered state.\n\nOther interfaces may add further double-buffered surface state."] - Commit, - #[doc = "sets the buffer transformation\n\nThis request sets an optional transformation on how the compositor\ninterprets the contents of the buffer attached to the surface. The\naccepted values for the transform parameter are the values for\nwl_output.transform.\n\nBuffer transform is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer transformation set to normal.\n\nwl_surface.set_buffer_transform changes the pending buffer\ntransformation. wl_surface.commit copies the pending buffer\ntransformation to the current one. Otherwise, the pending and current\nvalues are never changed.\n\nThe purpose of this request is to allow clients to render content\naccording to the output transform, thus permitting the compositor to\nuse certain optimizations even if the display is rotated. Using\nhardware overlays and scanning out a client buffer for fullscreen\nsurfaces are examples of such optimizations. Those optimizations are\nhighly dependent on the compositor implementation, so the use of this\nrequest should be considered on a case-by-case basis.\n\nNote that if the transform value includes 90 or 270 degree rotation,\nthe width of the buffer will become the surface height and the height\nof the buffer will become the surface width.\n\nIf transform is not one of the values from the\nwl_output.transform enum the invalid_transform protocol error\nis raised.\n\nOnly available since version 2 of the interface"] - SetBufferTransform { - transform: super::wl_output::Transform, - }, - #[doc = "sets the buffer scaling factor\n\nThis request sets an optional scaling factor on how the compositor\ninterprets the contents of the buffer attached to the window.\n\nBuffer scale is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer scale set to 1.\n\nwl_surface.set_buffer_scale changes the pending buffer scale.\nwl_surface.commit copies the pending buffer scale to the current one.\nOtherwise, the pending and current values are never changed.\n\nThe purpose of this request is to allow clients to supply higher\nresolution buffer data for use on high resolution outputs. It is\nintended that you pick the same buffer scale as the scale of the\noutput that the surface is displayed on. This means the compositor\ncan avoid scaling when rendering the surface on that output.\n\nNote that if the scale is larger than 1, then you have to attach\na buffer that is larger (by a factor of scale in each dimension)\nthan the desired surface size.\n\nIf scale is not positive the invalid_scale protocol error is\nraised.\n\nOnly available since version 3 of the interface"] - SetBufferScale { scale: i32 }, - #[doc = "mark part of the surface damaged using buffer coordinates\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in buffer coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage_buffer adds pending damage: the new pending\ndamage is the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nThis request differs from wl_surface.damage in only one way - it\ntakes damage in buffer coordinates instead of surface-local\ncoordinates. While this generally is more intuitive than surface\ncoordinates, it is especially desirable when using wp_viewport\nor when a drawing library (like EGL) is unaware of buffer scale\nand buffer transform.\n\nNote: Because buffer transformation changes and damage requests may\nbe interleaved in the protocol stream, it is impossible to determine\nthe actual mapping between surface and buffer damage until\nwl_surface.commit time. Therefore, compositors wishing to take both\nkinds of damage into account will have to accumulate damage from the\ntwo requests separately and only transform from one to the other\nafter receiving the wl_surface.commit.\n\nOnly available since version 4 of the interface"] - DamageBuffer { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "set the surface contents offset\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes.\n\nSurface location offset is double-buffered state, see\nwl_surface.commit.\n\nThis request is semantically equivalent to and the replaces the x and y\narguments in the wl_surface.attach request in wl_surface versions prior\nto 5. See wl_surface.attach for details.\n\nOnly available since version 5 of the interface"] - Offset { x: i32, y: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "attach", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "damage", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "set_opaque_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_input_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "commit", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_buffer_transform", - since: 2, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_buffer_scale", - since: 3, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "damage_buffer", - since: 4, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "offset", - since: 5, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Attach { .. } => 1, - Request::Damage { .. } => 2, - Request::Frame { .. } => 3, - Request::SetOpaqueRegion { .. } => 4, - Request::SetInputRegion { .. } => 5, - Request::Commit => 6, - Request::SetBufferTransform { .. } => 7, - Request::SetBufferScale { .. } => 8, - Request::DamageBuffer { .. } => 9, - Request::Offset { .. } => 10, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Attach { .. } => 1, - Request::Damage { .. } => 1, - Request::Frame { .. } => 1, - Request::SetOpaqueRegion { .. } => 1, - Request::SetInputRegion { .. } => 1, - Request::Commit => 1, - Request::SetBufferTransform { .. } => 2, - Request::SetBufferScale { .. } => 3, - Request::DamageBuffer { .. } => 4, - Request::Offset { .. } => 5, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 3 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Attach { buffer, x, y } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Object(buffer.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Damage { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Frame {} => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::NewId(0),], - }, - Request::SetOpaqueRegion { region } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetInputRegion { region } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::Commit => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![], - }, - Request::SetBufferTransform { transform } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Int(transform.to_raw() as i32),], - }, - Request::SetBufferScale { scale } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(scale),], - }, - Request::DamageBuffer { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Offset { x, y } => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Attach { buffer, x, y } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = buffer - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].i = x; - _args_array[2].i = y; - f(1, &mut _args_array) - } - Request::Damage { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - Request::Frame {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(3, &mut _args_array) - } - Request::SetOpaqueRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(4, &mut _args_array) - } - Request::SetInputRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(5, &mut _args_array) - } - Request::Commit => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(6, &mut _args_array) - } - Request::SetBufferTransform { transform } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = transform.to_raw() as i32; - f(7, &mut _args_array) - } - Request::SetBufferScale { scale } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = scale; - f(8, &mut _args_array) - } - Request::DamageBuffer { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(9, &mut _args_array) - } - Request::Offset { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(10, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "surface enters an output\n\nThis is emitted whenever a surface's creation, movement, or resizing\nresults in some part of it being within the scanout region of an\noutput.\n\nNote that a surface may be overlapping with zero or more outputs."] - Enter { output: super::wl_output::WlOutput }, - #[doc = "surface leaves an output\n\nThis is emitted whenever a surface's creation, movement, or resizing\nresults in it no longer having any part of it within the scanout region\nof an output.\n\nClients should not use the number of outputs the surface is on for frame\nthrottling purposes. The surface might be hidden even if no leave event\nhas been sent, and the compositor might expect new surface content\nupdates even if no enter event has been sent. The frame event should be\nused instead."] - Leave { output: super::wl_output::WlOutput }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enter { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Leave { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSurface(Proxy); - impl AsRef> for WlSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSurface { - #[inline] - fn from(value: Proxy) -> Self { - WlSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_surface"; - const VERSION: u32 = 5; - fn c_interface() -> *const wl_interface { - unsafe { &wl_surface_interface } - } - } - impl WlSurface { - #[doc = "delete surface\n\nDeletes the surface and invalidates its object ID.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the surface contents\n\nSet a buffer as the content of this surface.\n\nThe new size of the surface is calculated based on the buffer\nsize transformed by the inverse buffer_transform and the\ninverse buffer_scale. This means that at commit time the supplied\nbuffer size must be an integer multiple of the buffer_scale. If\nthat's not the case, an invalid_size error is sent.\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes. Setting anything other than 0\nas x and y arguments is discouraged, and should instead be replaced\nwith using the separate wl_surface.offset request.\n\nWhen the bound wl_surface version is 5 or higher, passing any\nnon-zero x or y is a protocol violation, and will result in an\n'invalid_offset' error being raised. To achieve equivalent semantics,\nuse wl_surface.offset.\n\nSurface contents are double-buffered state, see wl_surface.commit.\n\nThe initial surface contents are void; there is no content.\nwl_surface.attach assigns the given wl_buffer as the pending\nwl_buffer. wl_surface.commit makes the pending wl_buffer the new\nsurface contents, and the size of the surface becomes the size\ncalculated from the wl_buffer, as described above. After commit,\nthere is no pending buffer until the next attach.\n\nCommitting a pending wl_buffer allows the compositor to read the\npixels in the wl_buffer. The compositor may access the pixels at\nany time after the wl_surface.commit request. When the compositor\nwill not access the pixels anymore, it will send the\nwl_buffer.release event. Only after receiving wl_buffer.release,\nthe client may reuse the wl_buffer. A wl_buffer that has been\nattached and then replaced by another attach instead of committed\nwill not receive a release event, and is not used by the\ncompositor.\n\nIf a pending wl_buffer has been committed to more than one wl_surface,\nthe delivery of wl_buffer.release events becomes undefined. A well\nbehaved client should not rely on wl_buffer.release events in this\ncase. Alternatively, a client could create multiple wl_buffer objects\nfrom the same backing storage or use wp_linux_buffer_release.\n\nDestroying the wl_buffer after wl_buffer.release does not change\nthe surface contents. Destroying the wl_buffer before wl_buffer.release\nis allowed as long as the underlying buffer storage isn't re-used (this\ncan happen e.g. on client process termination). However, if the client\ndestroys the wl_buffer before receiving the wl_buffer.release event and\nmutates the underlying buffer storage, the surface contents become\nundefined immediately.\n\nIf wl_surface.attach is sent with a NULL wl_buffer, the\nfollowing wl_surface.commit will remove the surface content."] - pub fn attach(&self, buffer: Option<&super::wl_buffer::WlBuffer>, x: i32, y: i32) -> () { - let msg = Request::Attach { - buffer: buffer.map(|o| o.clone()), - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "mark part of the surface damaged\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in surface-local coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage adds pending damage: the new pending damage\nis the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nNote! New clients should not use this request. Instead damage can be\nposted with wl_surface.damage_buffer which uses buffer coordinates\ninstead of surface coordinates."] - pub fn damage(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::Damage { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "request a frame throttling hint\n\nRequest a notification when it is a good time to start drawing a new\nframe, by creating a frame callback. This is useful for throttling\nredrawing operations, and driving animations.\n\nWhen a client is animating on a wl_surface, it can use the 'frame'\nrequest to get notified when it is a good time to draw and commit the\nnext frame of animation. If the client commits an update earlier than\nthat, it is likely that some updates will not make it to the display,\nand the client is wasting resources by drawing too often.\n\nThe frame request will take effect on the next wl_surface.commit.\nThe notification will only be posted for one frame unless\nrequested again. For a wl_surface, the notifications are posted in\nthe order the frame requests were committed.\n\nThe server must send the notifications so that a client\nwill not send excessive updates, while still allowing\nthe highest possible update rate for clients that wait for the reply\nbefore drawing again. The server should give some time for the client\nto draw and commit after sending the frame callback events to let it\nhit the next output refresh.\n\nA server should avoid signaling the frame callbacks if the\nsurface is not visible in any way, e.g. the surface is off-screen,\nor completely obscured by other opaque surfaces.\n\nThe object returned by this request will be destroyed by the\ncompositor after the callback is fired and as such the client must not\nattempt to use it after that point.\n\nThe callback_data passed in the callback is the current time, in\nmilliseconds, with an undefined base."] - pub fn frame(&self) -> Main { - let msg = Request::Frame {}; - self.0.send(msg, None).unwrap() - } - #[doc = "set opaque region\n\nThis request sets the region of the surface that contains\nopaque content.\n\nThe opaque region is an optimization hint for the compositor\nthat lets it optimize the redrawing of content behind opaque\nregions. Setting an opaque region is not required for correct\nbehaviour, but marking transparent content as opaque will result\nin repaint artifacts.\n\nThe opaque region is specified in surface-local coordinates.\n\nThe compositor ignores the parts of the opaque region that fall\noutside of the surface.\n\nOpaque region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_opaque_region changes the pending opaque region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise, the pending and current regions are never changed.\n\nThe initial value for an opaque region is empty. Setting the pending\nopaque region has copy semantics, and the wl_region object can be\ndestroyed immediately. A NULL wl_region causes the pending opaque\nregion to be set to empty."] - pub fn set_opaque_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetOpaqueRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set input region\n\nThis request sets the region of the surface that can receive\npointer and touch events.\n\nInput events happening outside of this region will try the next\nsurface in the server surface stack. The compositor ignores the\nparts of the input region that fall outside of the surface.\n\nThe input region is specified in surface-local coordinates.\n\nInput region is double-buffered state, see wl_surface.commit.\n\nwl_surface.set_input_region changes the pending input region.\nwl_surface.commit copies the pending region to the current region.\nOtherwise the pending and current regions are never changed,\nexcept cursor and icon surfaces are special cases, see\nwl_pointer.set_cursor and wl_data_device.start_drag.\n\nThe initial value for an input region is infinite. That means the\nwhole surface will accept input. Setting the pending input region\nhas copy semantics, and the wl_region object can be destroyed\nimmediately. A NULL wl_region causes the input region to be set\nto infinite."] - pub fn set_input_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetInputRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "commit pending surface state\n\nSurface state (input, opaque, and damage regions, attached buffers,\netc.) is double-buffered. Protocol requests modify the pending state,\nas opposed to the current state in use by the compositor. A commit\nrequest atomically applies all pending state, replacing the current\nstate. After commit, the new pending state is as documented for each\nrelated request.\n\nOn commit, a pending wl_buffer is applied first, and all other state\nsecond. This means that all coordinates in double-buffered state are\nrelative to the new wl_buffer coming into use, except for\nwl_surface.attach itself. If there is no pending wl_buffer, the\ncoordinates are relative to the current surface contents.\n\nAll requests that need a commit to become effective are documented\nto affect double-buffered state.\n\nOther interfaces may add further double-buffered surface state."] - pub fn commit(&self) -> () { - let msg = Request::Commit; - self.0.send::(msg, None); - } - #[doc = "sets the buffer transformation\n\nThis request sets an optional transformation on how the compositor\ninterprets the contents of the buffer attached to the surface. The\naccepted values for the transform parameter are the values for\nwl_output.transform.\n\nBuffer transform is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer transformation set to normal.\n\nwl_surface.set_buffer_transform changes the pending buffer\ntransformation. wl_surface.commit copies the pending buffer\ntransformation to the current one. Otherwise, the pending and current\nvalues are never changed.\n\nThe purpose of this request is to allow clients to render content\naccording to the output transform, thus permitting the compositor to\nuse certain optimizations even if the display is rotated. Using\nhardware overlays and scanning out a client buffer for fullscreen\nsurfaces are examples of such optimizations. Those optimizations are\nhighly dependent on the compositor implementation, so the use of this\nrequest should be considered on a case-by-case basis.\n\nNote that if the transform value includes 90 or 270 degree rotation,\nthe width of the buffer will become the surface height and the height\nof the buffer will become the surface width.\n\nIf transform is not one of the values from the\nwl_output.transform enum the invalid_transform protocol error\nis raised.\n\nOnly available since version 2 of the interface."] - pub fn set_buffer_transform(&self, transform: super::wl_output::Transform) -> () { - let msg = Request::SetBufferTransform { - transform: transform, - }; - self.0.send::(msg, None); - } - #[doc = "sets the buffer scaling factor\n\nThis request sets an optional scaling factor on how the compositor\ninterprets the contents of the buffer attached to the window.\n\nBuffer scale is double-buffered state, see wl_surface.commit.\n\nA newly created surface has its buffer scale set to 1.\n\nwl_surface.set_buffer_scale changes the pending buffer scale.\nwl_surface.commit copies the pending buffer scale to the current one.\nOtherwise, the pending and current values are never changed.\n\nThe purpose of this request is to allow clients to supply higher\nresolution buffer data for use on high resolution outputs. It is\nintended that you pick the same buffer scale as the scale of the\noutput that the surface is displayed on. This means the compositor\ncan avoid scaling when rendering the surface on that output.\n\nNote that if the scale is larger than 1, then you have to attach\na buffer that is larger (by a factor of scale in each dimension)\nthan the desired surface size.\n\nIf scale is not positive the invalid_scale protocol error is\nraised.\n\nOnly available since version 3 of the interface."] - pub fn set_buffer_scale(&self, scale: i32) -> () { - let msg = Request::SetBufferScale { scale: scale }; - self.0.send::(msg, None); - } - #[doc = "mark part of the surface damaged using buffer coordinates\n\nThis request is used to describe the regions where the pending\nbuffer is different from the current surface contents, and where\nthe surface therefore needs to be repainted. The compositor\nignores the parts of the damage that fall outside of the surface.\n\nDamage is double-buffered state, see wl_surface.commit.\n\nThe damage rectangle is specified in buffer coordinates,\nwhere x and y specify the upper left corner of the damage rectangle.\n\nThe initial value for pending damage is empty: no damage.\nwl_surface.damage_buffer adds pending damage: the new pending\ndamage is the union of old pending damage and the given rectangle.\n\nwl_surface.commit assigns pending damage as the current damage,\nand clears pending damage. The server will clear the current\ndamage as it repaints the surface.\n\nThis request differs from wl_surface.damage in only one way - it\ntakes damage in buffer coordinates instead of surface-local\ncoordinates. While this generally is more intuitive than surface\ncoordinates, it is especially desirable when using wp_viewport\nor when a drawing library (like EGL) is unaware of buffer scale\nand buffer transform.\n\nNote: Because buffer transformation changes and damage requests may\nbe interleaved in the protocol stream, it is impossible to determine\nthe actual mapping between surface and buffer damage until\nwl_surface.commit time. Therefore, compositors wishing to take both\nkinds of damage into account will have to accumulate damage from the\ntwo requests separately and only transform from one to the other\nafter receiving the wl_surface.commit.\n\nOnly available since version 4 of the interface."] - pub fn damage_buffer(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::DamageBuffer { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the surface contents offset\n\nThe x and y arguments specify the location of the new pending\nbuffer's upper left corner, relative to the current buffer's upper\nleft corner, in surface-local coordinates. In other words, the\nx and y, combined with the new surface size define in which\ndirections the surface's size changes.\n\nSurface location offset is double-buffered state, see\nwl_surface.commit.\n\nThis request is semantically equivalent to and the replaces the x and y\narguments in the wl_surface.attach request in wl_surface versions prior\nto 5. See wl_surface.attach for details.\n\nOnly available since version 5 of the interface."] - pub fn offset(&self, x: i32, y: i32) -> () { - let msg = Request::Offset { x: x, y: y }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ATTACH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DAMAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OPAQUE_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_INPUT_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_BUFFER_TRANSFORM_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_BUFFER_SCALE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DAMAGE_BUFFER_SINCE: u32 = 4u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFSET_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - static mut wl_surface_requests_attach_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_surface_requests_frame_types: [*const wl_interface; 1] = - [unsafe { &super::wl_callback::wl_callback_interface as *const wl_interface }]; - static mut wl_surface_requests_set_opaque_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - static mut wl_surface_requests_set_input_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_surface_requests: [wl_message; 11] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"attach\0" as *const u8 as *const c_char, - signature: b"?oii\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_attach_types as *const _ }, - }, - wl_message { - name: b"damage\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_frame_types as *const _ }, - }, - wl_message { - name: b"set_opaque_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_set_opaque_region_types as *const _ }, - }, - wl_message { - name: b"set_input_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_requests_set_input_region_types as *const _ }, - }, - wl_message { - name: b"commit\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_buffer_transform\0" as *const u8 as *const c_char, - signature: b"2i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_buffer_scale\0" as *const u8 as *const c_char, - signature: b"3i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"damage_buffer\0" as *const u8 as *const c_char, - signature: b"4iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"offset\0" as *const u8 as *const c_char, - signature: b"5ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut wl_surface_events_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - static mut wl_surface_events_leave_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_surface_events: [wl_message; 2] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_surface_events_leave_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_surface_interface: wl_interface = wl_interface { - name: b"wl_surface\0" as *const u8 as *const c_char, - version: 5, - request_count: 11, - requests: unsafe { &wl_surface_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_surface_events as *const _ }, - }; -} -#[doc = "group of input devices\n\nA seat is a group of keyboards, pointer and touch devices. This\nobject is published as a global during start up, or when such a\ndevice is hot plugged. A seat typically has a pointer and\nmaintains a keyboard focus and a pointer focus."] -pub mod wl_seat { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "seat capability bitmask\n\nThis is a bitmask of capabilities this seat has; if a member is\nset, then it is present on the seat."] pub struct Capability : u32 { # [doc = "the seat has pointer devices"] const Pointer = 1 ; # [doc = "the seat has one or more keyboards"] const Keyboard = 2 ; # [doc = "the seat has touch devices"] const Touch = 4 ; } } - impl Capability { - pub fn from_raw(n: u32) -> Option { - Some(Capability::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "wl_seat error values\n\nThese errors can be emitted in response to wl_seat requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "get_pointer, get_keyboard or get_touch called on seat without the matching capability"] - MissingCapability = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::MissingCapability), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "return pointer object\n\nThe ID provided will be initialized to the wl_pointer interface\nfor this seat.\n\nThis request only takes effect if the seat has the pointer\ncapability, or has had the pointer capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the pointer capability. The missing_capability error will\nbe sent in this case."] - GetPointer {}, - #[doc = "return keyboard object\n\nThe ID provided will be initialized to the wl_keyboard interface\nfor this seat.\n\nThis request only takes effect if the seat has the keyboard\ncapability, or has had the keyboard capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the keyboard capability. The missing_capability error will\nbe sent in this case."] - GetKeyboard {}, - #[doc = "return touch object\n\nThe ID provided will be initialized to the wl_touch interface\nfor this seat.\n\nThis request only takes effect if the seat has the touch\ncapability, or has had the touch capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the touch capability. The missing_capability error will\nbe sent in this case."] - GetTouch {}, - #[doc = "release the seat object\n\nUsing this request a client can tell the server that it is not going to\nuse the seat object anymore.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 5 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_pointer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_keyboard", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_touch", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 5, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetPointer { .. } => 0, - Request::GetKeyboard { .. } => 1, - Request::GetTouch { .. } => 2, - Request::Release => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetPointer { .. } => 1, - Request::GetKeyboard { .. } => 1, - Request::GetTouch { .. } => 1, - Request::Release => 5, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetPointer {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetKeyboard {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetTouch {} => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0),], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetPointer {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetKeyboard {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetTouch {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "seat capabilities changed\n\nThis is emitted whenever a seat gains or loses the pointer,\nkeyboard or touch capabilities. The argument is a capability\nenum containing the complete set of capabilities this seat has.\n\nWhen the pointer capability is added, a client may create a\nwl_pointer object using the wl_seat.get_pointer request. This object\nwill receive pointer events until the capability is removed in the\nfuture.\n\nWhen the pointer capability is removed, a client should destroy the\nwl_pointer objects associated with the seat where the capability was\nremoved, using the wl_pointer.release request. No further pointer\nevents will be received on these objects.\n\nIn some compositors, if a seat regains the pointer capability and a\nclient has a previously obtained wl_pointer object of version 4 or\nless, that object may start sending pointer events again. This\nbehavior is considered a misinterpretation of the intended behavior\nand must not be relied upon by the client. wl_pointer objects of\nversion 5 or later must not send events if created before the most\nrecent event notifying the client of an added pointer capability.\n\nThe above behavior also applies to wl_keyboard and wl_touch with the\nkeyboard and touch capabilities, respectively."] - Capabilities { capabilities: Capability }, - #[doc = "unique identifier for this seat\n\nIn a multi-seat configuration the seat name can be used by clients to\nhelp identify which physical devices the seat represents.\n\nThe seat name is a UTF-8 string with no convention defined for its\ncontents. Each name is unique among all wl_seat globals. The name is\nonly guaranteed to be unique for the current compositor instance.\n\nThe same seat names are used for all clients. Thus, the name can be\nshared across processes to refer to a specific wl_seat global.\n\nThe name event is sent after binding to the seat global. This event is\nonly sent once per seat object, and the name does not change over the\nlifetime of the wl_seat global.\n\nCompositors may re-use the same seat name if the wl_seat global is\ndestroyed and re-created later.\n\nOnly available since version 2 of the interface"] - Name { name: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "capabilities", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "name", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Capabilities { .. } => 0, - Event::Name { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Capabilities { .. } => 1, - Event::Name { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capabilities { - capabilities: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capabilities { - capabilities: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSeat(Proxy); - impl AsRef> for WlSeat { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSeat { - #[inline] - fn from(value: Proxy) -> Self { - WlSeat(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSeat) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSeat { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSeat { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_seat"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_seat_interface } - } - } - impl WlSeat { - #[doc = "return pointer object\n\nThe ID provided will be initialized to the wl_pointer interface\nfor this seat.\n\nThis request only takes effect if the seat has the pointer\ncapability, or has had the pointer capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the pointer capability. The missing_capability error will\nbe sent in this case."] - pub fn get_pointer(&self) -> Main { - let msg = Request::GetPointer {}; - self.0.send(msg, None).unwrap() - } - #[doc = "return keyboard object\n\nThe ID provided will be initialized to the wl_keyboard interface\nfor this seat.\n\nThis request only takes effect if the seat has the keyboard\ncapability, or has had the keyboard capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the keyboard capability. The missing_capability error will\nbe sent in this case."] - pub fn get_keyboard(&self) -> Main { - let msg = Request::GetKeyboard {}; - self.0.send(msg, None).unwrap() - } - #[doc = "return touch object\n\nThe ID provided will be initialized to the wl_touch interface\nfor this seat.\n\nThis request only takes effect if the seat has the touch\ncapability, or has had the touch capability in the past.\nIt is a protocol violation to issue this request on a seat that has\nnever had the touch capability. The missing_capability error will\nbe sent in this case."] - pub fn get_touch(&self) -> Main { - let msg = Request::GetTouch {}; - self.0.send(msg, None).unwrap() - } - #[doc = "release the seat object\n\nUsing this request a client can tell the server that it is not going to\nuse the seat object anymore.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 5 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POINTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_KEYBOARD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOUCH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITIES_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 2u32; - static mut wl_seat_requests_get_pointer_types: [*const wl_interface; 1] = - [unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }]; - static mut wl_seat_requests_get_keyboard_types: [*const wl_interface; 1] = - [unsafe { &super::wl_keyboard::wl_keyboard_interface as *const wl_interface }]; - static mut wl_seat_requests_get_touch_types: [*const wl_interface; 1] = - [unsafe { &super::wl_touch::wl_touch_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_seat_requests: [wl_message; 4] = [ - wl_message { - name: b"get_pointer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_seat_requests_get_pointer_types as *const _ }, - }, - wl_message { - name: b"get_keyboard\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_seat_requests_get_keyboard_types as *const _ }, - }, - wl_message { - name: b"get_touch\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &wl_seat_requests_get_touch_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"5\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_seat_events: [wl_message; 2] = [ - wl_message { - name: b"capabilities\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_seat_interface: wl_interface = wl_interface { - name: b"wl_seat\0" as *const u8 as *const c_char, - version: 7, - request_count: 4, - requests: unsafe { &wl_seat_requests as *const _ }, - event_count: 2, - events: unsafe { &wl_seat_events as *const _ }, - }; -} -#[doc = "pointer input device\n\nThe wl_pointer interface represents one or more input devices,\nsuch as mice, which control the pointer location and pointer_focus\nof a seat.\n\nThe wl_pointer interface generates motion, enter and leave\nevents for the surfaces that the pointer is located over,\nand button and axis events for button presses, button releases\nand scrolling."] -pub mod wl_pointer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical button state\n\nDescribes the physical state of a button that produced the button\nevent."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "the button is not pressed"] - Released = 0, - #[doc = "the button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "axis types\n\nDescribes the axis types of scroll events."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Axis { - #[doc = "vertical axis"] - VerticalScroll = 0, - #[doc = "horizontal axis"] - HorizontalScroll = 1, - } - impl Axis { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Axis::VerticalScroll), - 1 => Some(Axis::HorizontalScroll), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "axis source types\n\nDescribes the source types for axis events. This indicates to the\nclient how an axis event was physically generated; a client may\nadjust the user interface accordingly. For example, scroll events\nfrom a \"finger\" source may be in a smooth coordinate space with\nkinetic scrolling whereas a \"wheel\" source may be in discrete steps\nof a number of lines.\n\nThe \"continuous\" axis source is a device generating events in a\ncontinuous coordinate space, but using something other than a\nfinger. One example for this source is button-based scrolling where\nthe vertical motion of a device is converted to scroll events while\na button is held down.\n\nThe \"wheel tilt\" axis source indicates that the actual device is a\nwheel but the scroll event is not caused by a rotation but a\n(usually sideways) tilt of the wheel."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum AxisSource { - #[doc = "a physical wheel rotation"] - Wheel = 0, - #[doc = "finger on a touch surface"] - Finger = 1, - #[doc = "continuous coordinate space"] - Continuous = 2, - #[doc = "a physical wheel tilt"] - WheelTilt = 3, - } - impl AxisSource { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(AxisSource::Wheel), - 1 => Some(AxisSource::Finger), - 2 => Some(AxisSource::Continuous), - 3 => Some(AxisSource::WheelTilt), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the pointer surface\n\nSet the pointer surface, i.e., the surface that contains the\npointer image (cursor). This request gives the surface the role\nof a cursor. If the surface already has another role, it raises\na protocol error.\n\nThe cursor actually changes only if the pointer\nfocus for this device is one of the requesting client's surfaces\nor the surface parameter is the current pointer surface. If\nthere was a previous surface set with this request it is\nreplaced. If surface is NULL, the pointer image is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of\nthe pointer surface relative to the pointer location. Its\ntop-left corner is always at (x, y) - (hotspot_x, hotspot_y),\nwhere (x, y) are the coordinates of the pointer location, in\nsurface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x\nand hotspot_y are decremented by the x and y parameters\npassed to the request. Attach must be confirmed by\nwl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set\npointer surface to this request with new values for hotspot_x\nand hotspot_y.\n\nThe current and pending input regions of the wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the cursor. When the use as a\ncursor ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped.\n\nThe serial parameter must match the latest wl_pointer.enter\nserial number sent to the client. Otherwise the request will be\nignored."] - SetCursor { - serial: u32, - surface: Option, - hotspot_x: i32, - hotspot_y: i32, - }, - #[doc = "release the pointer object\n\nUsing this request a client can tell the server that it is not going to\nuse the pointer object anymore.\n\nThis request destroys the pointer proxy object, so clients must not call\nwl_pointer_destroy() after using this request.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_cursor", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetCursor { .. } => 0, - Request::Release => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetCursor { .. } => 1, - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(hotspot_x), - Argument::Int(hotspot_y), - ], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].i = hotspot_x; - _args_array[3].i = hotspot_y; - f(0, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "enter event\n\nNotification that this seat's pointer is focused on a certain\nsurface.\n\nWhen a seat's focus enters a surface, the pointer image\nis undefined and a client should respond to this event by setting\nan appropriate pointer image with the set_cursor request."] - Enter { - serial: u32, - surface: super::wl_surface::WlSurface, - surface_x: f64, - surface_y: f64, - }, - #[doc = "leave event\n\nNotification that this seat's pointer is no longer focused on\na certain surface.\n\nThe leave notification is sent before the enter notification\nfor the new focus."] - Leave { - serial: u32, - surface: super::wl_surface::WlSurface, - }, - #[doc = "pointer motion event\n\nNotification of pointer location change. The arguments\nsurface_x and surface_y are the location relative to the\nfocused surface."] - Motion { - time: u32, - surface_x: f64, - surface_y: f64, - }, - #[doc = "pointer button event\n\nMouse button click and release notifications.\n\nThe location of the click is given by the last motion or\nenter event.\nThe time argument is a timestamp with millisecond\ngranularity, with an undefined base.\n\nThe button is a button code as defined in the Linux kernel's\nlinux/input-event-codes.h header file, e.g. BTN_LEFT.\n\nAny 16-bit button code value is reserved for future additions to the\nkernel's event code list. All other button codes above 0xFFFF are\ncurrently undefined but may be used in future versions of this\nprotocol."] - Button { - serial: u32, - time: u32, - button: u32, - state: ButtonState, - }, - #[doc = "axis event\n\nScroll and other axis notifications.\n\nFor scroll events (vertical and horizontal scroll axes), the\nvalue parameter is the length of a vector along the specified\naxis in a coordinate space identical to those of motion events,\nrepresenting a relative movement along the specified axis.\n\nFor devices that support movements non-parallel to axes multiple\naxis events will be emitted.\n\nWhen applicable, for example for touch pads, the server can\nchoose to emit scroll events where the motion vector is\nequivalent to a motion event vector.\n\nWhen applicable, a client can transform its content relative to the\nscroll distance."] - Axis { time: u32, axis: Axis, value: f64 }, - #[doc = "end of a pointer event sequence\n\nIndicates the end of a set of events that logically belong together.\nA client is expected to accumulate the data in all events within the\nframe before proceeding.\n\nAll wl_pointer events before a wl_pointer.frame event belong\nlogically together. For example, in a diagonal scroll motion the\ncompositor will send an optional wl_pointer.axis_source event, two\nwl_pointer.axis events (horizontal and vertical) and finally a\nwl_pointer.frame event. The client may use this information to\ncalculate a diagonal vector for scrolling.\n\nWhen multiple wl_pointer.axis events occur within the same frame,\nthe motion vector is the combined motion of all events.\nWhen a wl_pointer.axis and a wl_pointer.axis_stop event occur within\nthe same frame, this indicates that axis movement in one axis has\nstopped but continues in the other axis.\nWhen multiple wl_pointer.axis_stop events occur within the same\nframe, this indicates that these axes stopped in the same instance.\n\nA wl_pointer.frame event is sent for every logical event group,\neven if the group only contains a single wl_pointer event.\nSpecifically, a client may get a sequence: motion, frame, button,\nframe, axis, frame, axis_stop, frame.\n\nThe wl_pointer.enter and wl_pointer.leave events are logical events\ngenerated by the compositor and not the hardware. These events are\nalso grouped by a wl_pointer.frame. When a pointer moves from one\nsurface to another, a compositor should group the\nwl_pointer.leave event within the same wl_pointer.frame.\nHowever, a client must not rely on wl_pointer.leave and\nwl_pointer.enter being in the same wl_pointer.frame.\nCompositor-specific policies may require the wl_pointer.leave and\nwl_pointer.enter event being split across multiple wl_pointer.frame\ngroups.\n\nOnly available since version 5 of the interface"] - Frame, - #[doc = "axis source event\n\nSource information for scroll and other axes.\n\nThis event does not occur on its own. It is sent before a\nwl_pointer.frame event and carries the source information for\nall events within that frame.\n\nThe source specifies how this event was generated. If the source is\nwl_pointer.axis_source.finger, a wl_pointer.axis_stop event will be\nsent when the user lifts the finger off the device.\n\nIf the source is wl_pointer.axis_source.wheel,\nwl_pointer.axis_source.wheel_tilt or\nwl_pointer.axis_source.continuous, a wl_pointer.axis_stop event may\nor may not be sent. Whether a compositor sends an axis_stop event\nfor these sources is hardware-specific and implementation-dependent;\nclients must not rely on receiving an axis_stop event for these\nscroll sources and should treat scroll sequences from these scroll\nsources as unterminated by default.\n\nThis event is optional. If the source is unknown for a particular\naxis event sequence, no event is sent.\nOnly one wl_pointer.axis_source event is permitted per frame.\n\nThe order of wl_pointer.axis_discrete and wl_pointer.axis_source is\nnot guaranteed.\n\nOnly available since version 5 of the interface"] - AxisSource { axis_source: AxisSource }, - #[doc = "axis stop event\n\nStop notification for scroll and other axes.\n\nFor some wl_pointer.axis_source types, a wl_pointer.axis_stop event\nis sent to notify a client that the axis sequence has terminated.\nThis enables the client to implement kinetic scrolling.\nSee the wl_pointer.axis_source documentation for information on when\nthis event may be generated.\n\nAny wl_pointer.axis events with the same axis_source after this\nevent should be considered as the start of a new axis motion.\n\nThe timestamp is to be interpreted identical to the timestamp in the\nwl_pointer.axis event. The timestamp value may be the same as a\npreceding wl_pointer.axis event.\n\nOnly available since version 5 of the interface"] - AxisStop { time: u32, axis: Axis }, - #[doc = "axis click event\n\nDiscrete step information for scroll and other axes.\n\nThis event carries the axis value of the wl_pointer.axis event in\ndiscrete steps (e.g. mouse wheel clicks).\n\nThis event does not occur on its own, it is coupled with a\nwl_pointer.axis event that represents this axis value on a\ncontinuous scale. The protocol guarantees that each axis_discrete\nevent is always followed by exactly one axis event with the same\naxis number within the same wl_pointer.frame. Note that the protocol\nallows for other events to occur between the axis_discrete and\nits coupled axis event, including other axis_discrete or axis\nevents.\n\nThis event is optional; continuous scrolling devices\nlike two-finger scrolling on touchpads do not have discrete\nsteps and do not generate this event.\n\nThe discrete value carries the directional information. e.g. a value\nof -2 is two steps towards the negative direction of this axis.\n\nThe axis number is identical to the axis number in the associated\naxis event.\n\nThe order of wl_pointer.axis_discrete and wl_pointer.axis_source is\nnot guaranteed.\n\nOnly available since version 5 of the interface"] - AxisDiscrete { axis: Axis, discrete: i32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "axis", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 5, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "axis_source", - since: 5, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_stop", - since: 5, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_discrete", - since: 5, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave { .. } => 1, - Event::Motion { .. } => 2, - Event::Button { .. } => 3, - Event::Axis { .. } => 4, - Event::Frame => 5, - Event::AxisSource { .. } => 6, - Event::AxisStop { .. } => 7, - Event::AxisDiscrete { .. } => 8, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::Motion { .. } => 1, - Event::Button { .. } => 1, - Event::Axis { .. } => 1, - Event::Frame => 5, - Event::AxisSource { .. } => 5, - Event::AxisStop { .. } => 5, - Event::AxisDiscrete { .. } => 5, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface_x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - surface_y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface_x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - surface_y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Axis { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - axis: { - if let Some(Argument::Uint(val)) = args.next() { - Axis::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - value: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 5 => Ok(Event::Frame), - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::AxisSource { - axis_source: { - if let Some(Argument::Uint(val)) = args.next() { - AxisSource::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::AxisStop { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - axis: { - if let Some(Argument::Uint(val)) = args.next() { - Axis::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::AxisDiscrete { - axis: { - if let Some(Argument::Uint(val)) = args.next() { - Axis::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - discrete: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Enter { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface_x: (_args[2].f as f64) / 256., - surface_y: (_args[3].f as f64) / 256., - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Leave { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Motion { - time: _args[0].u, - surface_x: (_args[1].f as f64) / 256., - surface_y: (_args[2].f as f64) / 256., - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Button { - serial: _args[0].u, - time: _args[1].u, - button: _args[2].u, - state: ButtonState::from_raw(_args[3].u).ok_or(())?, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Axis { - time: _args[0].u, - axis: Axis::from_raw(_args[1].u).ok_or(())?, - value: (_args[2].f as f64) / 256., - }) - } - 5 => Ok(Event::Frame), - 6 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::AxisSource { - axis_source: AxisSource::from_raw(_args[0].u).ok_or(())?, - }) - } - 7 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::AxisStop { - time: _args[0].u, - axis: Axis::from_raw(_args[1].u).ok_or(())?, - }) - } - 8 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::AxisDiscrete { - axis: Axis::from_raw(_args[0].u).ok_or(())?, - discrete: _args[1].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlPointer(Proxy); - impl AsRef> for WlPointer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlPointer { - #[inline] - fn from(value: Proxy) -> Self { - WlPointer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlPointer) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlPointer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlPointer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_pointer"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_pointer_interface } - } - } - impl WlPointer { - #[doc = "set the pointer surface\n\nSet the pointer surface, i.e., the surface that contains the\npointer image (cursor). This request gives the surface the role\nof a cursor. If the surface already has another role, it raises\na protocol error.\n\nThe cursor actually changes only if the pointer\nfocus for this device is one of the requesting client's surfaces\nor the surface parameter is the current pointer surface. If\nthere was a previous surface set with this request it is\nreplaced. If surface is NULL, the pointer image is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of\nthe pointer surface relative to the pointer location. Its\ntop-left corner is always at (x, y) - (hotspot_x, hotspot_y),\nwhere (x, y) are the coordinates of the pointer location, in\nsurface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x\nand hotspot_y are decremented by the x and y parameters\npassed to the request. Attach must be confirmed by\nwl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set\npointer surface to this request with new values for hotspot_x\nand hotspot_y.\n\nThe current and pending input regions of the wl_surface are\ncleared, and wl_surface.set_input_region is ignored until the\nwl_surface is no longer used as the cursor. When the use as a\ncursor ends, the current and pending input regions become\nundefined, and the wl_surface is unmapped.\n\nThe serial parameter must match the latest wl_pointer.enter\nserial number sent to the client. Otherwise the request will be\nignored."] - pub fn set_cursor( - &self, - serial: u32, - surface: Option<&super::wl_surface::WlSurface>, - hotspot_x: i32, - hotspot_y: i32, - ) -> () { - let msg = Request::SetCursor { - serial: serial, - surface: surface.map(|o| o.clone()), - hotspot_x: hotspot_x, - hotspot_y: hotspot_y, - }; - self.0.send::(msg, None); - } - #[doc = "release the pointer object\n\nUsing this request a client can tell the server that it is not going to\nuse the pointer object anymore.\n\nThis request destroys the pointer proxy object, so clients must not call\nwl_pointer_destroy() after using this request.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_SOURCE_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_STOP_SINCE: u32 = 5u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_AXIS_DISCRETE_SINCE: u32 = 5u32; - static mut wl_pointer_requests_set_cursor_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_pointer_requests: [wl_message; 2] = [ - wl_message { - name: b"set_cursor\0" as *const u8 as *const c_char, - signature: b"u?oii\0" as *const u8 as *const c_char, - types: unsafe { &wl_pointer_requests_set_cursor_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut wl_pointer_events_enter_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut wl_pointer_events_leave_types: [*const wl_interface; 2] = - [NULLPTR as *const wl_interface, unsafe { - &super::wl_surface::wl_surface_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_pointer_events: [wl_message; 9] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoff\0" as *const u8 as *const c_char, - types: unsafe { &wl_pointer_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"uo\0" as *const u8 as *const c_char, - types: unsafe { &wl_pointer_events_leave_types as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis\0" as *const u8 as *const c_char, - signature: b"uuf\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"5\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_source\0" as *const u8 as *const c_char, - signature: b"5u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_stop\0" as *const u8 as *const c_char, - signature: b"5uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_discrete\0" as *const u8 as *const c_char, - signature: b"5ui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_pointer_interface: wl_interface = wl_interface { - name: b"wl_pointer\0" as *const u8 as *const c_char, - version: 7, - request_count: 2, - requests: unsafe { &wl_pointer_requests as *const _ }, - event_count: 9, - events: unsafe { &wl_pointer_events as *const _ }, - }; -} -#[doc = "keyboard input device\n\nThe wl_keyboard interface represents one or more keyboards\nassociated with a seat."] -pub mod wl_keyboard { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "keyboard mapping format\n\nThis specifies the format of the keymap provided to the\nclient with the wl_keyboard.keymap event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum KeymapFormat { - #[doc = "no keymap; client must understand how to interpret the raw keycode"] - NoKeymap = 0, - #[doc = "libxkbcommon compatible; to determine the xkb keycode, clients must add 8 to the key event keycode"] - XkbV1 = 1, - } - impl KeymapFormat { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(KeymapFormat::NoKeymap), - 1 => Some(KeymapFormat::XkbV1), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical key state\n\nDescribes the physical state of a key that produced the key event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum KeyState { - #[doc = "key is not pressed"] - Released = 0, - #[doc = "key is pressed"] - Pressed = 1, - } - impl KeyState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(KeyState::Released), - 1 => Some(KeyState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the keyboard object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "keyboard mapping\n\nThis event provides a file descriptor to the client which can be\nmemory-mapped in read-only mode to provide a keyboard mapping\ndescription.\n\nFrom version 7 onwards, the fd must be mapped with MAP_PRIVATE by\nthe recipient, as MAP_SHARED may fail."] - Keymap { - format: KeymapFormat, - fd: ::std::os::unix::io::RawFd, - size: u32, - }, - #[doc = "enter event\n\nNotification that this seat's keyboard focus is on a certain\nsurface.\n\nThe compositor must send the wl_keyboard.modifiers event after this\nevent."] - Enter { - serial: u32, - surface: super::wl_surface::WlSurface, - keys: Vec, - }, - #[doc = "leave event\n\nNotification that this seat's keyboard focus is no longer on\na certain surface.\n\nThe leave notification is sent before the enter notification\nfor the new focus.\n\nAfter this event client must assume that all keys, including modifiers,\nare lifted and also it must stop key repeating if there's some going on."] - Leave { - serial: u32, - surface: super::wl_surface::WlSurface, - }, - #[doc = "key event\n\nA key was pressed or released.\nThe time argument is a timestamp with millisecond\ngranularity, with an undefined base.\n\nThe key is a platform-specific key code that can be interpreted\nby feeding it to the keyboard mapping (see the keymap event).\n\nIf this event produces a change in modifiers, then the resulting\nwl_keyboard.modifiers event must be sent after this event."] - Key { - serial: u32, - time: u32, - key: u32, - state: KeyState, - }, - #[doc = "modifier and group state\n\nNotifies clients that the modifier and/or group state has\nchanged, and it should update its local state."] - Modifiers { - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - }, - #[doc = "repeat rate and delay\n\nInforms the client about the keyboard's repeat rate and delay.\n\nThis event is sent as soon as the wl_keyboard object has been created,\nand is guaranteed to be received by the client before any key press\nevent.\n\nNegative values for either rate or delay are illegal. A rate of zero\nwill disable any repeating (regardless of the value of delay).\n\nThis event can be sent later on as well with a new value if necessary,\nso clients should continue listening for the event past the creation\nof wl_keyboard.\n\nOnly available since version 4 of the interface"] - RepeatInfo { rate: i32, delay: i32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "keymap", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fd, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Array, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "key", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "modifiers", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "repeat_info", - since: 4, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Keymap { .. } => 0, - Event::Enter { .. } => 1, - Event::Leave { .. } => 2, - Event::Key { .. } => 3, - Event::Modifiers { .. } => 4, - Event::RepeatInfo { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Keymap { .. } => 1, - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::Key { .. } => 1, - Event::Modifiers { .. } => 1, - Event::RepeatInfo { .. } => 4, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Keymap { - format: { - if let Some(Argument::Uint(val)) = args.next() { - KeymapFormat::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - keys: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Key { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - key: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - KeyState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modifiers { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_depressed: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_latched: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_locked: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - group: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::RepeatInfo { - rate: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - delay: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Keymap { - format: KeymapFormat::from_raw(_args[0].u).ok_or(())?, - fd: _args[1].h, - size: _args[2].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Enter { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - keys: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Leave { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Key { - serial: _args[0].u, - time: _args[1].u, - key: _args[2].u, - state: KeyState::from_raw(_args[3].u).ok_or(())?, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Modifiers { - serial: _args[0].u, - mods_depressed: _args[1].u, - mods_latched: _args[2].u, - mods_locked: _args[3].u, - group: _args[4].u, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::RepeatInfo { - rate: _args[0].i, - delay: _args[1].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlKeyboard(Proxy); - impl AsRef> for WlKeyboard { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlKeyboard { - #[inline] - fn from(value: Proxy) -> Self { - WlKeyboard(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlKeyboard) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlKeyboard { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlKeyboard { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_keyboard"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_keyboard_interface } - } - } - impl WlKeyboard { - #[doc = "release the keyboard object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEYMAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIERS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REPEAT_INFO_SINCE: u32 = 4u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_keyboard_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut wl_keyboard_events_enter_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut wl_keyboard_events_leave_types: [*const wl_interface; 2] = - [NULLPTR as *const wl_interface, unsafe { - &super::wl_surface::wl_surface_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_keyboard_events: [wl_message; 6] = [ - wl_message { - name: b"keymap\0" as *const u8 as *const c_char, - signature: b"uhu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoa\0" as *const u8 as *const c_char, - types: unsafe { &wl_keyboard_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"uo\0" as *const u8 as *const c_char, - types: unsafe { &wl_keyboard_events_leave_types as *const _ }, - }, - wl_message { - name: b"key\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"repeat_info\0" as *const u8 as *const c_char, - signature: b"4ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_keyboard_interface: wl_interface = wl_interface { - name: b"wl_keyboard\0" as *const u8 as *const c_char, - version: 7, - request_count: 1, - requests: unsafe { &wl_keyboard_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_keyboard_events as *const _ }, - }; -} -#[doc = "touchscreen input device\n\nThe wl_touch interface represents a touchscreen\nassociated with a seat.\n\nTouch interactions can consist of one or more contacts.\nFor each contact, a series of events is generated, starting\nwith a down event, followed by zero or more motion events,\nand ending with an up event. Events relating to the same\ncontact point can be identified by the ID of the sequence."] -pub mod wl_touch { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the touch object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "touch down event and beginning of a touch sequence\n\nA new touch point has appeared on the surface. This touch point is\nassigned a unique ID. Future events from this touch point reference\nthis ID. The ID ceases to be valid after a touch up event and may be\nreused in the future."] - Down { - serial: u32, - time: u32, - surface: super::wl_surface::WlSurface, - id: i32, - x: f64, - y: f64, - }, - #[doc = "end of a touch event sequence\n\nThe touch point has disappeared. No further events will be sent for\nthis touch point and the touch point's ID is released and may be\nreused in a future touch down event."] - Up { serial: u32, time: u32, id: i32 }, - #[doc = "update of touch point coordinates\n\nA touch point has changed coordinates."] - Motion { time: u32, id: i32, x: f64, y: f64 }, - #[doc = "end of touch frame event\n\nIndicates the end of a set of events that logically belong together.\nA client is expected to accumulate the data in all events within the\nframe before proceeding.\n\nA wl_touch.frame terminates at least one event but otherwise no\nguarantee is provided about the set of events within a frame. A client\nmust assume that any state not updated in a frame is unchanged from the\npreviously known state."] - Frame, - #[doc = "touch session cancelled\n\nSent if the compositor decides the touch stream is a global\ngesture. No further events are sent to the clients from that\nparticular gesture. Touch cancellation applies to all touch points\ncurrently active on this client's surface. The client is\nresponsible for finalizing the touch points, future touch points on\nthis surface may reuse the touch point ID."] - Cancel, - #[doc = "update shape of touch point\n\nSent when a touchpoint has changed its shape.\n\nThis event does not occur on its own. It is sent before a\nwl_touch.frame event and carries the new shape information for\nany previously reported, or new touch points of that frame.\n\nOther events describing the touch point such as wl_touch.down,\nwl_touch.motion or wl_touch.orientation may be sent within the\nsame wl_touch.frame. A client should treat these events as a single\nlogical touch point update. The order of wl_touch.shape,\nwl_touch.orientation and wl_touch.motion is not guaranteed.\nA wl_touch.down event is guaranteed to occur before the first\nwl_touch.shape event for this touch ID but both events may occur within\nthe same wl_touch.frame.\n\nA touchpoint shape is approximated by an ellipse through the major and\nminor axis length. The major axis length describes the longer diameter\nof the ellipse, while the minor axis length describes the shorter\ndiameter. Major and minor are orthogonal and both are specified in\nsurface-local coordinates. The center of the ellipse is always at the\ntouchpoint location as reported by wl_touch.down or wl_touch.move.\n\nThis event is only sent by the compositor if the touch device supports\nshape reports. The client has to make reasonable assumptions about the\nshape if it did not receive this event.\n\nOnly available since version 6 of the interface"] - Shape { id: i32, major: f64, minor: f64 }, - #[doc = "update orientation of touch point\n\nSent when a touchpoint has changed its orientation.\n\nThis event does not occur on its own. It is sent before a\nwl_touch.frame event and carries the new shape information for\nany previously reported, or new touch points of that frame.\n\nOther events describing the touch point such as wl_touch.down,\nwl_touch.motion or wl_touch.shape may be sent within the\nsame wl_touch.frame. A client should treat these events as a single\nlogical touch point update. The order of wl_touch.shape,\nwl_touch.orientation and wl_touch.motion is not guaranteed.\nA wl_touch.down event is guaranteed to occur before the first\nwl_touch.orientation event for this touch ID but both events may occur\nwithin the same wl_touch.frame.\n\nThe orientation describes the clockwise angle of a touchpoint's major\naxis to the positive surface y-axis and is normalized to the -180 to\n+180 degree range. The granularity of orientation depends on the touch\ndevice, some devices only support binary rotation values between 0 and\n90 degrees.\n\nThis event is only sent by the compositor if the touch device supports\norientation reports.\n\nOnly available since version 6 of the interface"] - Orientation { id: i32, orientation: f64 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "down", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "up", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "cancel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "shape", - since: 6, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "orientation", - since: 6, - signature: &[super::ArgumentType::Int, super::ArgumentType::Fixed], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Down { .. } => 0, - Event::Up { .. } => 1, - Event::Motion { .. } => 2, - Event::Frame => 3, - Event::Cancel => 4, - Event::Shape { .. } => 5, - Event::Orientation { .. } => 6, - } - } - fn since(&self) -> u32 { - match *self { - Event::Down { .. } => 1, - Event::Up { .. } => 1, - Event::Motion { .. } => 1, - Event::Frame => 1, - Event::Cancel => 1, - Event::Shape { .. } => 6, - Event::Orientation { .. } => 6, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Down { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Up { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Frame), - 4 => Ok(Event::Cancel), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Shape { - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - major: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - minor: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::Orientation { - id: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - orientation: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 6); - Ok(Event::Down { - serial: _args[0].u, - time: _args[1].u, - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - id: _args[3].i, - x: (_args[4].f as f64) / 256., - y: (_args[5].f as f64) / 256., - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Up { - serial: _args[0].u, - time: _args[1].u, - id: _args[2].i, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Motion { - time: _args[0].u, - id: _args[1].i, - x: (_args[2].f as f64) / 256., - y: (_args[3].f as f64) / 256., - }) - } - 3 => Ok(Event::Frame), - 4 => Ok(Event::Cancel), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Shape { - id: _args[0].i, - major: (_args[1].f as f64) / 256., - minor: (_args[2].f as f64) / 256., - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Orientation { - id: _args[0].i, - orientation: (_args[1].f as f64) / 256., - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlTouch(Proxy); - impl AsRef> for WlTouch { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlTouch { - #[inline] - fn from(value: Proxy) -> Self { - WlTouch(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlTouch) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlTouch { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlTouch { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_touch"; - const VERSION: u32 = 7; - fn c_interface() -> *const wl_interface { - unsafe { &wl_touch_interface } - } - } - impl WlTouch { - #[doc = "release the touch object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DOWN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SHAPE_SINCE: u32 = 6u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ORIENTATION_SINCE: u32 = 6u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_touch_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut wl_touch_events_down_types: [*const wl_interface; 6] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_touch_events: [wl_message; 7] = [ - wl_message { - name: b"down\0" as *const u8 as *const c_char, - signature: b"uuoiff\0" as *const u8 as *const c_char, - types: unsafe { &wl_touch_events_down_types as *const _ }, - }, - wl_message { - name: b"up\0" as *const u8 as *const c_char, - signature: b"uui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uiff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"shape\0" as *const u8 as *const c_char, - signature: b"6iff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"orientation\0" as *const u8 as *const c_char, - signature: b"6if\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_touch_interface: wl_interface = wl_interface { - name: b"wl_touch\0" as *const u8 as *const c_char, - version: 7, - request_count: 1, - requests: unsafe { &wl_touch_requests as *const _ }, - event_count: 7, - events: unsafe { &wl_touch_events as *const _ }, - }; -} -#[doc = "compositor output region\n\nAn output describes part of the compositor geometry. The\ncompositor works in the 'compositor coordinate system' and an\noutput corresponds to a rectangular area in that space that is\nactually visible. This typically corresponds to a monitor that\ndisplays part of the compositor space. This object is published\nas global during start up, or when a monitor is hotplugged."] -pub mod wl_output { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "subpixel geometry information\n\nThis enumeration describes how the physical\npixels on an output are laid out."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Subpixel { - #[doc = "unknown geometry"] - Unknown = 0, - #[doc = "no geometry"] - None = 1, - #[doc = "horizontal RGB"] - HorizontalRgb = 2, - #[doc = "horizontal BGR"] - HorizontalBgr = 3, - #[doc = "vertical RGB"] - VerticalRgb = 4, - #[doc = "vertical BGR"] - VerticalBgr = 5, - } - impl Subpixel { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Subpixel::Unknown), - 1 => Some(Subpixel::None), - 2 => Some(Subpixel::HorizontalRgb), - 3 => Some(Subpixel::HorizontalBgr), - 4 => Some(Subpixel::VerticalRgb), - 5 => Some(Subpixel::VerticalBgr), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "transform from framebuffer to output\n\nThis describes the transform that a compositor will apply to a\nsurface to compensate for the rotation or mirroring of an\noutput device.\n\nThe flipped values correspond to an initial flip around a\nvertical axis followed by rotation.\n\nThe purpose is mainly to allow clients to render accordingly and\ntell the compositor, so that for fullscreen surfaces, the\ncompositor will still be able to scan out directly from client\nsurfaces."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Transform { - #[doc = "no transform"] - Normal = 0, - #[doc = "90 degrees counter-clockwise"] - _90 = 1, - #[doc = "180 degrees counter-clockwise"] - _180 = 2, - #[doc = "270 degrees counter-clockwise"] - _270 = 3, - #[doc = "180 degree flip around a vertical axis"] - Flipped = 4, - #[doc = "flip and rotate 90 degrees counter-clockwise"] - Flipped90 = 5, - #[doc = "flip and rotate 180 degrees counter-clockwise"] - Flipped180 = 6, - #[doc = "flip and rotate 270 degrees counter-clockwise"] - Flipped270 = 7, - } - impl Transform { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Transform::Normal), - 1 => Some(Transform::_90), - 2 => Some(Transform::_180), - 3 => Some(Transform::_270), - 4 => Some(Transform::Flipped), - 5 => Some(Transform::Flipped90), - 6 => Some(Transform::Flipped180), - 7 => Some(Transform::Flipped270), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { # [doc = "mode information\n\nThese flags describe properties of an output mode.\nThey are used in the flags bitfield of the mode event."] pub struct Mode : u32 { # [doc = "indicates this is the current mode"] const Current = 1 ; # [doc = "indicates this is the preferred mode"] const Preferred = 2 ; } } - impl Mode { - pub fn from_raw(n: u32) -> Option { - Some(Mode::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the output object\n\nUsing this request a client can tell the server that it is not going to\nuse the output object anymore.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 3, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "properties of the output\n\nThe geometry event describes geometric properties of the output.\nThe event is sent when binding to the output object and whenever\nany of the properties change.\n\nThe physical size can be set to zero if it doesn't make sense for this\noutput (e.g. for projectors or virtual outputs).\n\nThe geometry event will be followed by a done event (starting from\nversion 2).\n\nNote: wl_output only advertises partial information about the output\nposition and identification. Some compositors, for instance those not\nimplementing a desktop-style output layout or those exposing virtual\noutputs, might fake this information. Instead of using x and y, clients\nshould use xdg_output.logical_position. Instead of using make and model,\nclients should use name and description."] - Geometry { - x: i32, - y: i32, - physical_width: i32, - physical_height: i32, - subpixel: Subpixel, - make: String, - model: String, - transform: Transform, - }, - #[doc = "advertise available modes for the output\n\nThe mode event describes an available mode for the output.\n\nThe event is sent when binding to the output object and there\nwill always be one mode, the current mode. The event is sent\nagain if an output changes mode, for the mode that is now\ncurrent. In other words, the current mode is always the last\nmode that was received with the current flag set.\n\nNon-current modes are deprecated. A compositor can decide to only\nadvertise the current mode and never send other modes. Clients\nshould not rely on non-current modes.\n\nThe size of a mode is given in physical hardware units of\nthe output device. This is not necessarily the same as\nthe output size in the global compositor space. For instance,\nthe output may be scaled, as described in wl_output.scale,\nor transformed, as described in wl_output.transform. Clients\nwilling to retrieve the output size in the global compositor\nspace should use xdg_output.logical_size instead.\n\nThe vertical refresh rate can be set to zero if it doesn't make\nsense for this output (e.g. for virtual outputs).\n\nThe mode event will be followed by a done event (starting from\nversion 2).\n\nClients should not use the refresh rate to schedule frames. Instead,\nthey should use the wl_surface.frame event or the presentation-time\nprotocol.\n\nNote: this information is not always meaningful for all outputs. Some\ncompositors, such as those exposing virtual outputs, might fake the\nrefresh rate or the size."] - Mode { - flags: Mode, - width: i32, - height: i32, - refresh: i32, - }, - #[doc = "sent all information about output\n\nThis event is sent after all other properties have been\nsent after binding to the output object and after any\nother property changes done after that. This allows\nchanges to the output properties to be seen as\natomic, even if they happen via multiple events.\n\nOnly available since version 2 of the interface"] - Done, - #[doc = "output scaling properties\n\nThis event contains scaling geometry information\nthat is not in the geometry event. It may be sent after\nbinding the output object or if the output scale changes\nlater. If it is not sent, the client should assume a\nscale of 1.\n\nA scale larger than 1 means that the compositor will\nautomatically scale surface buffers by this amount\nwhen rendering. This is used for very high resolution\ndisplays where applications rendering at the native\nresolution would be too small to be legible.\n\nIt is intended that scaling aware clients track the\ncurrent output of a surface, and if it is on a scaled\noutput it should use wl_surface.set_buffer_scale with\nthe scale of the output. That way the compositor can\navoid scaling the surface, and the client can supply\na higher detail image.\n\nThe scale event will be followed by a done event.\n\nOnly available since version 2 of the interface"] - Scale { factor: i32 }, - #[doc = "name of this output\n\nMany compositors will assign user-friendly names to their outputs, show\nthem to the user, allow the user to refer to an output, etc. The client\nmay wish to know this name as well to offer the user similar behaviors.\n\nThe name is a UTF-8 string with no convention defined for its contents.\nEach name is unique among all wl_output globals. The name is only\nguaranteed to be unique for the compositor instance.\n\nThe same output name is used for all clients for a given wl_output\nglobal. Thus, the name can be shared across processes to refer to a\nspecific wl_output global.\n\nThe name is not guaranteed to be persistent across sessions, thus cannot\nbe used to reliably identify an output in e.g. configuration files.\n\nExamples of names include 'HDMI-A-1', 'WL-1', 'X11-1', etc. However, do\nnot assume that the name is a reflection of an underlying DRM connector,\nX11 connection, etc.\n\nThe name event is sent after binding the output object. This event is\nonly sent once per output object, and the name does not change over the\nlifetime of the wl_output global.\n\nCompositors may re-use the same output name if the wl_output global is\ndestroyed and re-created later. Compositors should avoid re-using the\nsame name if possible.\n\nThe name event will be followed by a done event.\n\nOnly available since version 4 of the interface"] - Name { name: String }, - #[doc = "human-readable description of this output\n\nMany compositors can produce human-readable descriptions of their\noutputs. The client may wish to know this description as well, e.g. for\noutput selection purposes.\n\nThe description is a UTF-8 string with no convention defined for its\ncontents. The description is not guaranteed to be unique among all\nwl_output globals. Examples might include 'Foocorp 11\" Display' or\n'Virtual X11 output via :1'.\n\nThe description event is sent after binding the output object and\nwhenever the description changes. The description is optional, and may\nnot be sent at all.\n\nThe description event will be followed by a done event.\n\nOnly available since version 4 of the interface"] - Description { description: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Str, - super::ArgumentType::Str, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "mode", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 2, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "scale", - since: 2, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "name", - since: 4, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "description", - since: 4, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Geometry { .. } => 0, - Event::Mode { .. } => 1, - Event::Done => 2, - Event::Scale { .. } => 3, - Event::Name { .. } => 4, - Event::Description { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Geometry { .. } => 1, - Event::Mode { .. } => 1, - Event::Done => 2, - Event::Scale { .. } => 2, - Event::Name { .. } => 4, - Event::Description { .. } => 4, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Geometry { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - physical_width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - physical_height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - subpixel: { - if let Some(Argument::Int(val)) = args.next() { - Subpixel::from_raw(val as u32).ok_or(())? - } else { - return Err(()); - } - }, - make: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - model: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - transform: { - if let Some(Argument::Int(val)) = args.next() { - Transform::from_raw(val as u32).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - refresh: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Done), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Scale { - factor: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Description { - description: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 8); - Ok(Event::Geometry { - x: _args[0].i, - y: _args[1].i, - physical_width: _args[2].i, - physical_height: _args[3].i, - subpixel: Subpixel::from_raw(_args[4].i as u32).ok_or(())?, - make: ::std::ffi::CStr::from_ptr(_args[5].s) - .to_string_lossy() - .into_owned(), - model: ::std::ffi::CStr::from_ptr(_args[6].s) - .to_string_lossy() - .into_owned(), - transform: Transform::from_raw(_args[7].i as u32).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Mode { - flags: Mode::from_raw(_args[0].u).ok_or(())?, - width: _args[1].i, - height: _args[2].i, - refresh: _args[3].i, - }) - } - 2 => Ok(Event::Done), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Scale { factor: _args[0].i }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Description { - description: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlOutput(Proxy); - impl AsRef> for WlOutput { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlOutput { - #[inline] - fn from(value: Proxy) -> Self { - WlOutput(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlOutput) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlOutput { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlOutput { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_output"; - const VERSION: u32 = 4; - fn c_interface() -> *const wl_interface { - unsafe { &wl_output_interface } - } - } - impl WlOutput { - #[doc = "release the output object\n\nUsing this request a client can tell the server that it is not going to\nuse the output object anymore.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SCALE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 4u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESCRIPTION_SINCE: u32 = 4u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_output_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_output_events: [wl_message; 6] = [ - wl_message { - name: b"geometry\0" as *const u8 as *const c_char, - signature: b"iiiiissi\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"uiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"scale\0" as *const u8 as *const c_char, - signature: b"2i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"4s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"description\0" as *const u8 as *const c_char, - signature: b"4s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_output_interface: wl_interface = wl_interface { - name: b"wl_output\0" as *const u8 as *const c_char, - version: 4, - request_count: 1, - requests: unsafe { &wl_output_requests as *const _ }, - event_count: 6, - events: unsafe { &wl_output_events as *const _ }, - }; -} -#[doc = "region interface\n\nA region object describes an area.\n\nRegion objects are used to describe the opaque and input\nregions of a surface."] -pub mod wl_region { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy region\n\nDestroy the region. This will invalidate the object ID.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "add rectangle to region\n\nAdd the specified rectangle to the region."] - Add { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "subtract rectangle from region\n\nSubtract the specified rectangle from the region."] - Subtract { - x: i32, - y: i32, - width: i32, - height: i32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "add", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "subtract", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Add { .. } => 1, - Request::Subtract { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Add { .. } => 1, - Request::Subtract { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Add { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Subtract { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Add { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(1, &mut _args_array) - } - Request::Subtract { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlRegion(Proxy); - impl AsRef> for WlRegion { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlRegion { - #[inline] - fn from(value: Proxy) -> Self { - WlRegion(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlRegion) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlRegion { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlRegion { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_region"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_region_interface } - } - } - impl WlRegion { - #[doc = "destroy region\n\nDestroy the region. This will invalidate the object ID.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "add rectangle to region\n\nAdd the specified rectangle to the region."] - pub fn add(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::Add { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "subtract rectangle from region\n\nSubtract the specified rectangle from the region."] - pub fn subtract(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::Subtract { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ADD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SUBTRACT_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_region_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"add\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"subtract\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_region_interface: wl_interface = wl_interface { - name: b"wl_region\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &wl_region_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "sub-surface compositing\n\nThe global interface exposing sub-surface compositing capabilities.\nA wl_surface, that has sub-surfaces associated, is called the\nparent surface. Sub-surfaces can be arbitrarily nested and create\na tree of sub-surfaces.\n\nThe root surface in a tree of sub-surfaces is the main\nsurface. The main surface cannot be a sub-surface, because\nsub-surfaces must always have a parent.\n\nA main surface with its sub-surfaces forms a (compound) window.\nFor window management purposes, this set of wl_surface objects is\nto be considered as a single window, and it should also behave as\nsuch.\n\nThe aim of sub-surfaces is to offload some of the compositing work\nwithin a window from clients to the compositor. A prime example is\na video player with decorations and video in separate wl_surface\nobjects. This should allow the compositor to pass YUV video buffer\nprocessing to dedicated overlay hardware when possible."] -pub mod wl_subcompositor { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the to-be sub-surface is invalid"] - BadSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::BadSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind from the subcompositor interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other\nobjects, wl_subsurface objects included.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "give a surface the role sub-surface\n\nCreate a sub-surface interface for the given surface, and\nassociate it with the given parent surface. This turns a\nplain wl_surface into a sub-surface.\n\nThe to-be sub-surface must not already have another role, and it\nmust not have an existing wl_subsurface object. Otherwise a protocol\nerror is raised.\n\nAdding sub-surfaces to a parent is a double-buffered operation on the\nparent (see wl_surface.commit). The effect of adding a sub-surface\nbecomes visible on the next time the state of the parent surface is\napplied.\n\nThis request modifies the behaviour of wl_surface.commit request on\nthe sub-surface, see the documentation on wl_subsurface interface."] - GetSubsurface { - surface: super::wl_surface::WlSurface, - parent: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_subsurface", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetSubsurface { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetSubsurface { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetSubsurface { surface, parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(parent.as_ref().id()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetSubsurface { surface, parent } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = parent.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSubcompositor(Proxy); - impl AsRef> for WlSubcompositor { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSubcompositor { - #[inline] - fn from(value: Proxy) -> Self { - WlSubcompositor(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSubcompositor) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSubcompositor { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSubcompositor { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_subcompositor"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_subcompositor_interface } - } - } - impl WlSubcompositor { - #[doc = "unbind from the subcompositor interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other\nobjects, wl_subsurface objects included.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "give a surface the role sub-surface\n\nCreate a sub-surface interface for the given surface, and\nassociate it with the given parent surface. This turns a\nplain wl_surface into a sub-surface.\n\nThe to-be sub-surface must not already have another role, and it\nmust not have an existing wl_subsurface object. Otherwise a protocol\nerror is raised.\n\nAdding sub-surfaces to a parent is a double-buffered operation on the\nparent (see wl_surface.commit). The effect of adding a sub-surface\nbecomes visible on the next time the state of the parent surface is\napplied.\n\nThis request modifies the behaviour of wl_surface.commit request on\nthe sub-surface, see the documentation on wl_subsurface interface."] - pub fn get_subsurface( - &self, - surface: &super::wl_surface::WlSurface, - parent: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetSubsurface { - surface: surface.clone(), - parent: parent.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SUBSURFACE_SINCE: u32 = 1u32; - static mut wl_subcompositor_requests_get_subsurface_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_subsurface::wl_subsurface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_subcompositor_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_subsurface\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { &wl_subcompositor_requests_get_subsurface_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_subcompositor_interface: wl_interface = wl_interface { - name: b"wl_subcompositor\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wl_subcompositor_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "sub-surface interface to a wl_surface\n\nAn additional interface to a wl_surface object, which has been\nmade a sub-surface. A sub-surface has one parent surface. A\nsub-surface's size and position are not limited to that of the parent.\nParticularly, a sub-surface is not automatically clipped to its\nparent's area.\n\nA sub-surface becomes mapped, when a non-NULL wl_buffer is applied\nand the parent surface is mapped. The order of which one happens\nfirst is irrelevant. A sub-surface is hidden if the parent becomes\nhidden, or if a NULL wl_buffer is applied. These rules apply\nrecursively through the tree of surfaces.\n\nThe behaviour of a wl_surface.commit request on a sub-surface\ndepends on the sub-surface's mode. The possible modes are\nsynchronized and desynchronized, see methods\nwl_subsurface.set_sync and wl_subsurface.set_desync. Synchronized\nmode caches the wl_surface state to be applied when the parent's\nstate gets applied, and desynchronized mode applies the pending\nwl_surface state directly. A sub-surface is initially in the\nsynchronized mode.\n\nSub-surfaces also have another kind of state, which is managed by\nwl_subsurface requests, as opposed to wl_surface requests. This\nstate includes the sub-surface position relative to the parent\nsurface (wl_subsurface.set_position), and the stacking order of\nthe parent and its sub-surfaces (wl_subsurface.place_above and\n.place_below). This state is applied when the parent surface's\nwl_surface state is applied, regardless of the sub-surface's mode.\nAs the exception, set_sync and set_desync are effective immediately.\n\nThe main surface can be thought to be always in desynchronized mode,\nsince it does not have a parent in the sub-surfaces sense.\n\nEven if a sub-surface is in desynchronized mode, it will behave as\nin synchronized mode, if its parent surface behaves as in\nsynchronized mode. This rule is applied recursively throughout the\ntree of surfaces. This means, that one can set a sub-surface into\nsynchronized mode, and then assume that all its child and grand-child\nsub-surfaces are synchronized, too, without explicitly setting them.\n\nIf the wl_surface associated with the wl_subsurface is destroyed, the\nwl_subsurface object becomes inert. Note, that destroying either object\ntakes effect immediately. If you need to synchronize the removal\nof a sub-surface to the parent surface update, unmap the sub-surface\nfirst by attaching a NULL wl_buffer, update parent, and then destroy\nthe sub-surface.\n\nIf the parent wl_surface object is destroyed, the sub-surface is\nunmapped."] -pub mod wl_subsurface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "wl_surface is not a sibling or the parent"] - BadSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::BadSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove sub-surface interface\n\nThe sub-surface interface is removed from the wl_surface object\nthat was turned into a sub-surface with a\nwl_subcompositor.get_subsurface request. The wl_surface's association\nto the parent is deleted, and the wl_surface loses its role as\na sub-surface. The wl_surface is unmapped immediately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "reposition the sub-surface\n\nThis schedules a sub-surface position change.\nThe sub-surface will be moved so that its origin (top left\ncorner pixel) will be at the location x, y of the parent surface\ncoordinate system. The coordinates are not restricted to the parent\nsurface area. Negative values are allowed.\n\nThe scheduled coordinates will take effect whenever the state of the\nparent surface is applied. When this happens depends on whether the\nparent surface is in synchronized mode or not. See\nwl_subsurface.set_sync and wl_subsurface.set_desync for details.\n\nIf more than one set_position request is invoked by the client before\nthe commit of the parent surface, the position of a new request always\nreplaces the scheduled position from any previous request.\n\nThe initial position is 0, 0."] - SetPosition { x: i32, y: i32 }, - #[doc = "restack the sub-surface\n\nThis sub-surface is taken from the stack, and put back just\nabove the reference surface, changing the z-order of the sub-surfaces.\nThe reference surface must be one of the sibling surfaces, or the\nparent surface. Using any other surface, including this sub-surface,\nwill cause a protocol error.\n\nThe z-order is double-buffered. Requests are handled in order and\napplied immediately to a pending state. The final pending state is\ncopied to the active state the next time the state of the parent\nsurface is applied. When this happens depends on whether the parent\nsurface is in synchronized mode or not. See wl_subsurface.set_sync and\nwl_subsurface.set_desync for details.\n\nA new sub-surface is initially added as the top-most in the stack\nof its siblings and parent."] - PlaceAbove { - sibling: super::wl_surface::WlSurface, - }, - #[doc = "restack the sub-surface\n\nThe sub-surface is placed just below the reference surface.\nSee wl_subsurface.place_above."] - PlaceBelow { - sibling: super::wl_surface::WlSurface, - }, - #[doc = "set sub-surface to synchronized mode\n\nChange the commit behaviour of the sub-surface to synchronized\nmode, also described as the parent dependent mode.\n\nIn synchronized mode, wl_surface.commit on a sub-surface will\naccumulate the committed state in a cache, but the state will\nnot be applied and hence will not change the compositor output.\nThe cached state is applied to the sub-surface immediately after\nthe parent surface's state is applied. This ensures atomic\nupdates of the parent and all its synchronized sub-surfaces.\nApplying the cached state will invalidate the cache, so further\nparent surface commits do not (re-)apply old state.\n\nSee wl_subsurface for the recursive effect of this mode."] - SetSync, - #[doc = "set sub-surface to desynchronized mode\n\nChange the commit behaviour of the sub-surface to desynchronized\nmode, also described as independent or freely running mode.\n\nIn desynchronized mode, wl_surface.commit on a sub-surface will\napply the pending state directly, without caching, as happens\nnormally with a wl_surface. Calling wl_surface.commit on the\nparent surface has no effect on the sub-surface's wl_surface\nstate. This mode allows a sub-surface to be updated on its own.\n\nIf cached state exists when wl_surface.commit is called in\ndesynchronized mode, the pending state is added to the cached\nstate, and applied as a whole. This invalidates the cache.\n\nNote: even if a sub-surface is set to desynchronized, a parent\nsub-surface may override it to behave as synchronized. For details,\nsee wl_subsurface.\n\nIf a surface's parent surface behaves as desynchronized, then\nthe cached state is applied on set_desync."] - SetDesync, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "place_above", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "place_below", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_sync", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_desync", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetPosition { .. } => 1, - Request::PlaceAbove { .. } => 2, - Request::PlaceBelow { .. } => 3, - Request::SetSync => 4, - Request::SetDesync => 5, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetPosition { .. } => 1, - Request::PlaceAbove { .. } => 1, - Request::PlaceBelow { .. } => 1, - Request::SetSync => 1, - Request::SetDesync => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetPosition { x, y } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - Request::PlaceAbove { sibling } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object(sibling.as_ref().id()),], - }, - Request::PlaceBelow { sibling } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Object(sibling.as_ref().id()),], - }, - Request::SetSync => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - Request::SetDesync => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetPosition { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(1, &mut _args_array) - } - Request::PlaceAbove { sibling } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = sibling.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::PlaceBelow { sibling } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = sibling.as_ref().c_ptr() as *mut _; - f(3, &mut _args_array) - } - Request::SetSync => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - Request::SetDesync => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(5, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WlSubsurface(Proxy); - impl AsRef> for WlSubsurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WlSubsurface { - #[inline] - fn from(value: Proxy) -> Self { - WlSubsurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WlSubsurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for WlSubsurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WlSubsurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wl_subsurface"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wl_subsurface_interface } - } - } - impl WlSubsurface { - #[doc = "remove sub-surface interface\n\nThe sub-surface interface is removed from the wl_surface object\nthat was turned into a sub-surface with a\nwl_subcompositor.get_subsurface request. The wl_surface's association\nto the parent is deleted, and the wl_surface loses its role as\na sub-surface. The wl_surface is unmapped immediately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "reposition the sub-surface\n\nThis schedules a sub-surface position change.\nThe sub-surface will be moved so that its origin (top left\ncorner pixel) will be at the location x, y of the parent surface\ncoordinate system. The coordinates are not restricted to the parent\nsurface area. Negative values are allowed.\n\nThe scheduled coordinates will take effect whenever the state of the\nparent surface is applied. When this happens depends on whether the\nparent surface is in synchronized mode or not. See\nwl_subsurface.set_sync and wl_subsurface.set_desync for details.\n\nIf more than one set_position request is invoked by the client before\nthe commit of the parent surface, the position of a new request always\nreplaces the scheduled position from any previous request.\n\nThe initial position is 0, 0."] - pub fn set_position(&self, x: i32, y: i32) -> () { - let msg = Request::SetPosition { x: x, y: y }; - self.0.send::(msg, None); - } - #[doc = "restack the sub-surface\n\nThis sub-surface is taken from the stack, and put back just\nabove the reference surface, changing the z-order of the sub-surfaces.\nThe reference surface must be one of the sibling surfaces, or the\nparent surface. Using any other surface, including this sub-surface,\nwill cause a protocol error.\n\nThe z-order is double-buffered. Requests are handled in order and\napplied immediately to a pending state. The final pending state is\ncopied to the active state the next time the state of the parent\nsurface is applied. When this happens depends on whether the parent\nsurface is in synchronized mode or not. See wl_subsurface.set_sync and\nwl_subsurface.set_desync for details.\n\nA new sub-surface is initially added as the top-most in the stack\nof its siblings and parent."] - pub fn place_above(&self, sibling: &super::wl_surface::WlSurface) -> () { - let msg = Request::PlaceAbove { - sibling: sibling.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "restack the sub-surface\n\nThe sub-surface is placed just below the reference surface.\nSee wl_subsurface.place_above."] - pub fn place_below(&self, sibling: &super::wl_surface::WlSurface) -> () { - let msg = Request::PlaceBelow { - sibling: sibling.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "set sub-surface to synchronized mode\n\nChange the commit behaviour of the sub-surface to synchronized\nmode, also described as the parent dependent mode.\n\nIn synchronized mode, wl_surface.commit on a sub-surface will\naccumulate the committed state in a cache, but the state will\nnot be applied and hence will not change the compositor output.\nThe cached state is applied to the sub-surface immediately after\nthe parent surface's state is applied. This ensures atomic\nupdates of the parent and all its synchronized sub-surfaces.\nApplying the cached state will invalidate the cache, so further\nparent surface commits do not (re-)apply old state.\n\nSee wl_subsurface for the recursive effect of this mode."] - pub fn set_sync(&self) -> () { - let msg = Request::SetSync; - self.0.send::(msg, None); - } - #[doc = "set sub-surface to desynchronized mode\n\nChange the commit behaviour of the sub-surface to desynchronized\nmode, also described as independent or freely running mode.\n\nIn desynchronized mode, wl_surface.commit on a sub-surface will\napply the pending state directly, without caching, as happens\nnormally with a wl_surface. Calling wl_surface.commit on the\nparent surface has no effect on the sub-surface's wl_surface\nstate. This mode allows a sub-surface to be updated on its own.\n\nIf cached state exists when wl_surface.commit is called in\ndesynchronized mode, the pending state is added to the cached\nstate, and applied as a whole. This invalidates the cache.\n\nNote: even if a sub-surface is set to desynchronized, a parent\nsub-surface may override it to behave as synchronized. For details,\nsee wl_subsurface.\n\nIf a surface's parent surface behaves as desynchronized, then\nthe cached state is applied on set_desync."] - pub fn set_desync(&self) -> () { - let msg = Request::SetDesync; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PLACE_ABOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PLACE_BELOW_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SYNC_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_DESYNC_SINCE: u32 = 1u32; - static mut wl_subsurface_requests_place_above_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - static mut wl_subsurface_requests_place_below_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wl_subsurface_requests: [wl_message; 6] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"place_above\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_subsurface_requests_place_above_types as *const _ }, - }, - wl_message { - name: b"place_below\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wl_subsurface_requests_place_below_types as *const _ }, - }, - wl_message { - name: b"set_sync\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_desync\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wl_subsurface_interface: wl_interface = wl_interface { - name: b"wl_subsurface\0" as *const u8 as *const c_char, - version: 1, - request_count: 6, - requests: unsafe { &wl_subsurface_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-client-337aa938d371d658/output b/target/release/build/wayland-client-337aa938d371d658/output deleted file mode 100644 index e6002f3..0000000 --- a/target/release/build/wayland-client-337aa938d371d658/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rerun-if-changed=./wayland.xml diff --git a/target/release/build/wayland-client-337aa938d371d658/root-output b/target/release/build/wayland-client-337aa938d371d658/root-output deleted file mode 100644 index 07b78f7..0000000 --- a/target/release/build/wayland-client-337aa938d371d658/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-337aa938d371d658/out \ No newline at end of file diff --git a/target/release/build/wayland-client-337aa938d371d658/stderr b/target/release/build/wayland-client-337aa938d371d658/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/wayland-client-77ef80cd3b064331/build-script-build b/target/release/build/wayland-client-77ef80cd3b064331/build-script-build deleted file mode 100755 index c106c6c..0000000 Binary files a/target/release/build/wayland-client-77ef80cd3b064331/build-script-build and /dev/null differ diff --git a/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331 b/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331 deleted file mode 100755 index c106c6c..0000000 Binary files a/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331 and /dev/null differ diff --git a/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331.d b/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331.d deleted file mode 100644 index 760e4ad..0000000 --- a/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-77ef80cd3b064331/build_script_build-77ef80cd3b064331.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/build.rs: diff --git a/target/release/build/wayland-protocols-015dfec90b61ee5d/build-script-build b/target/release/build/wayland-protocols-015dfec90b61ee5d/build-script-build deleted file mode 100755 index 9aa1a46..0000000 Binary files a/target/release/build/wayland-protocols-015dfec90b61ee5d/build-script-build and /dev/null differ diff --git a/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d b/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d deleted file mode 100755 index 9aa1a46..0000000 Binary files a/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d and /dev/null differ diff --git a/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d.d b/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d.d deleted file mode 100644 index d498bda..0000000 --- a/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-015dfec90b61ee5d/build_script_build-015dfec90b61ee5d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/build.rs: diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/invoked.timestamp b/target/release/build/wayland-protocols-334c48720a6100cb/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs deleted file mode 100644 index 5e7d31d..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs +++ /dev/null @@ -1,673 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "displays a single surface per output\n\nDisplays a single surface per output.\n\nThis interface provides a mechanism for a single client to display\nsimple full-screen surfaces. While there technically may be multiple\nclients bound to this interface, only one of those clients should be\nshown at a time.\n\nTo present a surface, the client uses either the present_surface or\npresent_surface_for_mode requests. Presenting a surface takes effect\non the next wl_surface.commit. See the individual requests for\ndetails about scaling and mode switches.\n\nThe client can have at most one surface per output at any time.\nRequesting a surface to be presented on an output that already has a\nsurface replaces the previously presented surface. Presenting a null\nsurface removes its content and effectively disables the output.\nExactly what happens when an output is \"disabled\" is\ncompositor-specific. The same surface may be presented on multiple\noutputs simultaneously.\n\nOnce a surface is presented on an output, it stays on that output\nuntil either the client removes it or the compositor destroys the\noutput. This way, the client can update the output's contents by\nsimply attaching a new buffer.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_fullscreen_shell_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "capabilities advertised by the compositor\n\nVarious capabilities that can be advertised by the compositor. They\nare advertised one-at-a-time when the wl_fullscreen_shell interface is\nbound. See the wl_fullscreen_shell.capability event for more details.\n\nARBITRARY_MODES:\nThis is a hint to the client that indicates that the compositor is\ncapable of setting practically any mode on its outputs. If this\ncapability is provided, wl_fullscreen_shell.present_surface_for_mode\nwill almost never fail and clients should feel free to set whatever\nmode they like. If the compositor does not advertise this, it may\nstill support some modes that are not advertised through wl_global.mode\nbut it is less likely.\n\nCURSOR_PLANE:\nThis is a hint to the client that indicates that the compositor can\nhandle a cursor surface from the client without actually compositing.\nThis may be because of a hardware cursor plane or some other mechanism.\nIf the compositor does not advertise this capability then setting\nwl_pointer.cursor may degrade performance or be ignored entirely. If\nCURSOR_PLANE is not advertised, it is recommended that the client draw\nits own cursor and set wl_pointer.cursor(NULL)."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Capability { - #[doc = "compositor is capable of almost any output mode"] - ArbitraryModes = 1, - #[doc = "compositor has a separate cursor plane"] - CursorPlane = 2, - } - impl Capability { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Capability::ArbitraryModes), - 2 => Some(Capability::CursorPlane), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "different method to set the surface fullscreen\n\nHints to indicate to the compositor how to deal with a conflict\nbetween the dimensions of the surface and the dimensions of the\noutput. The compositor is free to ignore this parameter."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum PresentMethod { - #[doc = "no preference, apply default policy"] - Default = 0, - #[doc = "center the surface on the output"] - Center = 1, - #[doc = "scale the surface, preserving aspect ratio, to the largest size that will fit on the output"] - Zoom = 2, - #[doc = "scale the surface, preserving aspect ratio, to fully fill the output cropping if needed"] - ZoomCrop = 3, - #[doc = "scale the surface to the size of the output ignoring aspect ratio"] - Stretch = 4, - } - impl PresentMethod { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(PresentMethod::Default), - 1 => Some(PresentMethod::Center), - 2 => Some(PresentMethod::Zoom), - 3 => Some(PresentMethod::ZoomCrop), - 4 => Some(PresentMethod::Stretch), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "wl_fullscreen_shell error values\n\nThese errors can be emitted in response to wl_fullscreen_shell requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "present_method is not known"] - InvalidMethod = 0, - #[doc = "given wl_surface has another role"] - Role = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidMethod), - 1 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the wl_fullscreen_shell interface\n\nRelease the binding from the wl_fullscreen_shell interface.\n\nThis destroys the server-side object and frees this binding. If\nthe client binds to wl_fullscreen_shell multiple times, it may wish\nto free some of those bindings.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Release, - #[doc = "present surface for display\n\nPresent a surface on the given output.\n\nIf the output is null, the compositor will present the surface on\nwhatever display (or displays) it thinks best. In particular, this\nmay replace any or all surfaces currently presented so it should\nnot be used in combination with placing surfaces on specific\noutputs.\n\nThe method parameter is a hint to the compositor for how the surface\nis to be presented. In particular, it tells the compositor how to\nhandle a size mismatch between the presented surface and the\noutput. The compositor is free to ignore this parameter.\n\nThe \"zoom\", \"zoom_crop\", and \"stretch\" methods imply a scaling\noperation on the surface. This will override any kind of output\nscaling, so the buffer_scale property of the surface is effectively\nignored.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - PresentSurface { - surface: Option, - method: PresentMethod, - output: Option, - }, - #[doc = "present surface for display at a particular mode\n\nPresents a surface on the given output for a particular mode.\n\nIf the current size of the output differs from that of the surface,\nthe compositor will attempt to change the size of the output to\nmatch the surface. The result of the mode-switch operation will be\nreturned via the provided wl_fullscreen_shell_mode_feedback object.\n\nIf the current output mode matches the one requested or if the\ncompositor successfully switches the mode to match the surface,\nthen the mode_successful event will be sent and the output will\ncontain the contents of the given surface. If the compositor\ncannot match the output size to the surface size, the mode_failed\nwill be sent and the output will contain the contents of the\npreviously presented surface (if any). If another surface is\npresented on the given output before either of these has a chance\nto happen, the present_cancelled event will be sent.\n\nDue to race conditions and other issues unknown to the client, no\nmode-switch operation is guaranteed to succeed. However, if the\nmode is one advertised by wl_output.mode or if the compositor\nadvertises the ARBITRARY_MODES capability, then the client should\nexpect that the mode-switch operation will usually succeed.\n\nIf the size of the presented surface changes, the resulting output\nis undefined. The compositor may attempt to change the output mode\nto compensate. However, there is no guarantee that a suitable mode\nwill be found and the client has no way to be notified of success\nor failure.\n\nThe framerate parameter specifies the desired framerate for the\noutput in mHz. The compositor is free to ignore this parameter. A\nvalue of 0 indicates that the client has no preference.\n\nIf the value of wl_output.scale differs from wl_surface.buffer_scale,\nthen the compositor may choose a mode that matches either the buffer\nsize or the surface size. In either case, the surface will fill the\noutput.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - PresentSurfaceForMode { - surface: super::wl_surface::WlSurface, - output: super::wl_output::WlOutput, - framerate: i32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "present_surface", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "present_surface_for_mode", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::NewId, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - Request::PresentSurface { .. } => 1, - Request::PresentSurfaceForMode { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 1, - Request::PresentSurface { .. } => 1, - Request::PresentSurfaceForMode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 2 => Some(Object::from_interface::< - super::zwp_fullscreen_shell_mode_feedback_v1::ZwpFullscreenShellModeFeedbackV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::PresentSurface { - surface, - method, - output, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(method.to_raw()), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - ], - }, - Request::PresentSurfaceForMode { - surface, - output, - framerate, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(surface.as_ref().id()), - Argument::Object(output.as_ref().id()), - Argument::Int(framerate), - Argument::NewId(0), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::PresentSurface { - surface, - method, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = method.to_raw(); - _args_array[2].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::PresentSurfaceForMode { - surface, - output, - framerate, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - _args_array[2].i = framerate; - _args_array[3].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertises a capability of the compositor\n\nAdvertises a single capability of the compositor.\n\nWhen the wl_fullscreen_shell interface is bound, this event is emitted\nonce for each capability advertised. Valid capabilities are given by\nthe wl_fullscreen_shell.capability enum. If clients want to take\nadvantage of any of these capabilities, they should use a\nwl_display.sync request immediately after binding to ensure that they\nreceive all the capability events."] - Capability { capability: Capability }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "capability", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Capability { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Capability { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capability { - capability: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capability { - capability: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpFullscreenShellV1(Proxy); - impl AsRef> for ZwpFullscreenShellV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpFullscreenShellV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpFullscreenShellV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpFullscreenShellV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpFullscreenShellV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpFullscreenShellV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_fullscreen_shell_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_fullscreen_shell_v1_interface } - } - } - impl ZwpFullscreenShellV1 { - #[doc = "release the wl_fullscreen_shell interface\n\nRelease the binding from the wl_fullscreen_shell interface.\n\nThis destroys the server-side object and frees this binding. If\nthe client binds to wl_fullscreen_shell multiple times, it may wish\nto free some of those bindings.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - #[doc = "present surface for display\n\nPresent a surface on the given output.\n\nIf the output is null, the compositor will present the surface on\nwhatever display (or displays) it thinks best. In particular, this\nmay replace any or all surfaces currently presented so it should\nnot be used in combination with placing surfaces on specific\noutputs.\n\nThe method parameter is a hint to the compositor for how the surface\nis to be presented. In particular, it tells the compositor how to\nhandle a size mismatch between the presented surface and the\noutput. The compositor is free to ignore this parameter.\n\nThe \"zoom\", \"zoom_crop\", and \"stretch\" methods imply a scaling\noperation on the surface. This will override any kind of output\nscaling, so the buffer_scale property of the surface is effectively\nignored.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - pub fn present_surface( - &self, - surface: Option<&super::wl_surface::WlSurface>, - method: PresentMethod, - output: Option<&super::wl_output::WlOutput>, - ) -> () { - let msg = Request::PresentSurface { - surface: surface.map(|o| o.clone()), - method: method, - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "present surface for display at a particular mode\n\nPresents a surface on the given output for a particular mode.\n\nIf the current size of the output differs from that of the surface,\nthe compositor will attempt to change the size of the output to\nmatch the surface. The result of the mode-switch operation will be\nreturned via the provided wl_fullscreen_shell_mode_feedback object.\n\nIf the current output mode matches the one requested or if the\ncompositor successfully switches the mode to match the surface,\nthen the mode_successful event will be sent and the output will\ncontain the contents of the given surface. If the compositor\ncannot match the output size to the surface size, the mode_failed\nwill be sent and the output will contain the contents of the\npreviously presented surface (if any). If another surface is\npresented on the given output before either of these has a chance\nto happen, the present_cancelled event will be sent.\n\nDue to race conditions and other issues unknown to the client, no\nmode-switch operation is guaranteed to succeed. However, if the\nmode is one advertised by wl_output.mode or if the compositor\nadvertises the ARBITRARY_MODES capability, then the client should\nexpect that the mode-switch operation will usually succeed.\n\nIf the size of the presented surface changes, the resulting output\nis undefined. The compositor may attempt to change the output mode\nto compensate. However, there is no guarantee that a suitable mode\nwill be found and the client has no way to be notified of success\nor failure.\n\nThe framerate parameter specifies the desired framerate for the\noutput in mHz. The compositor is free to ignore this parameter. A\nvalue of 0 indicates that the client has no preference.\n\nIf the value of wl_output.scale differs from wl_surface.buffer_scale,\nthen the compositor may choose a mode that matches either the buffer\nsize or the surface size. In either case, the surface will fill the\noutput.\n\nThis request gives the surface the role of a fullscreen shell surface.\nIf the surface already has another role, it raises a role protocol\nerror."] - pub fn present_surface_for_mode( - &self, - surface: &super::wl_surface::WlSurface, - output: &super::wl_output::WlOutput, - framerate: i32, - ) -> Main - { - let msg = Request::PresentSurfaceForMode { - surface: surface.clone(), - output: output.clone(), - framerate: framerate, - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PRESENT_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PRESENT_SURFACE_FOR_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITY_SINCE: u32 = 1u32; - static mut zwp_fullscreen_shell_v1_requests_present_surface_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - static mut zwp_fullscreen_shell_v1_requests_present_surface_for_mode_types: - [*const wl_interface; 4] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - unsafe { - & super :: zwp_fullscreen_shell_mode_feedback_v1 :: zwp_fullscreen_shell_mode_feedback_v1_interface as * const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_fullscreen_shell_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"present_surface\0" as *const u8 as *const c_char, - signature: b"?ou?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_fullscreen_shell_v1_requests_present_surface_types as *const _ }, - }, - wl_message { - name: b"present_surface_for_mode\0" as *const u8 as *const c_char, - signature: b"ooin\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_fullscreen_shell_v1_requests_present_surface_for_mode_types as *const _ - }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_fullscreen_shell_v1_events: [wl_message; 1] = [wl_message { - name: b"capability\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_fullscreen_shell_v1_interface: wl_interface = wl_interface { - name: b"zwp_fullscreen_shell_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_fullscreen_shell_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_fullscreen_shell_v1_events as *const _ }, - }; -} -pub mod zwp_fullscreen_shell_mode_feedback_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "mode switch succeeded\n\nThis event indicates that the attempted mode switch operation was\nsuccessful. A surface of the size requested in the mode switch\nwill fill the output without scaling.\n\nUpon receiving this event, the client should destroy the\nwl_fullscreen_shell_mode_feedback object."] - ModeSuccessful, - #[doc = "mode switch failed\n\nThis event indicates that the attempted mode switch operation\nfailed. This may be because the requested output mode is not\npossible or it may mean that the compositor does not want to allow it.\n\nUpon receiving this event, the client should destroy the\nwl_fullscreen_shell_mode_feedback object."] - ModeFailed, - #[doc = "mode switch cancelled\n\nThis event indicates that the attempted mode switch operation was\ncancelled. Most likely this is because the client requested a\nsecond mode switch before the first one completed.\n\nUpon receiving this event, the client should destroy the\nwl_fullscreen_shell_mode_feedback object."] - PresentCancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "mode_successful", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "mode_failed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "present_cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::ModeSuccessful => 0, - Event::ModeFailed => 1, - Event::PresentCancelled => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::ModeSuccessful => 1, - Event::ModeFailed => 1, - Event::PresentCancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::ModeSuccessful), - 1 => Ok(Event::ModeFailed), - 2 => Ok(Event::PresentCancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::ModeSuccessful), - 1 => Ok(Event::ModeFailed), - 2 => Ok(Event::PresentCancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpFullscreenShellModeFeedbackV1(Proxy); - impl AsRef> for ZwpFullscreenShellModeFeedbackV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpFullscreenShellModeFeedbackV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpFullscreenShellModeFeedbackV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpFullscreenShellModeFeedbackV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpFullscreenShellModeFeedbackV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpFullscreenShellModeFeedbackV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_fullscreen_shell_mode_feedback_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_fullscreen_shell_mode_feedback_v1_interface } - } - } - impl ZwpFullscreenShellModeFeedbackV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SUCCESSFUL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_FAILED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESENT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_fullscreen_shell_mode_feedback_v1_events: [wl_message; 3] = [ - wl_message { - name: b"mode_successful\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode_failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"present_cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_fullscreen_shell_mode_feedback_v1_interface: wl_interface = wl_interface { - name: b"zwp_fullscreen_shell_mode_feedback_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 3, - events: unsafe { &zwp_fullscreen_shell_mode_feedback_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs deleted file mode 100644 index 7914097..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs +++ /dev/null @@ -1,1229 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "X primary selection emulation\n\nThe primary selection device manager is a singleton global object that\nprovides access to the primary selection. It allows to create\nwp_primary_selection_source objects, as well as retrieving the per-seat\nwp_primary_selection_device objects."] -pub mod gtk_primary_selection_device_manager { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - CreateSource {}, - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - GetDevice { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateSource { .. } => 0, - Request::GetDevice { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateSource { .. } => 1, - Request::GetDevice { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::gtk_primary_selection_source::GtkPrimarySelectionSource, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::gtk_primary_selection_device::GtkPrimarySelectionDevice, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionDeviceManager(Proxy); - impl AsRef> for GtkPrimarySelectionDeviceManager { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionDeviceManager { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionDeviceManager(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionDeviceManager) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionDeviceManager { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionDeviceManager { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_device_manager"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_device_manager_interface } - } - } - impl GtkPrimarySelectionDeviceManager { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - pub fn create_source( - &self, - ) -> Main { - let msg = Request::CreateSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - pub fn get_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DEVICE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut gtk_primary_selection_device_manager_requests_create_source_types: - [*const wl_interface; 1] = [unsafe { - &super::gtk_primary_selection_source::gtk_primary_selection_source_interface - as *const wl_interface - }]; - static mut gtk_primary_selection_device_manager_requests_get_device_types: - [*const wl_interface; 2] = [ - unsafe { - &super::gtk_primary_selection_device::gtk_primary_selection_device_interface - as *const wl_interface - }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_device_manager_requests: [wl_message; 3] = [ - wl_message { - name: b"create_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - >k_primary_selection_device_manager_requests_create_source_types as *const _ - }, - }, - wl_message { - name: b"get_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - >k_primary_selection_device_manager_requests_get_device_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_device_manager_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_device_manager\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { >k_primary_selection_device_manager_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -pub mod gtk_primary_selection_device { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary selection\nwill receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - serial: u32, - }, - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSelection { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSelection { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSelection { source, serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSelection { source, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wp_primary_selection_offer\n\nIntroduces a new wp_primary_selection_offer object that may be used\nto receive the current primary selection. Immediately following this\nevent, the new wp_primary_selection_offer object will send\nwp_primary_selection_offer.offer events to describe the offered mime\ntypes."] - DataOffer { - offer: Main, - }, - #[doc = "advertise a new primary selection\n\nThe wp_primary_selection_device.selection event is sent to notify the\nclient of a new primary selection. This event is sent after the\nwp_primary_selection.data_offer event introducing this object, and after\nthe offer has announced its mimetypes through\nwp_primary_selection_offer.offer.\n\nThe data_offer is valid until a new offer or NULL is received\nor until the client loses keyboard focus. The client must destroy the\nprevious selection data_offer, if any, upon receiving this event."] - Selection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Selection { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Selection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::gtk_primary_selection_offer::GtkPrimarySelectionOffer, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - offer: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok( - Event::DataOffer { - offer: Main::< - super::gtk_primary_selection_offer::GtkPrimarySelectionOffer, - >::from_c_ptr(_args[0].o as *mut _), - }, - ) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: gtk_primary_selection_offer :: GtkPrimarySelectionOffer > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionDevice(Proxy); - impl AsRef> for GtkPrimarySelectionDevice { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionDevice { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionDevice(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionDevice) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionDevice { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionDevice { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_device"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_device_interface } - } - } - impl GtkPrimarySelectionDevice { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary selection\nwill receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::gtk_primary_selection_source::GtkPrimarySelectionSource>, - serial: u32, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - static mut gtk_primary_selection_device_requests_set_selection_types: [*const wl_interface; 2] = [ - unsafe { - &super::gtk_primary_selection_source::gtk_primary_selection_source_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_device_requests: [wl_message; 2] = [ - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?ou\0" as *const u8 as *const c_char, - types: unsafe { - >k_primary_selection_device_requests_set_selection_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut gtk_primary_selection_device_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { - &super::gtk_primary_selection_offer::gtk_primary_selection_offer_interface - as *const wl_interface - }]; - static mut gtk_primary_selection_device_events_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::gtk_primary_selection_offer::gtk_primary_selection_offer_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_device_events: [wl_message; 2] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { >k_primary_selection_device_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { >k_primary_selection_device_events_selection_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_device_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_device\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { >k_primary_selection_device_requests as *const _ }, - event_count: 2, - events: unsafe { >k_primary_selection_device_events as *const _ }, - }; -} -#[doc = "offer to transfer primary selection contents\n\nA wp_primary_selection_offer represents an offer to transfer the contents\nof the primary selection clipboard to the client. Similar to\nwl_data_offer, the offer also describes the mime types that the source\nwill transferthat the\ndata can be converted to and provides the mechanisms for transferring the\ndata directly to the client."] -pub mod gtk_primary_selection_offer { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Receive { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Receive { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered mime type\n\nSent immediately after creating announcing the wp_primary_selection_offer\nthrough wp_primary_selection_device.data_offer. One event is sent per\noffered mime type."] - Offer { mime_type: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionOffer(Proxy); - impl AsRef> for GtkPrimarySelectionOffer { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionOffer { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionOffer(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionOffer) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionOffer { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionOffer { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_offer"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_offer_interface } - } - } - impl GtkPrimarySelectionOffer { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_offer_requests: [wl_message; 2] = [ - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_offer_events: [wl_message; 1] = [wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_offer_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_offer\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { >k_primary_selection_offer_requests as *const _ }, - event_count: 1, - events: unsafe { >k_primary_selection_offer_events as *const _ }, - }; -} -#[doc = "offer to replace the contents of the primary selection\n\nThe source side of a wp_primary_selection_offer, it provides a way to\ndescribe the offered data and respond to requests to transfer the\nrequested contents of the primary selection clipboard."] -pub mod gtk_primary_selection_source { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - Offer { mime_type: String }, - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "send the primary selection contents\n\nRequest for the current primary selection contents from the client.\nSend the specified mime type over the passed file descriptor, then\nclose it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "request for primary selection contents was canceled\n\nThis primary selection source is no longer valid. The client should\nclean up and destroy this primary selection source."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Send { .. } => 0, - Event::Cancelled => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Send { .. } => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 1 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct GtkPrimarySelectionSource(Proxy); - impl AsRef> for GtkPrimarySelectionSource { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for GtkPrimarySelectionSource { - #[inline] - fn from(value: Proxy) -> Self { - GtkPrimarySelectionSource(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: GtkPrimarySelectionSource) -> Self { - value.0 - } - } - impl std::fmt::Debug for GtkPrimarySelectionSource { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for GtkPrimarySelectionSource { - type Request = Request; - type Event = Event; - const NAME: &'static str = "gtk_primary_selection_source"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { >k_primary_selection_source_interface } - } - } - impl GtkPrimarySelectionSource { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_source_requests: [wl_message; 2] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut gtk_primary_selection_source_events: [wl_message; 2] = [ - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut gtk_primary_selection_source_interface: wl_interface = wl_interface { - name: b"gtk_primary_selection_source\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { >k_primary_selection_source_requests as *const _ }, - event_count: 2, - events: unsafe { >k_primary_selection_source_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs deleted file mode 100644 index 2dbeeff..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs +++ /dev/null @@ -1,430 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "control behavior when display idles\n\nThis interface permits inhibiting the idle behavior such as screen\nblanking, locking, and screensaving. The client binds the idle manager\nglobally, then creates idle-inhibitor objects for each surface.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_idle_inhibit_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the idle inhibitor object\n\nDestroy the inhibit manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new inhibitor object\n\nCreate a new inhibitor object associated with the given surface."] - CreateInhibitor { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_inhibitor", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreateInhibitor { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreateInhibitor { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_idle_inhibitor_v1::ZwpIdleInhibitorV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreateInhibitor { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreateInhibitor { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpIdleInhibitManagerV1(Proxy); - impl AsRef> for ZwpIdleInhibitManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpIdleInhibitManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpIdleInhibitManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpIdleInhibitManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpIdleInhibitManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpIdleInhibitManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_idle_inhibit_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_idle_inhibit_manager_v1_interface } - } - } - impl ZwpIdleInhibitManagerV1 { - #[doc = "destroy the idle inhibitor object\n\nDestroy the inhibit manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new inhibitor object\n\nCreate a new inhibitor object associated with the given surface."] - pub fn create_inhibitor( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::CreateInhibitor { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_INHIBITOR_SINCE: u32 = 1u32; - static mut zwp_idle_inhibit_manager_v1_requests_create_inhibitor_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwp_idle_inhibitor_v1::zwp_idle_inhibitor_v1_interface as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_idle_inhibit_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_inhibitor\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_idle_inhibit_manager_v1_requests_create_inhibitor_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_idle_inhibit_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_idle_inhibit_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_idle_inhibit_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "context object for inhibiting idle behavior\n\nAn idle inhibitor prevents the output that the associated surface is\nvisible on from being set to a state where it is not visually usable due\nto lack of user interaction (e.g. blanked, dimmed, locked, set to power\nsave, etc.) Any screensaver processes are also blocked from displaying.\n\nIf the surface is destroyed, unmapped, becomes occluded, loses\nvisibility, or otherwise becomes not visually relevant for the user, the\nidle inhibitor will not be honored by the compositor; if the surface\nsubsequently regains visibility the inhibitor takes effect once again.\nLikewise, the inhibitor isn't honored if the system was already idled at\nthe time the inhibitor was established, although if the system later\nde-idles and re-idles the inhibitor will take effect."] -pub mod zwp_idle_inhibitor_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the idle inhibitor object\n\nRemove the inhibitor effect from the associated wl_surface.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpIdleInhibitorV1(Proxy); - impl AsRef> for ZwpIdleInhibitorV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpIdleInhibitorV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpIdleInhibitorV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpIdleInhibitorV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpIdleInhibitorV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpIdleInhibitorV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_idle_inhibitor_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_idle_inhibitor_v1_interface } - } - } - impl ZwpIdleInhibitorV1 { - #[doc = "destroy the idle inhibitor object\n\nRemove the inhibitor effect from the associated wl_surface.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_idle_inhibitor_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_idle_inhibitor_v1_interface: wl_interface = wl_interface { - name: b"zwp_idle_inhibitor_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_idle_inhibitor_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs deleted file mode 100644 index 56a0b1d..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs +++ /dev/null @@ -1,1643 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "input method\n\nAn input method object allows for clients to compose text.\n\nThe objects connects the client to a text input in an application, and\nlets the client to serve as an input method for a seat.\n\nThe zwp_input_method_v2 object can occupy two distinct states: active and\ninactive. In the active state, the object is associated to and\ncommunicates with a text input. In the inactive state, there is no\nassociated text input, and the only communication is with the compositor.\nInitially, the input method is in the inactive state.\n\nRequests issued in the inactive state must be accepted by the compositor.\nBecause of the serial mechanism, and the state reset on activate event,\nthey will not have any effect on the state of the next text input.\n\nThere must be no more than one input method object per seat."] -pub mod zwp_input_method_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nInserts a string at current cursor position (see commit event\nsequence). The string to commit could be either just a single character\nafter a key press or the result of some composing.\n\nThe argument text is a buffer containing the string to insert. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.commit request.\n\nThe initial value of text is an empty string."] - CommitString { text: String }, - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nPlace a new composing text (pre-edit) at the current cursor position.\nAny previously set composing text must be removed. Any previously\nexisting selected text must be removed. The cursor is moved to a new\nposition within the preedit string.\n\nThe argument text is a buffer containing the preedit string. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nThe arguments cursor_begin and cursor_end are counted in bytes relative\nto the beginning of the submitted string buffer. Cursor should be\nhidden by the text input when both are equal to -1.\n\ncursor_begin indicates the beginning of the cursor. cursor_end\nindicates the end of the cursor. It may be equal or different than\ncursor_begin.\n\nValues set with this event are double-buffered. They must be applied on\nthe next zwp_input_method_v2.commit event.\n\nThe initial value of text is an empty string. The initial value of\ncursor_begin, and cursor_end are both 0."] - SetPreeditString { - text: String, - cursor_begin: i32, - cursor_end: i32, - }, - #[doc = "delete text\n\nRemove the surrounding text.\n\nbefore_length and after_length are the number of bytes before and after\nthe current cursor index (excluding the preedit text) to delete.\n\nIf any preedit text is present, it is replaced with the cursor for the\npurpose of this event. In effect before_length is counted from the\nbeginning of preedit text, and after_length from its end (see commit\nevent sequence).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_input_method_v2.commit request.\n\nThe initial values of both before_length and after_length are 0."] - DeleteSurroundingText { - before_length: u32, - after_length: u32, - }, - #[doc = "apply state\n\nApply state changes from commit_string, set_preedit_string and\ndelete_surrounding_text requests.\n\nThe state relating to these events is double-buffered, and each one\nmodifies the pending state. This request replaces the current state\nwith the pending state.\n\nThe connected text input is expected to proceed by evaluating the\nchanges in the following order:\n\n1. Replace existing preedit string with the cursor.\n2. Delete requested surrounding text.\n3. Insert commit string with the cursor at its end.\n4. Calculate surrounding text to send.\n5. Insert new preedit text in cursor position.\n6. Place cursor inside preedit text.\n\nThe serial number reflects the last state of the zwp_input_method_v2\nobject known to the client. The value of the serial argument must be\nequal to the number of done events already issued by that object. When\nthe compositor receives a commit request with a serial different than\nthe number of past done events, it must proceed as normal, except it\nshould not change the current state of the zwp_input_method_v2 object."] - Commit { serial: u32 }, - #[doc = "create popup surface\n\nCreates a new zwp_input_popup_surface_v2 object wrapping a given\nsurface.\n\nThe surface gets assigned the \"input_popup\" role. If the surface\nalready has an assigned role, the compositor must issue a protocol\nerror."] - GetInputPopupSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages.\n\nThe compositor should send all keyboard events on the seat to the grab\nholder via the returned wl_keyboard object. Nevertheless, the\ncompositor may decide not to forward any particular event. The\ncompositor must not further process any event after it has been\nforwarded to the grab holder.\n\nReleasing the resulting wl_keyboard object releases the grab."] - GrabKeyboard {}, - #[doc = "destroy the text input\n\nDestroys the zwp_text_input_v2 object and any associated child\nobjects, i.e. zwp_input_popup_surface_v2 and\nzwp_input_method_keyboard_grab_v2.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "commit", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "get_input_popup_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "grab_keyboard", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CommitString { .. } => 0, - Request::SetPreeditString { .. } => 1, - Request::DeleteSurroundingText { .. } => 2, - Request::Commit { .. } => 3, - Request::GetInputPopupSurface { .. } => 4, - Request::GrabKeyboard { .. } => 5, - Request::Destroy => 6, - } - } - fn since(&self) -> u32 { - match *self { - Request::CommitString { .. } => 1, - Request::SetPreeditString { .. } => 1, - Request::DeleteSurroundingText { .. } => 1, - Request::Commit { .. } => 1, - Request::GetInputPopupSurface { .. } => 1, - Request::GrabKeyboard { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 4 => Some(Object::from_interface::< - super::zwp_input_popup_surface_v2::ZwpInputPopupSurfaceV2, - >(version, meta.child())), - 5 => Some(Object::from_interface::< - super::zwp_input_method_keyboard_grab_v2::ZwpInputMethodKeyboardGrabV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CommitString { text } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })),], - }, - Request::SetPreeditString { - text, - cursor_begin, - cursor_end, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Int(cursor_begin), - Argument::Int(cursor_end), - ], - }, - Request::DeleteSurroundingText { - before_length, - after_length, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Uint(before_length), Argument::Uint(after_length),], - }, - Request::Commit { serial } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(serial),], - }, - Request::GetInputPopupSurface { surface } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::GrabKeyboard {} => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::NewId(0),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CommitString { text } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::SetPreeditString { - text, - cursor_begin, - cursor_end, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].i = cursor_begin; - _args_array[2].i = cursor_end; - f(1, &mut _args_array) - } - Request::DeleteSurroundingText { - before_length, - after_length, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = before_length; - _args_array[1].u = after_length; - f(2, &mut _args_array) - } - Request::Commit { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(3, &mut _args_array) - } - Request::GetInputPopupSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(4, &mut _args_array) - } - Request::GrabKeyboard {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(5, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(6, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "input method has been requested\n\nNotification that a text input focused on this seat requested the input\nmethod to be activated.\n\nThis event serves the purpose of providing the compositor with an\nactive input method.\n\nThis event resets all state associated with previous enable, disable,\nsurrounding_text, text_change_cause, and content_type events, as well\nas the state associated with set_preedit_string, commit_string, and\ndelete_surrounding_text requests. In addition, it marks the\nzwp_input_method_v2 object as active, and makes any existing\nzwp_input_popup_surface_v2 objects visible.\n\nThe surrounding_text, and content_type events must follow before the\nnext done event if the text input supports the respective\nfunctionality.\n\nState set with this event is double-buffered. It will get applied on\nthe next zwp_input_method_v2.done event, and stay valid until changed."] - Activate, - #[doc = "deactivate event\n\nNotification that no focused text input currently needs an active\ninput method on this seat.\n\nThis event marks the zwp_input_method_v2 object as inactive. The\ncompositor must make all existing zwp_input_popup_surface_v2 objects\ninvisible until the next activate event.\n\nState set with this event is double-buffered. It will get applied on\nthe next zwp_input_method_v2.done event, and stay valid until changed."] - Deactivate, - #[doc = "surrounding text event\n\nUpdates the surrounding plain text around the cursor, excluding the\npreedit text.\n\nIf any preedit text is present, it is replaced with the cursor for the\npurpose of this event.\n\nThe argument text is a buffer containing the preedit string, and must\ninclude the cursor position, and the complete selection. It should\ncontain additional characters before and after these. There is a\nmaximum length of wayland messages, so text can not be longer than 4000\nbytes.\n\ncursor is the byte offset of the cursor within the text buffer.\n\nanchor is the byte offset of the selection anchor within the text\nbuffer. If there is no selected text, anchor must be the same as\ncursor.\n\nIf this event does not arrive before the first done event, the input\nmethod may assume that the text input does not support this\nfunctionality and ignore following surrounding_text events.\n\nValues set with this event are double-buffered. They will get applied\nand set to initial values on the next zwp_input_method_v2.done\nevent.\n\nThe initial state for affected fields is empty, meaning that the text\ninput does not support sending surrounding text. If the empty values\nget applied, subsequent attempts to change them may have no effect."] - SurroundingText { - text: String, - cursor: u32, - anchor: u32, - }, - #[doc = "indicates the cause of surrounding text change\n\nTells the input method why the text surrounding the cursor changed.\n\nWhenever the client detects an external change in text, cursor, or\nanchor position, it must issue this request to the compositor. This\nrequest is intended to give the input method a chance to update the\npreedit text in an appropriate way, e.g. by removing it when the user\nstarts typing with a keyboard.\n\ncause describes the source of the change.\n\nThe value set with this event is double-buffered. It will get applied\nand set to its initial value on the next zwp_input_method_v2.done\nevent.\n\nThe initial value of cause is input_method."] - TextChangeCause { - cause: super::zwp_text_input_v3::ChangeCause, - }, - #[doc = "content purpose and hint\n\nIndicates the content type and hint for the current\nzwp_input_method_v2 instance.\n\nValues set with this event are double-buffered. They will get applied\non the next zwp_input_method_v2.done event.\n\nThe initial value for hint is none, and the initial value for purpose\nis normal."] - ContentType { - hint: super::zwp_text_input_v3::ContentHint, - purpose: super::zwp_text_input_v3::ContentPurpose, - }, - #[doc = "apply state\n\nAtomically applies state changes recently sent to the client.\n\nThe done event establishes and updates the state of the client, and\nmust be issued after any changes to apply them.\n\nText input state (content purpose, content hint, surrounding text, and\nchange cause) is conceptually double-buffered within an input method\ncontext.\n\nEvents modify the pending state, as opposed to the current state in use\nby the input method. A done event atomically applies all pending state,\nreplacing the current state. After done, the new pending state is as\ndocumented for each related request.\n\nEvents must be applied in the order of arrival.\n\nNeither current nor pending state are modified unless noted otherwise."] - Done, - #[doc = "input method unavailable\n\nThe input method ceased to be available.\n\nThe compositor must issue this event as the only event on the object if\nthere was another input_method object associated with the same seat at\nthe time of its creation.\n\nThe compositor must issue this request when the object is no longer\nuseable, e.g. due to seat removal.\n\nThe input method context becomes inert and should be destroyed after\ndeactivation is handled. Any further requests and events except for the\ndestroy request must be ignored."] - Unavailable, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "activate", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "deactivate", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "text_change_cause", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unavailable", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Activate => 0, - Event::Deactivate => 1, - Event::SurroundingText { .. } => 2, - Event::TextChangeCause { .. } => 3, - Event::ContentType { .. } => 4, - Event::Done => 5, - Event::Unavailable => 6, - } - } - fn since(&self) -> u32 { - match *self { - Event::Activate => 1, - Event::Deactivate => 1, - Event::SurroundingText { .. } => 1, - Event::TextChangeCause { .. } => 1, - Event::ContentType { .. } => 1, - Event::Done => 1, - Event::Unavailable => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Activate), - 1 => Ok(Event::Deactivate), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::SurroundingText { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - cursor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - anchor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::TextChangeCause { - cause: { - if let Some(Argument::Uint(val)) = args.next() { - super::zwp_text_input_v3::ChangeCause::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::ContentType { - hint: { - if let Some(Argument::Uint(val)) = args.next() { - super::zwp_text_input_v3::ContentHint::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - purpose: { - if let Some(Argument::Uint(val)) = args.next() { - super::zwp_text_input_v3::ContentPurpose::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Unavailable), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Activate), - 1 => Ok(Event::Deactivate), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::SurroundingText { - text: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - cursor: _args[1].u, - anchor: _args[2].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::TextChangeCause { - cause: super::zwp_text_input_v3::ChangeCause::from_raw(_args[0].u) - .ok_or(())?, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::ContentType { - hint: super::zwp_text_input_v3::ContentHint::from_raw(_args[0].u) - .ok_or(())?, - purpose: super::zwp_text_input_v3::ContentPurpose::from_raw(_args[1].u) - .ok_or(())?, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Unavailable), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodV2(Proxy); - impl AsRef> for ZwpInputMethodV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_v2_interface } - } - } - impl ZwpInputMethodV2 { - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nInserts a string at current cursor position (see commit event\nsequence). The string to commit could be either just a single character\nafter a key press or the result of some composing.\n\nThe argument text is a buffer containing the string to insert. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.commit request.\n\nThe initial value of text is an empty string."] - pub fn commit_string(&self, text: String) -> () { - let msg = Request::CommitString { text: text }; - self.0.send::(msg, None); - } - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nPlace a new composing text (pre-edit) at the current cursor position.\nAny previously set composing text must be removed. Any previously\nexisting selected text must be removed. The cursor is moved to a new\nposition within the preedit string.\n\nThe argument text is a buffer containing the preedit string. There is\na maximum length of wayland messages, so text can not be longer than\n4000 bytes.\n\nThe arguments cursor_begin and cursor_end are counted in bytes relative\nto the beginning of the submitted string buffer. Cursor should be\nhidden by the text input when both are equal to -1.\n\ncursor_begin indicates the beginning of the cursor. cursor_end\nindicates the end of the cursor. It may be equal or different than\ncursor_begin.\n\nValues set with this event are double-buffered. They must be applied on\nthe next zwp_input_method_v2.commit event.\n\nThe initial value of text is an empty string. The initial value of\ncursor_begin, and cursor_end are both 0."] - pub fn set_preedit_string(&self, text: String, cursor_begin: i32, cursor_end: i32) -> () { - let msg = Request::SetPreeditString { - text: text, - cursor_begin: cursor_begin, - cursor_end: cursor_end, - }; - self.0.send::(msg, None); - } - #[doc = "delete text\n\nRemove the surrounding text.\n\nbefore_length and after_length are the number of bytes before and after\nthe current cursor index (excluding the preedit text) to delete.\n\nIf any preedit text is present, it is replaced with the cursor for the\npurpose of this event. In effect before_length is counted from the\nbeginning of preedit text, and after_length from its end (see commit\nevent sequence).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_input_method_v2.commit request.\n\nThe initial values of both before_length and after_length are 0."] - pub fn delete_surrounding_text(&self, before_length: u32, after_length: u32) -> () { - let msg = Request::DeleteSurroundingText { - before_length: before_length, - after_length: after_length, - }; - self.0.send::(msg, None); - } - #[doc = "apply state\n\nApply state changes from commit_string, set_preedit_string and\ndelete_surrounding_text requests.\n\nThe state relating to these events is double-buffered, and each one\nmodifies the pending state. This request replaces the current state\nwith the pending state.\n\nThe connected text input is expected to proceed by evaluating the\nchanges in the following order:\n\n1. Replace existing preedit string with the cursor.\n2. Delete requested surrounding text.\n3. Insert commit string with the cursor at its end.\n4. Calculate surrounding text to send.\n5. Insert new preedit text in cursor position.\n6. Place cursor inside preedit text.\n\nThe serial number reflects the last state of the zwp_input_method_v2\nobject known to the client. The value of the serial argument must be\nequal to the number of done events already issued by that object. When\nthe compositor receives a commit request with a serial different than\nthe number of past done events, it must proceed as normal, except it\nshould not change the current state of the zwp_input_method_v2 object."] - pub fn commit(&self, serial: u32) -> () { - let msg = Request::Commit { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "create popup surface\n\nCreates a new zwp_input_popup_surface_v2 object wrapping a given\nsurface.\n\nThe surface gets assigned the \"input_popup\" role. If the surface\nalready has an assigned role, the compositor must issue a protocol\nerror."] - pub fn get_input_popup_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetInputPopupSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages.\n\nThe compositor should send all keyboard events on the seat to the grab\nholder via the returned wl_keyboard object. Nevertheless, the\ncompositor may decide not to forward any particular event. The\ncompositor must not further process any event after it has been\nforwarded to the grab holder.\n\nReleasing the resulting wl_keyboard object releases the grab."] - pub fn grab_keyboard( - &self, - ) -> Main { - let msg = Request::GrabKeyboard {}; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the text input\n\nDestroys the zwp_text_input_v2 object and any associated child\nobjects, i.e. zwp_input_popup_surface_v2 and\nzwp_input_method_keyboard_grab_v2.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INPUT_POPUP_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_KEYBOARD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DEACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TEXT_CHANGE_CAUSE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UNAVAILABLE_SINCE: u32 = 1u32; - static mut zwp_input_method_v2_requests_get_input_popup_surface_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwp_input_popup_surface_v2::zwp_input_popup_surface_v2_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut zwp_input_method_v2_requests_grab_keyboard_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_input_method_keyboard_grab_v2::zwp_input_method_keyboard_grab_v2_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_v2_requests: [wl_message; 7] = [ - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_preedit_string\0" as *const u8 as *const c_char, - signature: b"sii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_input_popup_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_method_v2_requests_get_input_popup_surface_types as *const _ - }, - }, - wl_message { - name: b"grab_keyboard\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_v2_requests_grab_keyboard_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_v2_events: [wl_message; 7] = [ - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"deactivate\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"surrounding_text\0" as *const u8 as *const c_char, - signature: b"suu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"text_change_cause\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unavailable\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_method_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 7, - requests: unsafe { &zwp_input_method_v2_requests as *const _ }, - event_count: 7, - events: unsafe { &zwp_input_method_v2_events as *const _ }, - }; -} -#[doc = "popup surface\n\nThis interface marks a surface as a popup for interacting with an input\nmethod.\n\nThe compositor should place it near the active text input area. It must\nbe visible if and only if the input method is in the active state.\n\nThe client must not destroy the underlying wl_surface while the\nzwp_input_popup_surface_v2 object exists."] -pub mod zwp_input_popup_surface_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "This is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "set text input area position\n\nNotify about the position of the area of the text input expressed as a\nrectangle in surface local coordinates.\n\nThis is a hint to the input method telling it the relative position of\nthe text being entered."] - TextInputRectangle { - x: i32, - y: i32, - width: i32, - height: i32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "text_input_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::TextInputRectangle { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::TextInputRectangle { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::TextInputRectangle { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::TextInputRectangle { - x: _args[0].i, - y: _args[1].i, - width: _args[2].i, - height: _args[3].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputPopupSurfaceV2(Proxy); - impl AsRef> for ZwpInputPopupSurfaceV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputPopupSurfaceV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputPopupSurfaceV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputPopupSurfaceV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputPopupSurfaceV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputPopupSurfaceV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_popup_surface_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_popup_surface_v2_interface } - } - } - impl ZwpInputPopupSurfaceV2 { - #[doc = "This is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TEXT_INPUT_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_popup_surface_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_popup_surface_v2_events: [wl_message; 1] = [wl_message { - name: b"text_input_rectangle\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_popup_surface_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_popup_surface_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_popup_surface_v2_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_input_popup_surface_v2_events as *const _ }, - }; -} -#[doc = "keyboard grab\n\nThe zwp_input_method_keyboard_grab_v2 interface represents an exclusive\ngrab of the wl_keyboard interface associated with the seat."] -pub mod zwp_input_method_keyboard_grab_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the grab object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "keyboard mapping\n\nThis event provides a file descriptor to the client which can be\nmemory-mapped to provide a keyboard mapping description."] - Keymap { - format: super::wl_keyboard::KeymapFormat, - fd: ::std::os::unix::io::RawFd, - size: u32, - }, - #[doc = "key event\n\nA key was pressed or released.\nThe time argument is a timestamp with millisecond granularity, with an\nundefined base."] - Key { - serial: u32, - time: u32, - key: u32, - state: super::wl_keyboard::KeyState, - }, - #[doc = "modifier and group state\n\nNotifies clients that the modifier and/or group state has changed, and\nit should update its local state."] - Modifiers { - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - }, - #[doc = "repeat rate and delay\n\nInforms the client about the keyboard's repeat rate and delay.\n\nThis event is sent as soon as the zwp_input_method_keyboard_grab_v2\nobject has been created, and is guaranteed to be received by the\nclient before any key press event.\n\nNegative values for either rate or delay are illegal. A rate of zero\nwill disable any repeating (regardless of the value of delay).\n\nThis event can be sent later on as well with a new value if necessary,\nso clients should continue listening for the event past the creation\nof zwp_input_method_keyboard_grab_v2."] - RepeatInfo { rate: i32, delay: i32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "keymap", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fd, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "key", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "modifiers", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "repeat_info", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Keymap { .. } => 0, - Event::Key { .. } => 1, - Event::Modifiers { .. } => 2, - Event::RepeatInfo { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Keymap { .. } => 1, - Event::Key { .. } => 1, - Event::Modifiers { .. } => 1, - Event::RepeatInfo { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Keymap { - format: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_keyboard::KeymapFormat::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Key { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - key: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_keyboard::KeyState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modifiers { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_depressed: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_latched: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mods_locked: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - group: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::RepeatInfo { - rate: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - delay: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Keymap { - format: super::wl_keyboard::KeymapFormat::from_raw(_args[0].u).ok_or(())?, - fd: _args[1].h, - size: _args[2].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Key { - serial: _args[0].u, - time: _args[1].u, - key: _args[2].u, - state: super::wl_keyboard::KeyState::from_raw(_args[3].u).ok_or(())?, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Modifiers { - serial: _args[0].u, - mods_depressed: _args[1].u, - mods_latched: _args[2].u, - mods_locked: _args[3].u, - group: _args[4].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::RepeatInfo { - rate: _args[0].i, - delay: _args[1].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodKeyboardGrabV2(Proxy); - impl AsRef> for ZwpInputMethodKeyboardGrabV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodKeyboardGrabV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodKeyboardGrabV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodKeyboardGrabV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodKeyboardGrabV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodKeyboardGrabV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_keyboard_grab_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_keyboard_grab_v2_interface } - } - } - impl ZwpInputMethodKeyboardGrabV2 { - #[doc = "release the grab object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEYMAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIERS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REPEAT_INFO_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_keyboard_grab_v2_requests: [wl_message; 1] = [wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_keyboard_grab_v2_events: [wl_message; 4] = [ - wl_message { - name: b"keymap\0" as *const u8 as *const c_char, - signature: b"uhu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"key\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"repeat_info\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_keyboard_grab_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_method_keyboard_grab_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_method_keyboard_grab_v2_requests as *const _ }, - event_count: 4, - events: unsafe { &zwp_input_method_keyboard_grab_v2_events as *const _ }, - }; -} -#[doc = "input method manager\n\nThe input method manager allows the client to become the input method on\na chosen seat.\n\nNo more than one input method must be associated with any seat at any\ngiven time."] -pub mod zwp_input_method_manager_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request an input method object\n\nRequest a new input zwp_input_method_v2 object associated with a given\nseat."] - GetInputMethod { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the input method manager\n\nDestroys the zwp_input_method_manager_v2 object.\n\nThe zwp_input_method_v2 objects originating from it remain valid.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_input_method", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetInputMethod { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetInputMethod { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_input_method_v2::ZwpInputMethodV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetInputMethod { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::NewId(0),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetInputMethod { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodManagerV2(Proxy); - impl AsRef> for ZwpInputMethodManagerV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodManagerV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodManagerV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodManagerV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodManagerV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodManagerV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_manager_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_manager_v2_interface } - } - } - impl ZwpInputMethodManagerV2 { - #[doc = "request an input method object\n\nRequest a new input zwp_input_method_v2 object associated with a given\nseat."] - pub fn get_input_method( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetInputMethod { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the input method manager\n\nDestroys the zwp_input_method_manager_v2 object.\n\nThe zwp_input_method_v2 objects originating from it remain valid.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INPUT_METHOD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_input_method_manager_v2_requests_get_input_method_types: [*const wl_interface; - 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { - &super::zwp_input_method_v2::zwp_input_method_v2_interface as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_manager_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"get_input_method\0" as *const u8 as *const c_char, - signature: b"on\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_method_manager_v2_requests_get_input_method_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_manager_v2_interface: wl_interface = wl_interface { - name: b"zwp_input_method_manager_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_input_method_manager_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs deleted file mode 100644 index af23dc4..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs +++ /dev/null @@ -1,1781 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "input method context\n\nCorresponds to a text input on the input method side. An input method context\nis created on text input activation on the input method side. It allows\nreceiving information about the text input from the application via events.\nInput method contexts do not keep state after deactivation and should be\ndestroyed after deactivation is handled.\n\nText is generally UTF-8 encoded, indices and lengths are in bytes.\n\nSerials are used to synchronize the state between the text input and\nan input method. New serials are sent by the text input in the\ncommit_state request and are used by the input method to indicate\nthe known text input state in events like preedit_string, commit_string,\nand keysym. The text input can then ignore events from the input method\nwhich are based on an outdated state (for example after a reset).\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_input_method_context_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "This is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nThe text to commit could be either just a single character after a key\npress or the result of some composing (pre-edit). It could be also an\nempty text when some text should be removed (see\ndelete_surrounding_text) or when the input cursor should be moved (see\ncursor_position).\n\nAny previously set composing text will be removed."] - CommitString { serial: u32, text: String }, - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nThe commit text can be used to replace the pre-edit text on reset (for\nexample on unfocus).\n\nPreviously sent preedit_style and preedit_cursor requests are also\nprocessed by the text_input."] - PreeditString { - serial: u32, - text: String, - commit: String, - }, - #[doc = "pre-edit styling\n\nSet the styling information on composing text. The style is applied for\nlength in bytes from index relative to the beginning of\nthe composing text (as byte offset). Multiple styles can\nbe applied to a composing text.\n\nThis request should be sent before sending a preedit_string request."] - PreeditStyling { index: u32, length: u32, style: u32 }, - #[doc = "pre-edit cursor\n\nSet the cursor position inside the composing text (as byte offset)\nrelative to the start of the composing text.\n\nWhen index is negative no cursor should be displayed.\n\nThis request should be sent before sending a preedit_string request."] - PreeditCursor { index: i32 }, - #[doc = "delete text\n\nRemove the surrounding text.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - DeleteSurroundingText { index: i32, length: u32 }, - #[doc = "set cursor to a new position\n\nSet the cursor and anchor to a new position. Index is the new cursor\nposition in bytes (when >= 0 this is relative to the end of the inserted text,\notherwise it is relative to the beginning of the inserted text). Anchor is\nthe new anchor position in bytes (when >= 0 this is relative to the end of the\ninserted text, otherwise it is relative to the beginning of the inserted\ntext). When there should be no selected text, anchor should be the same\nas index.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - CursorPosition { index: i32, anchor: i32 }, - #[doc = ""] - ModifiersMap { map: Vec }, - #[doc = "keysym\n\nNotify when a key event was sent. Key events should not be used for\nnormal text input operations, which should be done with commit_string,\ndelete_surrounding_text, etc. The key event follows the wl_keyboard key\nevent convention. Sym is an XKB keysym, state is a wl_keyboard key_state."] - Keysym { - serial: u32, - time: u32, - sym: u32, - state: u32, - modifiers: u32, - }, - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages."] - GrabKeyboard {}, - #[doc = "forward key event\n\nForward a wl_keyboard::key event to the client that was not processed\nby the input method itself. Should be used when filtering key events\nwith grab_keyboard. The arguments should be the ones from the\nwl_keyboard::key event.\n\nFor generating custom key events use the keysym request instead."] - Key { - serial: u32, - time: u32, - key: u32, - state: u32, - }, - #[doc = "forward modifiers event\n\nForward a wl_keyboard::modifiers event to the client that was not\nprocessed by the input method itself. Should be used when filtering\nkey events with grab_keyboard. The arguments should be the ones\nfrom the wl_keyboard::modifiers event."] - Modifiers { - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - }, - #[doc = ""] - Language { serial: u32, language: String }, - #[doc = ""] - TextDirection { serial: u32, direction: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_styling", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_cursor", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "cursor_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "modifiers_map", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "keysym", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "grab_keyboard", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "key", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "modifiers", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "language", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "text_direction", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CommitString { .. } => 1, - Request::PreeditString { .. } => 2, - Request::PreeditStyling { .. } => 3, - Request::PreeditCursor { .. } => 4, - Request::DeleteSurroundingText { .. } => 5, - Request::CursorPosition { .. } => 6, - Request::ModifiersMap { .. } => 7, - Request::Keysym { .. } => 8, - Request::GrabKeyboard { .. } => 9, - Request::Key { .. } => 10, - Request::Modifiers { .. } => 11, - Request::Language { .. } => 12, - Request::TextDirection { .. } => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CommitString { .. } => 1, - Request::PreeditString { .. } => 1, - Request::PreeditStyling { .. } => 1, - Request::PreeditCursor { .. } => 1, - Request::DeleteSurroundingText { .. } => 1, - Request::CursorPosition { .. } => 1, - Request::ModifiersMap { .. } => 1, - Request::Keysym { .. } => 1, - Request::GrabKeyboard { .. } => 1, - Request::Key { .. } => 1, - Request::Modifiers { .. } => 1, - Request::Language { .. } => 1, - Request::TextDirection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 9 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CommitString { serial, text } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - ], - }, - Request::PreeditString { - serial, - text, - commit, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(commit.into()) - })), - ], - }, - Request::PreeditStyling { - index, - length, - style, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Uint(index), - Argument::Uint(length), - Argument::Uint(style), - ], - }, - Request::PreeditCursor { index } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Int(index),], - }, - Request::DeleteSurroundingText { index, length } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Int(index), Argument::Uint(length),], - }, - Request::CursorPosition { index, anchor } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Int(index), Argument::Int(anchor),], - }, - Request::ModifiersMap { map } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Array(Box::new(map)),], - }, - Request::Keysym { - serial, - time, - sym, - state, - modifiers, - } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![ - Argument::Uint(serial), - Argument::Uint(time), - Argument::Uint(sym), - Argument::Uint(state), - Argument::Uint(modifiers), - ], - }, - Request::GrabKeyboard {} => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::NewId(0),], - }, - Request::Key { - serial, - time, - key, - state, - } => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![ - Argument::Uint(serial), - Argument::Uint(time), - Argument::Uint(key), - Argument::Uint(state), - ], - }, - Request::Modifiers { - serial, - mods_depressed, - mods_latched, - mods_locked, - group, - } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![ - Argument::Uint(serial), - Argument::Uint(mods_depressed), - Argument::Uint(mods_latched), - Argument::Uint(mods_locked), - Argument::Uint(group), - ], - }, - Request::Language { serial, language } => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![ - Argument::Uint(serial), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(language.into()) - })), - ], - }, - Request::TextDirection { serial, direction } => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![Argument::Uint(serial), Argument::Uint(direction),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CommitString { serial, text } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = ::std::ffi::CString::new(text).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(1, &mut _args_array) - } - Request::PreeditString { - serial, - text, - commit, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = ::std::ffi::CString::new(text).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - let _arg_2 = ::std::ffi::CString::new(commit).unwrap(); - _args_array[2].s = _arg_2.as_ptr(); - f(2, &mut _args_array) - } - Request::PreeditStyling { - index, - length, - style, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = index; - _args_array[1].u = length; - _args_array[2].u = style; - f(3, &mut _args_array) - } - Request::PreeditCursor { index } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = index; - f(4, &mut _args_array) - } - Request::DeleteSurroundingText { index, length } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = index; - _args_array[1].u = length; - f(5, &mut _args_array) - } - Request::CursorPosition { index, anchor } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = index; - _args_array[1].i = anchor; - f(6, &mut _args_array) - } - Request::ModifiersMap { map } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = wl_array { - size: map.len(), - alloc: map.capacity(), - data: map.as_ptr() as *mut _, - }; - _args_array[0].a = &_arg_0; - f(7, &mut _args_array) - } - Request::Keysym { - serial, - time, - sym, - state, - modifiers, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = time; - _args_array[2].u = sym; - _args_array[3].u = state; - _args_array[4].u = modifiers; - f(8, &mut _args_array) - } - Request::GrabKeyboard {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(9, &mut _args_array) - } - Request::Key { - serial, - time, - key, - state, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = time; - _args_array[2].u = key; - _args_array[3].u = state; - f(10, &mut _args_array) - } - Request::Modifiers { - serial, - mods_depressed, - mods_latched, - mods_locked, - group, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = mods_depressed; - _args_array[2].u = mods_latched; - _args_array[3].u = mods_locked; - _args_array[4].u = group; - f(11, &mut _args_array) - } - Request::Language { serial, language } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - let _arg_1 = ::std::ffi::CString::new(language).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(12, &mut _args_array) - } - Request::TextDirection { serial, direction } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].u = direction; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "surrounding text event\n\nThe plain surrounding text around the input position. Cursor is the\nposition in bytes within the surrounding text relative to the beginning\nof the text. Anchor is the position in bytes of the selection anchor\nwithin the surrounding text relative to the beginning of the text. If\nthere is no selected text then anchor is the same as cursor."] - SurroundingText { - text: String, - cursor: u32, - anchor: u32, - }, - #[doc = ""] - Reset, - #[doc = ""] - ContentType { hint: u32, purpose: u32 }, - #[doc = ""] - InvokeAction { button: u32, index: u32 }, - #[doc = ""] - CommitState { serial: u32 }, - #[doc = ""] - PreferredLanguage { language: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "reset", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "invoke_action", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "commit_state", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "preferred_language", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::SurroundingText { .. } => 0, - Event::Reset => 1, - Event::ContentType { .. } => 2, - Event::InvokeAction { .. } => 3, - Event::CommitState { .. } => 4, - Event::PreferredLanguage { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::SurroundingText { .. } => 1, - Event::Reset => 1, - Event::ContentType { .. } => 1, - Event::InvokeAction { .. } => 1, - Event::CommitState { .. } => 1, - Event::PreferredLanguage { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::SurroundingText { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - cursor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - anchor: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Reset), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::ContentType { - hint: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - purpose: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::InvokeAction { - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::CommitState { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreferredLanguage { - language: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::SurroundingText { - text: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - cursor: _args[1].u, - anchor: _args[2].u, - }) - } - 1 => Ok(Event::Reset), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::ContentType { - hint: _args[0].u, - purpose: _args[1].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::InvokeAction { - button: _args[0].u, - index: _args[1].u, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::CommitState { serial: _args[0].u }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PreferredLanguage { - language: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodContextV1(Proxy); - impl AsRef> for ZwpInputMethodContextV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodContextV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodContextV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodContextV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodContextV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodContextV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_context_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_context_v1_interface } - } - } - impl ZwpInputMethodContextV1 { - #[doc = "This is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "commit string\n\nSend the commit string text for insertion to the application.\n\nThe text to commit could be either just a single character after a key\npress or the result of some composing (pre-edit). It could be also an\nempty text when some text should be removed (see\ndelete_surrounding_text) or when the input cursor should be moved (see\ncursor_position).\n\nAny previously set composing text will be removed."] - pub fn commit_string(&self, serial: u32, text: String) -> () { - let msg = Request::CommitString { - serial: serial, - text: text, - }; - self.0.send::(msg, None); - } - #[doc = "pre-edit string\n\nSend the pre-edit string text to the application text input.\n\nThe commit text can be used to replace the pre-edit text on reset (for\nexample on unfocus).\n\nPreviously sent preedit_style and preedit_cursor requests are also\nprocessed by the text_input."] - pub fn preedit_string(&self, serial: u32, text: String, commit: String) -> () { - let msg = Request::PreeditString { - serial: serial, - text: text, - commit: commit, - }; - self.0.send::(msg, None); - } - #[doc = "pre-edit styling\n\nSet the styling information on composing text. The style is applied for\nlength in bytes from index relative to the beginning of\nthe composing text (as byte offset). Multiple styles can\nbe applied to a composing text.\n\nThis request should be sent before sending a preedit_string request."] - pub fn preedit_styling(&self, index: u32, length: u32, style: u32) -> () { - let msg = Request::PreeditStyling { - index: index, - length: length, - style: style, - }; - self.0.send::(msg, None); - } - #[doc = "pre-edit cursor\n\nSet the cursor position inside the composing text (as byte offset)\nrelative to the start of the composing text.\n\nWhen index is negative no cursor should be displayed.\n\nThis request should be sent before sending a preedit_string request."] - pub fn preedit_cursor(&self, index: i32) -> () { - let msg = Request::PreeditCursor { index: index }; - self.0.send::(msg, None); - } - #[doc = "delete text\n\nRemove the surrounding text.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - pub fn delete_surrounding_text(&self, index: i32, length: u32) -> () { - let msg = Request::DeleteSurroundingText { - index: index, - length: length, - }; - self.0.send::(msg, None); - } - #[doc = "set cursor to a new position\n\nSet the cursor and anchor to a new position. Index is the new cursor\nposition in bytes (when >= 0 this is relative to the end of the inserted text,\notherwise it is relative to the beginning of the inserted text). Anchor is\nthe new anchor position in bytes (when >= 0 this is relative to the end of the\ninserted text, otherwise it is relative to the beginning of the inserted\ntext). When there should be no selected text, anchor should be the same\nas index.\n\nThis request will be handled on the text_input side directly following\na commit_string request."] - pub fn cursor_position(&self, index: i32, anchor: i32) -> () { - let msg = Request::CursorPosition { - index: index, - anchor: anchor, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn modifiers_map(&self, map: Vec) -> () { - let msg = Request::ModifiersMap { map: map }; - self.0.send::(msg, None); - } - #[doc = "keysym\n\nNotify when a key event was sent. Key events should not be used for\nnormal text input operations, which should be done with commit_string,\ndelete_surrounding_text, etc. The key event follows the wl_keyboard key\nevent convention. Sym is an XKB keysym, state is a wl_keyboard key_state."] - pub fn keysym(&self, serial: u32, time: u32, sym: u32, state: u32, modifiers: u32) -> () { - let msg = Request::Keysym { - serial: serial, - time: time, - sym: sym, - state: state, - modifiers: modifiers, - }; - self.0.send::(msg, None); - } - #[doc = "grab hardware keyboard\n\nAllow an input method to receive hardware keyboard input and process\nkey events to generate text events (with pre-edit) over the wire. This\nallows input methods which compose multiple key events for inputting\ntext like it is done for CJK languages."] - pub fn grab_keyboard(&self) -> Main { - let msg = Request::GrabKeyboard {}; - self.0.send(msg, None).unwrap() - } - #[doc = "forward key event\n\nForward a wl_keyboard::key event to the client that was not processed\nby the input method itself. Should be used when filtering key events\nwith grab_keyboard. The arguments should be the ones from the\nwl_keyboard::key event.\n\nFor generating custom key events use the keysym request instead."] - pub fn key(&self, serial: u32, time: u32, key: u32, state: u32) -> () { - let msg = Request::Key { - serial: serial, - time: time, - key: key, - state: state, - }; - self.0.send::(msg, None); - } - #[doc = "forward modifiers event\n\nForward a wl_keyboard::modifiers event to the client that was not\nprocessed by the input method itself. Should be used when filtering\nkey events with grab_keyboard. The arguments should be the ones\nfrom the wl_keyboard::modifiers event."] - pub fn modifiers( - &self, - serial: u32, - mods_depressed: u32, - mods_latched: u32, - mods_locked: u32, - group: u32, - ) -> () { - let msg = Request::Modifiers { - serial: serial, - mods_depressed: mods_depressed, - mods_latched: mods_latched, - mods_locked: mods_locked, - group: group, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn language(&self, serial: u32, language: String) -> () { - let msg = Request::Language { - serial: serial, - language: language, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn text_direction(&self, serial: u32, direction: u32) -> () { - let msg = Request::TextDirection { - serial: serial, - direction: direction, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PREEDIT_STYLING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PREEDIT_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CURSOR_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MODIFIERS_MAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_KEYSYM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_KEYBOARD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_KEY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MODIFIERS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_LANGUAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_TEXT_DIRECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RESET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_INVOKE_ACTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_COMMIT_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREFERRED_LANGUAGE_SINCE: u32 = 1u32; - static mut zwp_input_method_context_v1_requests_grab_keyboard_types: [*const wl_interface; 1] = - [unsafe { &super::wl_keyboard::wl_keyboard_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_context_v1_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_string\0" as *const u8 as *const c_char, - signature: b"uss\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_styling\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_cursor\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"iu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cursor_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers_map\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"keysym\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab_keyboard\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_context_v1_requests_grab_keyboard_types as *const _ }, - }, - wl_message { - name: b"key\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"language\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"text_direction\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_context_v1_events: [wl_message; 6] = [ - wl_message { - name: b"surrounding_text\0" as *const u8 as *const c_char, - signature: b"suu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"reset\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"invoke_action\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_state\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preferred_language\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_context_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_method_context_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 14, - requests: unsafe { &zwp_input_method_context_v1_requests as *const _ }, - event_count: 6, - events: unsafe { &zwp_input_method_context_v1_events as *const _ }, - }; -} -#[doc = "input method\n\nAn input method object is responsible for composing text in response to\ninput from hardware or virtual keyboards. There is one input method\nobject per seat. On activate there is a new input method context object\ncreated which allows the input method to communicate with the text input."] -pub mod zwp_input_method_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "activate event\n\nA text input was activated. Creates an input method context object\nwhich allows communication with the text input."] - Activate { - id: Main, - }, - #[doc = "deactivate event\n\nThe text input corresponding to the context argument was deactivated.\nThe input method context should be destroyed after deactivation is\nhandled."] - Deactivate { - context: super::zwp_input_method_context_v1::ZwpInputMethodContextV1, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "activate", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "deactivate", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Activate { .. } => 0, - Event::Deactivate { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Activate { .. } => 1, - Event::Deactivate { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_input_method_context_v1::ZwpInputMethodContextV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Activate { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Deactivate { - context: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok (Event :: Activate { id : Main :: < super :: zwp_input_method_context_v1 :: ZwpInputMethodContextV1 > :: from_c_ptr (_args [0] . o as * mut _) , }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok( - Event::Deactivate { - context: Proxy::< - super::zwp_input_method_context_v1::ZwpInputMethodContextV1, - >::from_c_ptr(_args[0].o as *mut _) - .into(), - }, - ) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputMethodV1(Proxy); - impl AsRef> for ZwpInputMethodV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputMethodV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputMethodV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputMethodV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputMethodV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputMethodV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_method_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_method_v1_interface } - } - } - impl ZwpInputMethodV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DEACTIVATE_SINCE: u32 = 1u32; - static mut zwp_input_method_v1_events_activate_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_input_method_context_v1::zwp_input_method_context_v1_interface - as *const wl_interface - }]; - static mut zwp_input_method_v1_events_deactivate_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_input_method_context_v1::zwp_input_method_context_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_method_v1_events: [wl_message; 2] = [ - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_v1_events_activate_types as *const _ }, - }, - wl_message { - name: b"deactivate\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_method_v1_events_deactivate_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_method_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_method_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 2, - events: unsafe { &zwp_input_method_v1_events as *const _ }, - }; -} -#[doc = "interface for implementing keyboards\n\nOnly one client can bind this interface at a time."] -pub mod zwp_input_panel_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = ""] - GetInputPanelSurface { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "get_input_panel_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetInputPanelSurface { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetInputPanelSurface { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_input_panel_surface_v1::ZwpInputPanelSurfaceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetInputPanelSurface { surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetInputPanelSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputPanelV1(Proxy); - impl AsRef> for ZwpInputPanelV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputPanelV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputPanelV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputPanelV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputPanelV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputPanelV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_panel_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_panel_v1_interface } - } - } - impl ZwpInputPanelV1 { - #[doc = ""] - pub fn get_input_panel_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetInputPanelSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INPUT_PANEL_SURFACE_SINCE: u32 = 1u32; - static mut zwp_input_panel_v1_requests_get_input_panel_surface_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_panel_surface_v1::zwp_input_panel_surface_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_panel_v1_requests: [wl_message; 1] = [wl_message { - name: b"get_input_panel_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_panel_v1_requests_get_input_panel_surface_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_panel_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_panel_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_panel_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -pub mod zwp_input_panel_surface_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Position { - CenterBottom = 0, - } - impl Position { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Position::CenterBottom), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the surface type as a keyboard\n\nSet the input_panel_surface type to keyboard.\n\nA keyboard surface is only shown when a text input is active."] - SetToplevel { - output: super::wl_output::WlOutput, - position: u32, - }, - #[doc = "set the surface type as an overlay panel\n\nSet the input_panel_surface to be an overlay panel.\n\nThis is shown near the input cursor above the application window when\na text input is active."] - SetOverlayPanel, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_toplevel", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_overlay_panel", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetToplevel { .. } => 0, - Request::SetOverlayPanel => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetToplevel { .. } => 1, - Request::SetOverlayPanel => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetToplevel { output, position } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(output.as_ref().id()), - Argument::Uint(position), - ], - }, - Request::SetOverlayPanel => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetToplevel { output, position } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output.as_ref().c_ptr() as *mut _; - _args_array[1].u = position; - f(0, &mut _args_array) - } - Request::SetOverlayPanel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputPanelSurfaceV1(Proxy); - impl AsRef> for ZwpInputPanelSurfaceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputPanelSurfaceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputPanelSurfaceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputPanelSurfaceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputPanelSurfaceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputPanelSurfaceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_panel_surface_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_panel_surface_v1_interface } - } - } - impl ZwpInputPanelSurfaceV1 { - #[doc = "set the surface type as a keyboard\n\nSet the input_panel_surface type to keyboard.\n\nA keyboard surface is only shown when a text input is active."] - pub fn set_toplevel(&self, output: &super::wl_output::WlOutput, position: u32) -> () { - let msg = Request::SetToplevel { - output: output.clone(), - position: position, - }; - self.0.send::(msg, None); - } - #[doc = "set the surface type as an overlay panel\n\nSet the input_panel_surface to be an overlay panel.\n\nThis is shown near the input cursor above the application window when\na text input is active."] - pub fn set_overlay_panel(&self) -> () { - let msg = Request::SetOverlayPanel; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OVERLAY_PANEL_SINCE: u32 = 1u32; - static mut zwp_input_panel_surface_v1_requests_set_toplevel_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_panel_surface_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_toplevel\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_input_panel_surface_v1_requests_set_toplevel_types as *const _ }, - }, - wl_message { - name: b"set_overlay_panel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_panel_surface_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_panel_surface_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_input_panel_surface_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs deleted file mode 100644 index 241edc1..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs +++ /dev/null @@ -1,603 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "context object for high-resolution input timestamps\n\nA global interface used for requesting high-resolution timestamps\nfor input events."] -pub mod zwp_input_timestamps_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the input timestamps manager object\n\nInforms the server that the client will no longer be using this\nprotocol object. Existing objects created by this object are not\naffected.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "subscribe to high-resolution keyboard timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_keyboard events that\ncarry a timestamp.\n\nIf the associated wl_keyboard object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - GetKeyboardTimestamps { - keyboard: super::wl_keyboard::WlKeyboard, - }, - #[doc = "subscribe to high-resolution pointer timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_pointer events that\ncarry a timestamp.\n\nIf the associated wl_pointer object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - GetPointerTimestamps { - pointer: super::wl_pointer::WlPointer, - }, - #[doc = "subscribe to high-resolution touch timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_touch events that\ncarry a timestamp.\n\nIf the associated wl_touch object becomes invalid, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - GetTouchTimestamps { touch: super::wl_touch::WlTouch }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_keyboard_timestamps", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_pointer_timestamps", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_touch_timestamps", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetKeyboardTimestamps { .. } => 1, - Request::GetPointerTimestamps { .. } => 2, - Request::GetTouchTimestamps { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetKeyboardTimestamps { .. } => 1, - Request::GetPointerTimestamps { .. } => 1, - Request::GetTouchTimestamps { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_input_timestamps_v1::ZwpInputTimestampsV1, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_input_timestamps_v1::ZwpInputTimestampsV1, - >(version, meta.child())), - 3 => Some(Object::from_interface::< - super::zwp_input_timestamps_v1::ZwpInputTimestampsV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetKeyboardTimestamps { keyboard } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(keyboard.as_ref().id()),], - }, - Request::GetPointerTimestamps { pointer } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - Request::GetTouchTimestamps { touch } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::NewId(0), Argument::Object(touch.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetKeyboardTimestamps { keyboard } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = keyboard.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::GetPointerTimestamps { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::GetTouchTimestamps { touch } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = touch.as_ref().c_ptr() as *mut _; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputTimestampsManagerV1(Proxy); - impl AsRef> for ZwpInputTimestampsManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputTimestampsManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputTimestampsManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputTimestampsManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputTimestampsManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputTimestampsManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_timestamps_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_timestamps_manager_v1_interface } - } - } - impl ZwpInputTimestampsManagerV1 { - #[doc = "destroy the input timestamps manager object\n\nInforms the server that the client will no longer be using this\nprotocol object. Existing objects created by this object are not\naffected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "subscribe to high-resolution keyboard timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_keyboard events that\ncarry a timestamp.\n\nIf the associated wl_keyboard object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - pub fn get_keyboard_timestamps( - &self, - keyboard: &super::wl_keyboard::WlKeyboard, - ) -> Main { - let msg = Request::GetKeyboardTimestamps { - keyboard: keyboard.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "subscribe to high-resolution pointer timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_pointer events that\ncarry a timestamp.\n\nIf the associated wl_pointer object is invalidated, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - pub fn get_pointer_timestamps( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetPointerTimestamps { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "subscribe to high-resolution touch timestamp events\n\nCreates a new input timestamps object that represents a subscription\nto high-resolution timestamp events for all wl_touch events that\ncarry a timestamp.\n\nIf the associated wl_touch object becomes invalid, either through\nclient action (e.g. release) or server-side changes, the input\ntimestamps object becomes inert and the client should destroy it\nby calling zwp_input_timestamps_v1.destroy."] - pub fn get_touch_timestamps( - &self, - touch: &super::wl_touch::WlTouch, - ) -> Main { - let msg = Request::GetTouchTimestamps { - touch: touch.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_KEYBOARD_TIMESTAMPS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POINTER_TIMESTAMPS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOUCH_TIMESTAMPS_SINCE: u32 = 1u32; - static mut zwp_input_timestamps_manager_v1_requests_get_keyboard_timestamps_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_timestamps_v1::zwp_input_timestamps_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_keyboard::wl_keyboard_interface as *const wl_interface }, - ]; - static mut zwp_input_timestamps_manager_v1_requests_get_pointer_timestamps_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_timestamps_v1::zwp_input_timestamps_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - static mut zwp_input_timestamps_manager_v1_requests_get_touch_timestamps_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_input_timestamps_v1::zwp_input_timestamps_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_touch::wl_touch_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_timestamps_manager_v1_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_keyboard_timestamps\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_timestamps_manager_v1_requests_get_keyboard_timestamps_types as *const _ - }, - }, - wl_message { - name: b"get_pointer_timestamps\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_timestamps_manager_v1_requests_get_pointer_timestamps_types as *const _ - }, - }, - wl_message { - name: b"get_touch_timestamps\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_input_timestamps_manager_v1_requests_get_touch_timestamps_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_timestamps_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_timestamps_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 4, - requests: unsafe { &zwp_input_timestamps_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "context object for input timestamps\n\nProvides high-resolution timestamp events for a set of subscribed input\nevents. The set of subscribed input events is determined by the\nzwp_input_timestamps_manager_v1 request used to create this object."] -pub mod zwp_input_timestamps_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the input timestamps object\n\nInforms the server that the client will no longer be using this\nprotocol object. After the server processes the request, no more\ntimestamp events will be emitted.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "high-resolution timestamp event\n\nThe timestamp event is associated with the first subsequent input event\ncarrying a timestamp which belongs to the set of input events this\nobject is subscribed to.\n\nThe timestamp provided by this event is a high-resolution version of\nthe timestamp argument of the associated input event. The provided\ntimestamp is in the same clock domain and is at least as accurate as\nthe associated input event timestamp.\n\nThe timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples,\neach component being an unsigned 32-bit value. Whole seconds are in\ntv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo,\nand the additional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999]."] - Timestamp { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "timestamp", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Timestamp { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Timestamp { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Timestamp { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Timestamp { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpInputTimestampsV1(Proxy); - impl AsRef> for ZwpInputTimestampsV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpInputTimestampsV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpInputTimestampsV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpInputTimestampsV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpInputTimestampsV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpInputTimestampsV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_input_timestamps_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_input_timestamps_v1_interface } - } - } - impl ZwpInputTimestampsV1 { - #[doc = "destroy the input timestamps object\n\nInforms the server that the client will no longer be using this\nprotocol object. After the server processes the request, no more\ntimestamp events will be emitted.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TIMESTAMP_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_timestamps_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_input_timestamps_v1_events: [wl_message; 1] = [wl_message { - name: b"timestamp\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_input_timestamps_v1_interface: wl_interface = wl_interface { - name: b"zwp_input_timestamps_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_input_timestamps_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_input_timestamps_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs deleted file mode 100644 index 30c8c41..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs +++ /dev/null @@ -1,511 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "context object for keyboard grab_manager\n\nA global interface used for inhibiting the compositor keyboard shortcuts."] -pub mod zwp_keyboard_shortcuts_inhibit_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the shortcuts are already inhibited for this surface"] - AlreadyInhibited = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyInhibited), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nDestroy the keyboard shortcuts inhibitor manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new keyboard shortcuts inhibitor object\n\nCreate a new keyboard shortcuts inhibitor object associated with\nthe given surface for the given seat.\n\nIf shortcuts are already inhibited for the specified seat and surface,\na protocol error \"already_inhibited\" is raised by the compositor."] - InhibitShortcuts { - surface: super::wl_surface::WlSurface, - seat: super::wl_seat::WlSeat, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "inhibit_shortcuts", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::InhibitShortcuts { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::InhibitShortcuts { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_keyboard_shortcuts_inhibitor_v1::ZwpKeyboardShortcutsInhibitorV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::InhibitShortcuts { surface, seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(seat.as_ref().id()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::InhibitShortcuts { surface, seat } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpKeyboardShortcutsInhibitManagerV1(Proxy); - impl AsRef> for ZwpKeyboardShortcutsInhibitManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpKeyboardShortcutsInhibitManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpKeyboardShortcutsInhibitManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpKeyboardShortcutsInhibitManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpKeyboardShortcutsInhibitManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpKeyboardShortcutsInhibitManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_keyboard_shortcuts_inhibit_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_keyboard_shortcuts_inhibit_manager_v1_interface } - } - } - impl ZwpKeyboardShortcutsInhibitManagerV1 { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nDestroy the keyboard shortcuts inhibitor manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new keyboard shortcuts inhibitor object\n\nCreate a new keyboard shortcuts inhibitor object associated with\nthe given surface for the given seat.\n\nIf shortcuts are already inhibited for the specified seat and surface,\na protocol error \"already_inhibited\" is raised by the compositor."] - pub fn inhibit_shortcuts( - &self, - surface: &super::wl_surface::WlSurface, - seat: &super::wl_seat::WlSeat, - ) -> Main - { - let msg = Request::InhibitShortcuts { - surface: surface.clone(), - seat: seat.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_INHIBIT_SHORTCUTS_SINCE: u32 = 1u32; - static mut zwp_keyboard_shortcuts_inhibit_manager_v1_requests_inhibit_shortcuts_types: - [*const wl_interface; 3] = [ - unsafe { - & super :: zwp_keyboard_shortcuts_inhibitor_v1 :: zwp_keyboard_shortcuts_inhibitor_v1_interface as * const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibit_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"inhibit_shortcuts\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_keyboard_shortcuts_inhibit_manager_v1_requests_inhibit_shortcuts_types - as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibit_manager_v1_interface: wl_interface = - wl_interface { - name: b"zwp_keyboard_shortcuts_inhibit_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_keyboard_shortcuts_inhibit_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "context object for keyboard shortcuts inhibitor\n\nA keyboard shortcuts inhibitor instructs the compositor to ignore\nits own keyboard shortcuts when the associated surface has keyboard\nfocus. As a result, when the surface has keyboard focus on the given\nseat, it will receive all key events originating from the specified\nseat, even those which would normally be caught by the compositor for\nits own shortcuts.\n\nThe Wayland compositor is however under no obligation to disable\nall of its shortcuts, and may keep some special key combo for its own\nuse, including but not limited to one allowing the user to forcibly\nrestore normal keyboard events routing in the case of an unwilling\nclient. The compositor may also use the same key combo to reactivate\nan existing shortcut inhibitor that was previously deactivated on\nuser request.\n\nWhen the compositor restores its own keyboard shortcuts, an\n\"inactive\" event is emitted to notify the client that the keyboard\nshortcuts inhibitor is not effectively active for the surface and\nseat any more, and the client should not expect to receive all\nkeyboard events.\n\nWhen the keyboard shortcuts inhibitor is inactive, the client has\nno way to forcibly reactivate the keyboard shortcuts inhibitor.\n\nThe user can chose to re-enable a previously deactivated keyboard\nshortcuts inhibitor using any mechanism the compositor may offer,\nin which case the compositor will send an \"active\" event to notify\nthe client.\n\nIf the surface is destroyed, unmapped, or loses the seat's keyboard\nfocus, the keyboard shortcuts inhibitor becomes irrelevant and the\ncompositor will restore its own keyboard shortcuts but no \"inactive\"\nevent is emitted in this case."] -pub mod zwp_keyboard_shortcuts_inhibitor_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nRemove the keyboard shortcuts inhibitor from the associated wl_surface.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "shortcuts are inhibited\n\nThis event indicates that the shortcut inhibitor is active.\n\nThe compositor sends this event every time compositor shortcuts\nare inhibited on behalf of the surface. When active, the client\nmay receive input events normally reserved by the compositor\n(see zwp_keyboard_shortcuts_inhibitor_v1).\n\nThis occurs typically when the initial request \"inhibit_shortcuts\"\nfirst becomes active or when the user instructs the compositor to\nre-enable and existing shortcuts inhibitor using any mechanism\noffered by the compositor."] - Active, - #[doc = "shortcuts are restored\n\nThis event indicates that the shortcuts inhibitor is inactive,\nnormal shortcuts processing is restored by the compositor."] - Inactive, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "active", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "inactive", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Active => 0, - Event::Inactive => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Active => 1, - Event::Inactive => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Active), - 1 => Ok(Event::Inactive), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Active), - 1 => Ok(Event::Inactive), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpKeyboardShortcutsInhibitorV1(Proxy); - impl AsRef> for ZwpKeyboardShortcutsInhibitorV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpKeyboardShortcutsInhibitorV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpKeyboardShortcutsInhibitorV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpKeyboardShortcutsInhibitorV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpKeyboardShortcutsInhibitorV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpKeyboardShortcutsInhibitorV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_keyboard_shortcuts_inhibitor_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_keyboard_shortcuts_inhibitor_v1_interface } - } - } - impl ZwpKeyboardShortcutsInhibitorV1 { - #[doc = "destroy the keyboard shortcuts inhibitor object\n\nRemove the keyboard shortcuts inhibitor from the associated wl_surface.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ACTIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_INACTIVE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibitor_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibitor_v1_events: [wl_message; 2] = [ - wl_message { - name: b"active\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"inactive\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_keyboard_shortcuts_inhibitor_v1_interface: wl_interface = wl_interface { - name: b"zwp_keyboard_shortcuts_inhibitor_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_keyboard_shortcuts_inhibitor_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_keyboard_shortcuts_inhibitor_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs deleted file mode 100644 index b5e2fcf..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs +++ /dev/null @@ -1,891 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 6] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "factory for creating dmabuf-based wl_buffers\n\nFollowing the interfaces from:\nhttps://www.khronos.org/registry/egl/extensions/EXT/EGL_EXT_image_dma_buf_import.txt\nhttps://www.khronos.org/registry/EGL/extensions/EXT/EGL_EXT_image_dma_buf_import_modifiers.txt\nand the Linux DRM sub-system's AddFb2 ioctl.\n\nThis interface offers ways to create generic dmabuf-based\nwl_buffers. Immediately after a client binds to this interface,\nthe set of supported formats and format modifiers is sent with\n'format' and 'modifier' events.\n\nThe following are required from clients:\n\n- Clients must ensure that either all data in the dma-buf is\ncoherent for all subsequent read access or that coherency is\ncorrectly handled by the underlying kernel-side dma-buf\nimplementation.\n\n- Don't make any more attachments after sending the buffer to the\ncompositor. Making more attachments later increases the risk of\nthe compositor not being able to use (re-import) an existing\ndmabuf-based wl_buffer.\n\nThe underlying graphics stack must ensure the following:\n\n- The dmabuf file descriptors relayed to the server will stay valid\nfor the whole lifetime of the wl_buffer. This means the server may\nat any time use those fds to import the dmabuf into any kernel\nsub-system that might accept it.\n\nHowever, when the underlying graphics stack fails to deliver the\npromise, because of e.g. a device hot-unplug which raises internal\nerrors, after the wl_buffer has been successfully created the\ncompositor must not raise protocol errors to the client when dmabuf\nimport later fails.\n\nTo create a wl_buffer from one or more dmabufs, a client creates a\nzwp_linux_dmabuf_params_v1 object with a zwp_linux_dmabuf_v1.create_params\nrequest. All planes required by the intended format are added with\nthe 'add' request. Finally, a 'create' or 'create_immed' request is\nissued, which has the following outcome depending on the import success.\n\nThe 'create' request,\n- on success, triggers a 'created' event which provides the final\nwl_buffer to the client.\n- on failure, triggers a 'failed' event to convey that the server\ncannot use the dmabufs received from the client.\n\nFor the 'create_immed' request,\n- on success, the server immediately imports the added dmabufs to\ncreate a wl_buffer. No event is sent from the server in this case.\n- on failure, the server can choose to either:\n- terminate the client by raising a fatal error.\n- mark the wl_buffer as failed, and send a 'failed' event to the\nclient. If the client uses a failed wl_buffer as an argument to any\nrequest, the behaviour is compositor implementation-defined.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_linux_dmabuf_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind the factory\n\nObjects created through this interface, especially wl_buffers, will\nremain valid.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a temporary object for buffer parameters\n\nThis temporary object is used to collect multiple dmabuf handles into\na single batch to create a wl_buffer. It can only be used once and\nshould be destroyed after a 'created' or 'failed' event has been\nreceived."] - CreateParams {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_params", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreateParams { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreateParams { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_linux_buffer_params_v1::ZwpLinuxBufferParamsV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreateParams {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreateParams {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "supported buffer format\n\nThis event advertises one buffer format that the server supports.\nAll the supported formats are advertised once when the client\nbinds to this interface. A roundtrip after binding guarantees\nthat the client has received all supported formats.\n\nFor the definition of the format codes, see the\nzwp_linux_buffer_params_v1::create request.\n\nWarning: the 'format' event is likely to be deprecated and replaced\nwith the 'modifier' event introduced in zwp_linux_dmabuf_v1\nversion 3, described below. Please refrain from using the information\nreceived from this event."] - Format { format: u32 }, - #[doc = "supported buffer format modifier\n\nThis event advertises the formats that the server supports, along with\nthe modifiers supported for each format. All the supported modifiers\nfor all the supported formats are advertised once when the client\nbinds to this interface. A roundtrip after binding guarantees that\nthe client has received all supported format-modifier pairs.\n\nFor legacy support, DRM_FORMAT_MOD_INVALID (that is, modifier_hi ==\n0x00ffffff and modifier_lo == 0xffffffff) is allowed in this event.\nIt indicates that the server can support the format with an implicit\nmodifier. When a plane has DRM_FORMAT_MOD_INVALID as its modifier, it\nis as if no explicit modifier is specified. The effective modifier\nwill be derived from the dmabuf.\n\nA compositor that sends valid modifiers and DRM_FORMAT_MOD_INVALID for\na given format supports both explicit modifiers and implicit modifiers.\n\nFor the definition of the format and modifier codes, see the\nzwp_linux_buffer_params_v1::create and zwp_linux_buffer_params_v1::add\nrequests.\n\nOnly available since version 3 of the interface"] - Modifier { - format: u32, - modifier_hi: u32, - modifier_lo: u32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "format", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "modifier", - since: 3, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Format { .. } => 0, - Event::Modifier { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Format { .. } => 1, - Event::Modifier { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Format { - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modifier { - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - modifier_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - modifier_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Format { format: _args[0].u }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Modifier { - format: _args[0].u, - modifier_hi: _args[1].u, - modifier_lo: _args[2].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxDmabufV1(Proxy); - impl AsRef> for ZwpLinuxDmabufV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxDmabufV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxDmabufV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxDmabufV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxDmabufV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxDmabufV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_dmabuf_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_dmabuf_v1_interface } - } - } - impl ZwpLinuxDmabufV1 { - #[doc = "unbind the factory\n\nObjects created through this interface, especially wl_buffers, will\nremain valid.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a temporary object for buffer parameters\n\nThis temporary object is used to collect multiple dmabuf handles into\na single batch to create a wl_buffer. It can only be used once and\nshould be destroyed after a 'created' or 'failed' event has been\nreceived."] - pub fn create_params( - &self, - ) -> Main { - let msg = Request::CreateParams {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_PARAMS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FORMAT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIER_SINCE: u32 = 3u32; - static mut zwp_linux_dmabuf_v1_requests_create_params_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_linux_buffer_params_v1::zwp_linux_buffer_params_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_dmabuf_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_params\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_linux_dmabuf_v1_requests_create_params_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_dmabuf_v1_events: [wl_message; 2] = [ - wl_message { - name: b"format\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifier\0" as *const u8 as *const c_char, - signature: b"3uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_dmabuf_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_dmabuf_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 2, - requests: unsafe { &zwp_linux_dmabuf_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_linux_dmabuf_v1_events as *const _ }, - }; -} -#[doc = "parameters for creating a dmabuf-based wl_buffer\n\nThis temporary object is a collection of dmabufs and other\nparameters that together form a single logical buffer. The temporary\nobject may eventually create one wl_buffer unless cancelled by\ndestroying it before requesting 'create'.\n\nSingle-planar formats only require one dmabuf, however\nmulti-planar formats may require more than one dmabuf. For all\nformats, an 'add' request must be called once per plane (even if the\nunderlying dmabuf fd is identical).\n\nYou must use consecutive plane indices ('plane_idx' argument for 'add')\nfrom zero to the number of planes used by the drm_fourcc format code.\nAll planes required by the format must be given exactly once, but can\nbe given in any order. Each plane index can be set only once."] -pub mod zwp_linux_buffer_params_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the dmabuf_batch object has already been used to create a wl_buffer"] - AlreadyUsed = 0, - #[doc = "plane index out of bounds"] - PlaneIdx = 1, - #[doc = "the plane index was already set"] - PlaneSet = 2, - #[doc = "missing or too many planes to create a buffer"] - Incomplete = 3, - #[doc = "format not supported"] - InvalidFormat = 4, - #[doc = "invalid width or height"] - InvalidDimensions = 5, - #[doc = "offset + stride * height goes out of dmabuf bounds"] - OutOfBounds = 6, - #[doc = "invalid wl_buffer resulted from importing dmabufs via the create_immed request on given buffer_params"] - InvalidWlBuffer = 7, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyUsed), - 1 => Some(Error::PlaneIdx), - 2 => Some(Error::PlaneSet), - 3 => Some(Error::Incomplete), - 4 => Some(Error::InvalidFormat), - 5 => Some(Error::InvalidDimensions), - 6 => Some(Error::OutOfBounds), - 7 => Some(Error::InvalidWlBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Flags : u32 { # [doc = "contents are y-inverted"] const YInvert = 1 ; # [doc = "content is interlaced"] const Interlaced = 2 ; # [doc = "bottom field first"] const BottomFirst = 4 ; } } - impl Flags { - pub fn from_raw(n: u32) -> Option { - Some(Flags::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "delete this object, used or not\n\nCleans up the temporary data sent to the server for dmabuf-based\nwl_buffer creation.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "add a dmabuf to the temporary set\n\nThis request adds one dmabuf to the set in this\nzwp_linux_buffer_params_v1.\n\nThe 64-bit unsigned value combined from modifier_hi and modifier_lo\nis the dmabuf layout modifier. DRM AddFB2 ioctl calls this the\nfb modifier, which is defined in drm_mode.h of Linux UAPI.\nThis is an opaque token. Drivers use this token to express tiling,\ncompression, etc. driver-specific modifications to the base format\ndefined by the DRM fourcc code.\n\nWarning: It should be an error if the format/modifier pair was not\nadvertised with the modifier event. This is not enforced yet because\nsome implementations always accept DRM_FORMAT_MOD_INVALID. Also\nversion 2 of this protocol does not have the modifier event.\n\nThis request raises the PLANE_IDX error if plane_idx is too large.\nThe error PLANE_SET is raised if attempting to set a plane that\nwas already set."] - Add { - fd: ::std::os::unix::io::RawFd, - plane_idx: u32, - offset: u32, - stride: u32, - modifier_hi: u32, - modifier_lo: u32, - }, - #[doc = "create a wl_buffer from the given dmabufs\n\nThis asks for creation of a wl_buffer from the added dmabuf\nbuffers. The wl_buffer is not created immediately but returned via\nthe 'created' event if the dmabuf sharing succeeds. The sharing\nmay fail at runtime for reasons a client cannot predict, in\nwhich case the 'failed' event is triggered.\n\nThe 'format' argument is a DRM_FORMAT code, as defined by the\nlibdrm's drm_fourcc.h. The Linux kernel's DRM sub-system is the\nauthoritative source on how the format codes should work.\n\nThe 'flags' is a bitfield of the flags defined in enum \"flags\".\n'y_invert' means the that the image needs to be y-flipped.\n\nFlag 'interlaced' means that the frame in the buffer is not\nprogressive as usual, but interlaced. An interlaced buffer as\nsupported here must always contain both top and bottom fields.\nThe top field always begins on the first pixel row. The temporal\nordering between the two fields is top field first, unless\n'bottom_first' is specified. It is undefined whether 'bottom_first'\nis ignored if 'interlaced' is not set.\n\nThis protocol does not convey any information about field rate,\nduration, or timing, other than the relative ordering between the\ntwo fields in one buffer. A compositor may have to estimate the\nintended field rate from the incoming buffer rate. It is undefined\nwhether the time of receiving wl_surface.commit with a new buffer\nattached, applying the wl_surface state, wl_surface.frame callback\ntrigger, presentation, or any other point in the compositor cycle\nis used to measure the frame or field times. There is no support\nfor detecting missed or late frames/fields/buffers either, and\nthere is no support whatsoever for cooperating with interlaced\ncompositor output.\n\nThe composited image quality resulting from the use of interlaced\nbuffers is explicitly undefined. A compositor may use elaborate\nhardware features or software to deinterlace and create progressive\noutput frames from a sequence of interlaced input buffers, or it\nmay produce substandard image quality. However, compositors that\ncannot guarantee reasonable image quality in all cases are recommended\nto just reject all interlaced buffers.\n\nAny argument errors, including non-positive width or height,\nmismatch between the number of planes and the format, bad\nformat, bad offset or stride, may be indicated by fatal protocol\nerrors: INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS,\nOUT_OF_BOUNDS.\n\nDmabuf import errors in the server that are not obvious client\nbugs are returned via the 'failed' event as non-fatal. This\nallows attempting dmabuf sharing and falling back in the client\nif it fails.\n\nThis request can be sent only once in the object's lifetime, after\nwhich the only legal request is destroy. This object should be\ndestroyed after issuing a 'create' request. Attempting to use this\nobject after issuing 'create' raises ALREADY_USED protocol error.\n\nIt is not mandatory to issue 'create'. If a client wants to\ncancel the buffer creation, it can just destroy this object."] - Create { - width: i32, - height: i32, - format: u32, - flags: Flags, - }, - #[doc = "immediately create a wl_buffer from the given dmabufs\n\nThis asks for immediate creation of a wl_buffer by importing the\nadded dmabufs.\n\nIn case of import success, no event is sent from the server, and the\nwl_buffer is ready to be used by the client.\n\nUpon import failure, either of the following may happen, as seen fit\nby the implementation:\n- the client is terminated with one of the following fatal protocol\nerrors:\n- INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS, OUT_OF_BOUNDS,\nin case of argument errors such as mismatch between the number\nof planes and the format, bad format, non-positive width or\nheight, or bad offset or stride.\n- INVALID_WL_BUFFER, in case the cause for failure is unknown or\nplaform specific.\n- the server creates an invalid wl_buffer, marks it as failed and\nsends a 'failed' event to the client. The result of using this\ninvalid wl_buffer as an argument in any request by the client is\ndefined by the compositor implementation.\n\nThis takes the same arguments as a 'create' request, and obeys the\nsame restrictions.\n\nOnly available since version 2 of the interface"] - CreateImmed { - width: i32, - height: i32, - format: u32, - flags: Flags, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "add", - since: 1, - signature: &[ - super::ArgumentType::Fd, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "create", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "create_immed", - since: 2, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Add { .. } => 1, - Request::Create { .. } => 2, - Request::CreateImmed { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Add { .. } => 1, - Request::Create { .. } => 1, - Request::CreateImmed { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 3 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Add { - fd, - plane_idx, - offset, - stride, - modifier_hi, - modifier_lo, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Fd(fd), - Argument::Uint(plane_idx), - Argument::Uint(offset), - Argument::Uint(stride), - Argument::Uint(modifier_hi), - Argument::Uint(modifier_lo), - ], - }, - Request::Create { - width, - height, - format, - flags, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(width), - Argument::Int(height), - Argument::Uint(format), - Argument::Uint(flags.to_raw()), - ], - }, - Request::CreateImmed { - width, - height, - format, - flags, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::NewId(0), - Argument::Int(width), - Argument::Int(height), - Argument::Uint(format), - Argument::Uint(flags.to_raw()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Add { - fd, - plane_idx, - offset, - stride, - modifier_hi, - modifier_lo, - } => { - let mut _args_array: [wl_argument; 6] = unsafe { ::std::mem::zeroed() }; - _args_array[0].h = fd; - _args_array[1].u = plane_idx; - _args_array[2].u = offset; - _args_array[3].u = stride; - _args_array[4].u = modifier_hi; - _args_array[5].u = modifier_lo; - f(1, &mut _args_array) - } - Request::Create { - width, - height, - format, - flags, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - _args_array[2].u = format; - _args_array[3].u = flags.to_raw(); - f(2, &mut _args_array) - } - Request::CreateImmed { - width, - height, - format, - flags, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = width; - _args_array[2].i = height; - _args_array[3].u = format; - _args_array[4].u = flags.to_raw(); - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "buffer creation succeeded\n\nThis event indicates that the attempted buffer creation was\nsuccessful. It provides the new wl_buffer referencing the dmabuf(s).\n\nUpon receiving this event, the client should destroy the\nzlinux_dmabuf_params object."] - Created { - buffer: Main, - }, - #[doc = "buffer creation failed\n\nThis event indicates that the attempted buffer creation has\nfailed. It usually means that one of the dmabuf constraints\nhas not been fulfilled.\n\nUpon receiving this event, the client should destroy the\nzlinux_buffer_params object."] - Failed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "created", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Created { .. } => 0, - Event::Failed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Created { .. } => 1, - Event::Failed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Created { - buffer: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Failed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Created { - buffer: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => Ok(Event::Failed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxBufferParamsV1(Proxy); - impl AsRef> for ZwpLinuxBufferParamsV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxBufferParamsV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxBufferParamsV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxBufferParamsV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxBufferParamsV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxBufferParamsV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_buffer_params_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_buffer_params_v1_interface } - } - } - impl ZwpLinuxBufferParamsV1 { - #[doc = "delete this object, used or not\n\nCleans up the temporary data sent to the server for dmabuf-based\nwl_buffer creation.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "add a dmabuf to the temporary set\n\nThis request adds one dmabuf to the set in this\nzwp_linux_buffer_params_v1.\n\nThe 64-bit unsigned value combined from modifier_hi and modifier_lo\nis the dmabuf layout modifier. DRM AddFB2 ioctl calls this the\nfb modifier, which is defined in drm_mode.h of Linux UAPI.\nThis is an opaque token. Drivers use this token to express tiling,\ncompression, etc. driver-specific modifications to the base format\ndefined by the DRM fourcc code.\n\nWarning: It should be an error if the format/modifier pair was not\nadvertised with the modifier event. This is not enforced yet because\nsome implementations always accept DRM_FORMAT_MOD_INVALID. Also\nversion 2 of this protocol does not have the modifier event.\n\nThis request raises the PLANE_IDX error if plane_idx is too large.\nThe error PLANE_SET is raised if attempting to set a plane that\nwas already set."] - pub fn add( - &self, - fd: ::std::os::unix::io::RawFd, - plane_idx: u32, - offset: u32, - stride: u32, - modifier_hi: u32, - modifier_lo: u32, - ) -> () { - let msg = Request::Add { - fd: fd, - plane_idx: plane_idx, - offset: offset, - stride: stride, - modifier_hi: modifier_hi, - modifier_lo: modifier_lo, - }; - self.0.send::(msg, None); - } - #[doc = "create a wl_buffer from the given dmabufs\n\nThis asks for creation of a wl_buffer from the added dmabuf\nbuffers. The wl_buffer is not created immediately but returned via\nthe 'created' event if the dmabuf sharing succeeds. The sharing\nmay fail at runtime for reasons a client cannot predict, in\nwhich case the 'failed' event is triggered.\n\nThe 'format' argument is a DRM_FORMAT code, as defined by the\nlibdrm's drm_fourcc.h. The Linux kernel's DRM sub-system is the\nauthoritative source on how the format codes should work.\n\nThe 'flags' is a bitfield of the flags defined in enum \"flags\".\n'y_invert' means the that the image needs to be y-flipped.\n\nFlag 'interlaced' means that the frame in the buffer is not\nprogressive as usual, but interlaced. An interlaced buffer as\nsupported here must always contain both top and bottom fields.\nThe top field always begins on the first pixel row. The temporal\nordering between the two fields is top field first, unless\n'bottom_first' is specified. It is undefined whether 'bottom_first'\nis ignored if 'interlaced' is not set.\n\nThis protocol does not convey any information about field rate,\nduration, or timing, other than the relative ordering between the\ntwo fields in one buffer. A compositor may have to estimate the\nintended field rate from the incoming buffer rate. It is undefined\nwhether the time of receiving wl_surface.commit with a new buffer\nattached, applying the wl_surface state, wl_surface.frame callback\ntrigger, presentation, or any other point in the compositor cycle\nis used to measure the frame or field times. There is no support\nfor detecting missed or late frames/fields/buffers either, and\nthere is no support whatsoever for cooperating with interlaced\ncompositor output.\n\nThe composited image quality resulting from the use of interlaced\nbuffers is explicitly undefined. A compositor may use elaborate\nhardware features or software to deinterlace and create progressive\noutput frames from a sequence of interlaced input buffers, or it\nmay produce substandard image quality. However, compositors that\ncannot guarantee reasonable image quality in all cases are recommended\nto just reject all interlaced buffers.\n\nAny argument errors, including non-positive width or height,\nmismatch between the number of planes and the format, bad\nformat, bad offset or stride, may be indicated by fatal protocol\nerrors: INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS,\nOUT_OF_BOUNDS.\n\nDmabuf import errors in the server that are not obvious client\nbugs are returned via the 'failed' event as non-fatal. This\nallows attempting dmabuf sharing and falling back in the client\nif it fails.\n\nThis request can be sent only once in the object's lifetime, after\nwhich the only legal request is destroy. This object should be\ndestroyed after issuing a 'create' request. Attempting to use this\nobject after issuing 'create' raises ALREADY_USED protocol error.\n\nIt is not mandatory to issue 'create'. If a client wants to\ncancel the buffer creation, it can just destroy this object."] - pub fn create(&self, width: i32, height: i32, format: u32, flags: Flags) -> () { - let msg = Request::Create { - width: width, - height: height, - format: format, - flags: flags, - }; - self.0.send::(msg, None); - } - #[doc = "immediately create a wl_buffer from the given dmabufs\n\nThis asks for immediate creation of a wl_buffer by importing the\nadded dmabufs.\n\nIn case of import success, no event is sent from the server, and the\nwl_buffer is ready to be used by the client.\n\nUpon import failure, either of the following may happen, as seen fit\nby the implementation:\n- the client is terminated with one of the following fatal protocol\nerrors:\n- INCOMPLETE, INVALID_FORMAT, INVALID_DIMENSIONS, OUT_OF_BOUNDS,\nin case of argument errors such as mismatch between the number\nof planes and the format, bad format, non-positive width or\nheight, or bad offset or stride.\n- INVALID_WL_BUFFER, in case the cause for failure is unknown or\nplaform specific.\n- the server creates an invalid wl_buffer, marks it as failed and\nsends a 'failed' event to the client. The result of using this\ninvalid wl_buffer as an argument in any request by the client is\ndefined by the compositor implementation.\n\nThis takes the same arguments as a 'create' request, and obeys the\nsame restrictions.\n\nOnly available since version 2 of the interface."] - pub fn create_immed( - &self, - width: i32, - height: i32, - format: u32, - flags: Flags, - ) -> Main { - let msg = Request::CreateImmed { - width: width, - height: height, - format: format, - flags: flags, - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ADD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_IMMED_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CREATED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - static mut zwp_linux_buffer_params_v1_requests_create_immed_types: [*const wl_interface; 5] = [ - unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_buffer_params_v1_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"add\0" as *const u8 as *const c_char, - signature: b"huuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create\0" as *const u8 as *const c_char, - signature: b"iiuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_immed\0" as *const u8 as *const c_char, - signature: b"2niiuu\0" as *const u8 as *const c_char, - types: unsafe { &zwp_linux_buffer_params_v1_requests_create_immed_types as *const _ }, - }, - ]; - static mut zwp_linux_buffer_params_v1_events_created_types: [*const wl_interface; 1] = - [unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_buffer_params_v1_events: [wl_message; 2] = [ - wl_message { - name: b"created\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_linux_buffer_params_v1_events_created_types as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_buffer_params_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_buffer_params_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 4, - requests: unsafe { &zwp_linux_buffer_params_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_linux_buffer_params_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs deleted file mode 100644 index 4832135..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs +++ /dev/null @@ -1,773 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "protocol for providing explicit synchronization\n\nThis global is a factory interface, allowing clients to request\nexplicit synchronization for buffers on a per-surface basis.\n\nSee zwp_linux_surface_synchronization_v1 for more information.\n\nThis interface is derived from Chromium's\nzcr_linux_explicit_synchronization_v1.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_linux_explicit_synchronization_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the surface already has a synchronization object associated"] - SynchronizationExists = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::SynchronizationExists), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy explicit synchronization factory object\n\nDestroy this explicit synchronization factory object. Other objects,\nincluding zwp_linux_surface_synchronization_v1 objects created by this\nfactory, shall not be affected by this request.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "extend surface interface for explicit synchronization\n\nInstantiate an interface extension for the given wl_surface to provide\nexplicit synchronization.\n\nIf the given wl_surface already has an explicit synchronization object\nassociated, the synchronization_exists protocol error is raised.\n\nGraphics APIs, like EGL or Vulkan, that manage the buffer queue and\ncommits of a wl_surface themselves, are likely to be using this\nextension internally. If a client is using such an API for a\nwl_surface, it should not directly use this extension on that surface,\nto avoid raising a synchronization_exists protocol error."] - GetSynchronization { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_synchronization", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetSynchronization { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetSynchronization { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_linux_surface_synchronization_v1::ZwpLinuxSurfaceSynchronizationV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetSynchronization { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetSynchronization { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxExplicitSynchronizationV1(Proxy); - impl AsRef> for ZwpLinuxExplicitSynchronizationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxExplicitSynchronizationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxExplicitSynchronizationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxExplicitSynchronizationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxExplicitSynchronizationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxExplicitSynchronizationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_explicit_synchronization_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_explicit_synchronization_v1_interface } - } - } - impl ZwpLinuxExplicitSynchronizationV1 { - #[doc = "destroy explicit synchronization factory object\n\nDestroy this explicit synchronization factory object. Other objects,\nincluding zwp_linux_surface_synchronization_v1 objects created by this\nfactory, shall not be affected by this request.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "extend surface interface for explicit synchronization\n\nInstantiate an interface extension for the given wl_surface to provide\nexplicit synchronization.\n\nIf the given wl_surface already has an explicit synchronization object\nassociated, the synchronization_exists protocol error is raised.\n\nGraphics APIs, like EGL or Vulkan, that manage the buffer queue and\ncommits of a wl_surface themselves, are likely to be using this\nextension internally. If a client is using such an API for a\nwl_surface, it should not directly use this extension on that surface,\nto avoid raising a synchronization_exists protocol error."] - pub fn get_synchronization( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main - { - let msg = Request::GetSynchronization { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SYNCHRONIZATION_SINCE: u32 = 1u32; - static mut zwp_linux_explicit_synchronization_v1_requests_get_synchronization_types: - [*const wl_interface; 2] = [ - unsafe { - & super :: zwp_linux_surface_synchronization_v1 :: zwp_linux_surface_synchronization_v1_interface as * const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_explicit_synchronization_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_synchronization\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_linux_explicit_synchronization_v1_requests_get_synchronization_types - as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_explicit_synchronization_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_explicit_synchronization_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 2, - requests: unsafe { &zwp_linux_explicit_synchronization_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "per-surface explicit synchronization support\n\nThis object implements per-surface explicit synchronization.\n\nSynchronization refers to co-ordination of pipelined operations performed\non buffers. Most GPU clients will schedule an asynchronous operation to\nrender to the buffer, then immediately send the buffer to the compositor\nto be attached to a surface.\n\nIn implicit synchronization, ensuring that the rendering operation is\ncomplete before the compositor displays the buffer is an implementation\ndetail handled by either the kernel or userspace graphics driver.\n\nBy contrast, in explicit synchronization, dma_fence objects mark when the\nasynchronous operations are complete. When submitting a buffer, the\nclient provides an acquire fence which will be waited on before the\ncompositor accesses the buffer. The Wayland server, through a\nzwp_linux_buffer_release_v1 object, will inform the client with an event\nwhich may be accompanied by a release fence, when the compositor will no\nlonger access the buffer contents due to the specific commit that\nrequested the release event.\n\nEach surface can be associated with only one object of this interface at\nany time.\n\nIn version 1 of this interface, explicit synchronization is only\nguaranteed to be supported for buffers created with any version of the\nwp_linux_dmabuf buffer factory. Version 2 additionally guarantees\nexplicit synchronization support for opaque EGL buffers, which is a type\nof platform specific buffers described in the EGL_WL_bind_wayland_display\nextension. Compositors are free to support explicit synchronization for\nadditional buffer types."] -pub mod zwp_linux_surface_synchronization_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the fence specified by the client could not be imported"] - InvalidFence = 0, - #[doc = "multiple fences added for a single surface commit"] - DuplicateFence = 1, - #[doc = "multiple releases added for a single surface commit"] - DuplicateRelease = 2, - #[doc = "the associated wl_surface was destroyed"] - NoSurface = 3, - #[doc = "the buffer does not support explicit synchronization"] - UnsupportedBuffer = 4, - #[doc = "no buffer was attached"] - NoBuffer = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidFence), - 1 => Some(Error::DuplicateFence), - 2 => Some(Error::DuplicateRelease), - 3 => Some(Error::NoSurface), - 4 => Some(Error::UnsupportedBuffer), - 5 => Some(Error::NoBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy synchronization object\n\nDestroy this explicit synchronization object.\n\nAny fence set by this object with set_acquire_fence since the last\ncommit will be discarded by the server. Any fences set by this object\nbefore the last commit are not affected.\n\nzwp_linux_buffer_release_v1 objects created by this object are not\naffected by this request.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the acquire fence\n\nSet the acquire fence that must be signaled before the compositor\nmay sample from the buffer attached with wl_surface.attach. The fence\nis a dma_fence kernel object.\n\nThe acquire fence is double-buffered state, and will be applied on the\nnext wl_surface.commit request for the associated surface. Thus, it\napplies only to the buffer that is attached to the surface at commit\ntime.\n\nIf the provided fd is not a valid dma_fence fd, then an INVALID_FENCE\nerror is raised.\n\nIf a fence has already been attached during the same commit cycle, a\nDUPLICATE_FENCE error is raised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error is\nraised.\n\nIf at surface commit time the attached buffer does not support explicit\nsynchronization, an UNSUPPORTED_BUFFER error is raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - SetAcquireFence { fd: ::std::os::unix::io::RawFd }, - #[doc = "release fence for last-attached buffer\n\nCreate a listener for the release of the buffer attached by the\nclient with wl_surface.attach. See zwp_linux_buffer_release_v1\ndocumentation for more information.\n\nThe release object is double-buffered state, and will be associated\nwith the buffer that is attached to the surface at wl_surface.commit\ntime.\n\nIf a zwp_linux_buffer_release_v1 object has already been requested for\nthe surface in the same commit cycle, a DUPLICATE_RELEASE error is\nraised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error\nis raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - GetRelease {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_acquire_fence", - since: 1, - signature: &[super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "get_release", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetAcquireFence { .. } => 1, - Request::GetRelease { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetAcquireFence { .. } => 1, - Request::GetRelease { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 2 => Some(Object::from_interface::< - super::zwp_linux_buffer_release_v1::ZwpLinuxBufferReleaseV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetAcquireFence { fd } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Fd(fd),], - }, - Request::GetRelease {} => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetAcquireFence { fd } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].h = fd; - f(1, &mut _args_array) - } - Request::GetRelease {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxSurfaceSynchronizationV1(Proxy); - impl AsRef> for ZwpLinuxSurfaceSynchronizationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxSurfaceSynchronizationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxSurfaceSynchronizationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxSurfaceSynchronizationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxSurfaceSynchronizationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxSurfaceSynchronizationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_surface_synchronization_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_surface_synchronization_v1_interface } - } - } - impl ZwpLinuxSurfaceSynchronizationV1 { - #[doc = "destroy synchronization object\n\nDestroy this explicit synchronization object.\n\nAny fence set by this object with set_acquire_fence since the last\ncommit will be discarded by the server. Any fences set by this object\nbefore the last commit are not affected.\n\nzwp_linux_buffer_release_v1 objects created by this object are not\naffected by this request.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the acquire fence\n\nSet the acquire fence that must be signaled before the compositor\nmay sample from the buffer attached with wl_surface.attach. The fence\nis a dma_fence kernel object.\n\nThe acquire fence is double-buffered state, and will be applied on the\nnext wl_surface.commit request for the associated surface. Thus, it\napplies only to the buffer that is attached to the surface at commit\ntime.\n\nIf the provided fd is not a valid dma_fence fd, then an INVALID_FENCE\nerror is raised.\n\nIf a fence has already been attached during the same commit cycle, a\nDUPLICATE_FENCE error is raised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error is\nraised.\n\nIf at surface commit time the attached buffer does not support explicit\nsynchronization, an UNSUPPORTED_BUFFER error is raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - pub fn set_acquire_fence(&self, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::SetAcquireFence { fd: fd }; - self.0.send::(msg, None); - } - #[doc = "release fence for last-attached buffer\n\nCreate a listener for the release of the buffer attached by the\nclient with wl_surface.attach. See zwp_linux_buffer_release_v1\ndocumentation for more information.\n\nThe release object is double-buffered state, and will be associated\nwith the buffer that is attached to the surface at wl_surface.commit\ntime.\n\nIf a zwp_linux_buffer_release_v1 object has already been requested for\nthe surface in the same commit cycle, a DUPLICATE_RELEASE error is\nraised.\n\nIf the associated wl_surface was destroyed, a NO_SURFACE error\nis raised.\n\nIf at surface commit time there is no buffer attached, a NO_BUFFER\nerror is raised."] - pub fn get_release( - &self, - ) -> Main { - let msg = Request::GetRelease {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ACQUIRE_FENCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_RELEASE_SINCE: u32 = 1u32; - static mut zwp_linux_surface_synchronization_v1_requests_get_release_types: - [*const wl_interface; 1] = [unsafe { - &super::zwp_linux_buffer_release_v1::zwp_linux_buffer_release_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_surface_synchronization_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_acquire_fence\0" as *const u8 as *const c_char, - signature: b"h\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_release\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_linux_surface_synchronization_v1_requests_get_release_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_surface_synchronization_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_surface_synchronization_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwp_linux_surface_synchronization_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "buffer release explicit synchronization\n\nThis object is instantiated in response to a\nzwp_linux_surface_synchronization_v1.get_release request.\n\nIt provides an alternative to wl_buffer.release events, providing a\nunique release from a single wl_surface.commit request. The release event\nalso supports explicit synchronization, providing a fence FD for the\nclient to synchronize against.\n\nExactly one event, either a fenced_release or an immediate_release, will\nbe emitted for the wl_surface.commit request. The compositor can choose\nrelease by release which event it uses.\n\nThis event does not replace wl_buffer.release events; servers are still\nrequired to send those events.\n\nOnce a buffer release object has delivered a 'fenced_release' or an\n'immediate_release' event it is automatically destroyed."] -pub mod zwp_linux_buffer_release_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "release buffer with fence\n\nSent when the compositor has finalised its usage of the associated\nbuffer for the relevant commit, providing a dma_fence which will be\nsignaled when all operations by the compositor on that buffer for that\ncommit have finished.\n\nOnce the fence has signaled, and assuming the associated buffer is not\npending release from other wl_surface.commit requests, no additional\nexplicit or implicit synchronization is required to safely reuse or\ndestroy the buffer.\n\nThis event destroys the zwp_linux_buffer_release_v1 object.\n\nThis is a destructor, once received this object cannot be used any longer."] - FencedRelease { fence: ::std::os::unix::io::RawFd }, - #[doc = "release buffer immediately\n\nSent when the compositor has finalised its usage of the associated\nbuffer for the relevant commit, and either performed no operations\nusing it, or has a guarantee that all its operations on that buffer for\nthat commit have finished.\n\nOnce this event is received, and assuming the associated buffer is not\npending release from other wl_surface.commit requests, no additional\nexplicit or implicit synchronization is required to safely reuse or\ndestroy the buffer.\n\nThis event destroys the zwp_linux_buffer_release_v1 object.\n\nThis is a destructor, once received this object cannot be used any longer."] - ImmediateRelease, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "fenced_release", - since: 1, - signature: &[super::ArgumentType::Fd], - destructor: true, - }, - super::MessageDesc { - name: "immediate_release", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Event::FencedRelease { .. } => true, - Event::ImmediateRelease => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::FencedRelease { .. } => 0, - Event::ImmediateRelease => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::FencedRelease { .. } => 1, - Event::ImmediateRelease => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::FencedRelease { - fence: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::ImmediateRelease), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::FencedRelease { fence: _args[0].h }) - } - 1 => Ok(Event::ImmediateRelease), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLinuxBufferReleaseV1(Proxy); - impl AsRef> for ZwpLinuxBufferReleaseV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLinuxBufferReleaseV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLinuxBufferReleaseV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLinuxBufferReleaseV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLinuxBufferReleaseV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLinuxBufferReleaseV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_linux_buffer_release_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_linux_buffer_release_v1_interface } - } - } - impl ZwpLinuxBufferReleaseV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FENCED_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_IMMEDIATE_RELEASE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_linux_buffer_release_v1_events: [wl_message; 2] = [ - wl_message { - name: b"fenced_release\0" as *const u8 as *const c_char, - signature: b"h\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"immediate_release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_linux_buffer_release_v1_interface: wl_interface = wl_interface { - name: b"zwp_linux_buffer_release_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 2, - events: unsafe { &zwp_linux_buffer_release_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs deleted file mode 100644 index 465bd4b..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs +++ /dev/null @@ -1,1019 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "constrain the movement of a pointer\n\nThe global interface exposing pointer constraining functionality. It\nexposes two requests: lock_pointer for locking the pointer to its\nposition, and confine_pointer for locking the pointer to a region.\n\nThe lock_pointer and confine_pointer requests create the objects\nwp_locked_pointer and wp_confined_pointer respectively, and the client can\nuse these objects to interact with the lock.\n\nFor any surface, only one lock or confinement may be active across all\nwl_pointer objects of the same seat. If a lock or confinement is requested\nwhen another lock or confinement is active or requested on the same surface\nand with any of the wl_pointer objects of the same seat, an\n'already_constrained' error will be raised."] -pub mod zwp_pointer_constraints_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "wp_pointer_constraints error values\n\nThese errors can be emitted in response to wp_pointer_constraints\nrequests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "pointer constraint already requested on that surface"] - AlreadyConstrained = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::AlreadyConstrained), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "constraint lifetime\n\nThese values represent different lifetime semantics. They are passed\nas arguments to the factory requests to specify how the constraint\nlifetimes should be managed."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Lifetime { - #[doc = "the pointer constraint is defunct once deactivated\n\nA oneshot pointer constraint will never reactivate once it has been\ndeactivated. See the corresponding deactivation event\n(wp_locked_pointer.unlocked and wp_confined_pointer.unconfined) for\ndetails."] - Oneshot = 1, - #[doc = "the pointer constraint may reactivate\n\nA persistent pointer constraint may again reactivate once it has\nbeen deactivated. See the corresponding deactivation event\n(wp_locked_pointer.unlocked and wp_confined_pointer.unconfined) for\ndetails."] - Persistent = 2, - } - impl Lifetime { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Lifetime::Oneshot), - 2 => Some(Lifetime::Persistent), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pointer constraints manager object\n\nUsed by the client to notify the server that it will no longer use this\npointer constraints object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "lock pointer to a position\n\nThe lock_pointer request lets the client request to disable movements of\nthe virtual pointer (i.e. the cursor), effectively locking the pointer\nto a position. This request may not take effect immediately; in the\nfuture, when the compositor deems implementation-specific constraints\nare satisfied, the pointer lock will be activated and the compositor\nsends a locked event.\n\nThe protocol provides no guarantee that the constraints are ever\nsatisfied, and does not require the compositor to send an error if the\nconstraints cannot ever be satisfied. It is thus possible to request a\nlock that will never activate.\n\nThere may not be another pointer constraint of any kind requested or\nactive on the surface for any of the wl_pointer objects of the seat of\nthe passed pointer when requesting a lock. If there is, an error will be\nraised. See general pointer lock documentation for more details.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the lock to activate. It is up to the compositor whether to\nwarp the pointer or require some kind of user interaction for the lock\nto activate. If the region is null the surface input region is used.\n\nA surface may receive pointer focus without the lock being activated.\n\nThe request creates a new object wp_locked_pointer which is used to\ninteract with the lock as well as receive updates about its state. See\nthe the description of wp_locked_pointer for further information.\n\nNote that while a pointer is locked, the wl_pointer objects of the\ncorresponding seat will not emit any wl_pointer.motion events, but\nrelative motion events will still be emitted via wp_relative_pointer\nobjects of the same seat. wl_pointer.axis and wl_pointer.button events\nare unaffected."] - LockPointer { - surface: super::wl_surface::WlSurface, - pointer: super::wl_pointer::WlPointer, - region: Option, - lifetime: Lifetime, - }, - #[doc = "confine pointer to a region\n\nThe confine_pointer request lets the client request to confine the\npointer cursor to a given region. This request may not take effect\nimmediately; in the future, when the compositor deems implementation-\nspecific constraints are satisfied, the pointer confinement will be\nactivated and the compositor sends a confined event.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the confinement to activate. It is up to the compositor\nwhether to warp the pointer or require some kind of user interaction for\nthe confinement to activate. If the region is null the surface input\nregion is used.\n\nThe request will create a new object wp_confined_pointer which is used\nto interact with the confinement as well as receive updates about its\nstate. See the the description of wp_confined_pointer for further\ninformation."] - ConfinePointer { - surface: super::wl_surface::WlSurface, - pointer: super::wl_pointer::WlPointer, - region: Option, - lifetime: Lifetime, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "lock_pointer", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "confine_pointer", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::LockPointer { .. } => 1, - Request::ConfinePointer { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::LockPointer { .. } => 1, - Request::ConfinePointer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_locked_pointer_v1::ZwpLockedPointerV1, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_confined_pointer_v1::ZwpConfinedPointerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::LockPointer { - surface, - pointer, - region, - lifetime, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(pointer.as_ref().id()), - Argument::Object(region.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(lifetime.to_raw()), - ], - }, - Request::ConfinePointer { - surface, - pointer, - region, - lifetime, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(pointer.as_ref().id()), - Argument::Object(region.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(lifetime.to_raw()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::LockPointer { - surface, - pointer, - region, - lifetime, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = pointer.as_ref().c_ptr() as *mut _; - _args_array[3].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[4].u = lifetime.to_raw(); - f(1, &mut _args_array) - } - Request::ConfinePointer { - surface, - pointer, - region, - lifetime, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = pointer.as_ref().c_ptr() as *mut _; - _args_array[3].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[4].u = lifetime.to_raw(); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerConstraintsV1(Proxy); - impl AsRef> for ZwpPointerConstraintsV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerConstraintsV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerConstraintsV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerConstraintsV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerConstraintsV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerConstraintsV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_constraints_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_constraints_v1_interface } - } - } - impl ZwpPointerConstraintsV1 { - #[doc = "destroy the pointer constraints manager object\n\nUsed by the client to notify the server that it will no longer use this\npointer constraints object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "lock pointer to a position\n\nThe lock_pointer request lets the client request to disable movements of\nthe virtual pointer (i.e. the cursor), effectively locking the pointer\nto a position. This request may not take effect immediately; in the\nfuture, when the compositor deems implementation-specific constraints\nare satisfied, the pointer lock will be activated and the compositor\nsends a locked event.\n\nThe protocol provides no guarantee that the constraints are ever\nsatisfied, and does not require the compositor to send an error if the\nconstraints cannot ever be satisfied. It is thus possible to request a\nlock that will never activate.\n\nThere may not be another pointer constraint of any kind requested or\nactive on the surface for any of the wl_pointer objects of the seat of\nthe passed pointer when requesting a lock. If there is, an error will be\nraised. See general pointer lock documentation for more details.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the lock to activate. It is up to the compositor whether to\nwarp the pointer or require some kind of user interaction for the lock\nto activate. If the region is null the surface input region is used.\n\nA surface may receive pointer focus without the lock being activated.\n\nThe request creates a new object wp_locked_pointer which is used to\ninteract with the lock as well as receive updates about its state. See\nthe the description of wp_locked_pointer for further information.\n\nNote that while a pointer is locked, the wl_pointer objects of the\ncorresponding seat will not emit any wl_pointer.motion events, but\nrelative motion events will still be emitted via wp_relative_pointer\nobjects of the same seat. wl_pointer.axis and wl_pointer.button events\nare unaffected."] - pub fn lock_pointer( - &self, - surface: &super::wl_surface::WlSurface, - pointer: &super::wl_pointer::WlPointer, - region: Option<&super::wl_region::WlRegion>, - lifetime: Lifetime, - ) -> Main { - let msg = Request::LockPointer { - surface: surface.clone(), - pointer: pointer.clone(), - region: region.map(|o| o.clone()), - lifetime: lifetime, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "confine pointer to a region\n\nThe confine_pointer request lets the client request to confine the\npointer cursor to a given region. This request may not take effect\nimmediately; in the future, when the compositor deems implementation-\nspecific constraints are satisfied, the pointer confinement will be\nactivated and the compositor sends a confined event.\n\nThe intersection of the region passed with this request and the input\nregion of the surface is used to determine where the pointer must be\nin order for the confinement to activate. It is up to the compositor\nwhether to warp the pointer or require some kind of user interaction for\nthe confinement to activate. If the region is null the surface input\nregion is used.\n\nThe request will create a new object wp_confined_pointer which is used\nto interact with the confinement as well as receive updates about its\nstate. See the the description of wp_confined_pointer for further\ninformation."] - pub fn confine_pointer( - &self, - surface: &super::wl_surface::WlSurface, - pointer: &super::wl_pointer::WlPointer, - region: Option<&super::wl_region::WlRegion>, - lifetime: Lifetime, - ) -> Main { - let msg = Request::ConfinePointer { - surface: surface.clone(), - pointer: pointer.clone(), - region: region.map(|o| o.clone()), - lifetime: lifetime, - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_LOCK_POINTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CONFINE_POINTER_SINCE: u32 = 1u32; - static mut zwp_pointer_constraints_v1_requests_lock_pointer_types: [*const wl_interface; 5] = [ - unsafe { - &super::zwp_locked_pointer_v1::zwp_locked_pointer_v1_interface as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - unsafe { &super::wl_region::wl_region_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut zwp_pointer_constraints_v1_requests_confine_pointer_types: [*const wl_interface; 5] = [ - unsafe { - &super::zwp_confined_pointer_v1::zwp_confined_pointer_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - unsafe { &super::wl_region::wl_region_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_constraints_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"lock_pointer\0" as *const u8 as *const c_char, - signature: b"noo?ou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_constraints_v1_requests_lock_pointer_types as *const _ }, - }, - wl_message { - name: b"confine_pointer\0" as *const u8 as *const c_char, - signature: b"noo?ou\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_pointer_constraints_v1_requests_confine_pointer_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_constraints_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_constraints_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_pointer_constraints_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "receive relative pointer motion events\n\nThe wp_locked_pointer interface represents a locked pointer state.\n\nWhile the lock of this object is active, the wl_pointer objects of the\nassociated seat will not emit any wl_pointer.motion events.\n\nThis object will send the event 'locked' when the lock is activated.\nWhenever the lock is activated, it is guaranteed that the locked surface\nwill already have received pointer focus and that the pointer will be\nwithin the region passed to the request creating this object.\n\nTo unlock the pointer, send the destroy request. This will also destroy\nthe wp_locked_pointer object.\n\nIf the compositor decides to unlock the pointer the unlocked event is\nsent. See wp_locked_pointer.unlock for details.\n\nWhen unlocking, the compositor may warp the cursor position to the set\ncursor position hint. If it does, it will not result in any relative\nmotion events emitted via wp_relative_pointer.\n\nIf the surface the lock was requested on is destroyed and the lock is not\nyet activated, the wp_locked_pointer object is now defunct and must be\ndestroyed."] -pub mod zwp_locked_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the locked pointer object\n\nDestroy the locked pointer object. If applicable, the compositor will\nunlock the pointer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the pointer cursor position hint\n\nSet the cursor position hint relative to the top left corner of the\nsurface.\n\nIf the client is drawing its own cursor, it should update the position\nhint to the position of its own cursor. A compositor may use this\ninformation to warp the pointer upon unlock in order to avoid pointer\njumps.\n\nThe cursor position hint is double buffered. The new hint will only take\neffect when the associated surface gets it pending state applied. See\nwl_surface.commit for details."] - SetCursorPositionHint { surface_x: f64, surface_y: f64 }, - #[doc = "set a new lock region\n\nSet a new region used to lock the pointer.\n\nThe new lock region is double-buffered. The new lock region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nFor details about the lock region, see wp_locked_pointer."] - SetRegion { - region: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_cursor_position_hint", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "set_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetCursorPositionHint { .. } => 1, - Request::SetRegion { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetCursorPositionHint { .. } => 1, - Request::SetRegion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetCursorPositionHint { - surface_x, - surface_y, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Fixed((surface_x * 256.) as i32), - Argument::Fixed((surface_y * 256.) as i32), - ], - }, - Request::SetRegion { region } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetCursorPositionHint { - surface_x, - surface_y, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].f = (surface_x * 256.) as i32; - _args_array[1].f = (surface_y * 256.) as i32; - f(1, &mut _args_array) - } - Request::SetRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "lock activation event\n\nNotification that the pointer lock of the seat's pointer is activated."] - Locked, - #[doc = "lock deactivation event\n\nNotification that the pointer lock of the seat's pointer is no longer\nactive. If this is a oneshot pointer lock (see\nwp_pointer_constraints.lifetime) this object is now defunct and should\nbe destroyed. If this is a persistent pointer lock (see\nwp_pointer_constraints.lifetime) this pointer lock may again\nreactivate in the future."] - Unlocked, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "locked", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unlocked", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Locked => 0, - Event::Unlocked => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Locked => 1, - Event::Unlocked => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Locked), - 1 => Ok(Event::Unlocked), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Locked), - 1 => Ok(Event::Unlocked), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpLockedPointerV1(Proxy); - impl AsRef> for ZwpLockedPointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpLockedPointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpLockedPointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpLockedPointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpLockedPointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpLockedPointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_locked_pointer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_locked_pointer_v1_interface } - } - } - impl ZwpLockedPointerV1 { - #[doc = "destroy the locked pointer object\n\nDestroy the locked pointer object. If applicable, the compositor will\nunlock the pointer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the pointer cursor position hint\n\nSet the cursor position hint relative to the top left corner of the\nsurface.\n\nIf the client is drawing its own cursor, it should update the position\nhint to the position of its own cursor. A compositor may use this\ninformation to warp the pointer upon unlock in order to avoid pointer\njumps.\n\nThe cursor position hint is double buffered. The new hint will only take\neffect when the associated surface gets it pending state applied. See\nwl_surface.commit for details."] - pub fn set_cursor_position_hint(&self, surface_x: f64, surface_y: f64) -> () { - let msg = Request::SetCursorPositionHint { - surface_x: surface_x, - surface_y: surface_y, - }; - self.0.send::(msg, None); - } - #[doc = "set a new lock region\n\nSet a new region used to lock the pointer.\n\nThe new lock region is double-buffered. The new lock region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nFor details about the lock region, see wp_locked_pointer."] - pub fn set_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_POSITION_HINT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LOCKED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UNLOCKED_SINCE: u32 = 1u32; - static mut zwp_locked_pointer_v1_requests_set_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_locked_pointer_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_cursor_position_hint\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_locked_pointer_v1_requests_set_region_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_locked_pointer_v1_events: [wl_message; 2] = [ - wl_message { - name: b"locked\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unlocked\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_locked_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwp_locked_pointer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_locked_pointer_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_locked_pointer_v1_events as *const _ }, - }; -} -#[doc = "confined pointer object\n\nThe wp_confined_pointer interface represents a confined pointer state.\n\nThis object will send the event 'confined' when the confinement is\nactivated. Whenever the confinement is activated, it is guaranteed that\nthe surface the pointer is confined to will already have received pointer\nfocus and that the pointer will be within the region passed to the request\ncreating this object. It is up to the compositor to decide whether this\nrequires some user interaction and if the pointer will warp to within the\npassed region if outside.\n\nTo unconfine the pointer, send the destroy request. This will also destroy\nthe wp_confined_pointer object.\n\nIf the compositor decides to unconfine the pointer the unconfined event is\nsent. The wp_confined_pointer object is at this point defunct and should\nbe destroyed."] -pub mod zwp_confined_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the confined pointer object\n\nDestroy the confined pointer object. If applicable, the compositor will\nunconfine the pointer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set a new confine region\n\nSet a new region used to confine the pointer.\n\nThe new confine region is double-buffered. The new confine region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nIf the confinement is active when the new confinement region is applied\nand the pointer ends up outside of newly applied region, the pointer may\nwarped to a position within the new confinement region. If warped, a\nwl_pointer.motion event will be emitted, but no\nwp_relative_pointer.relative_motion event.\n\nThe compositor may also, instead of using the new region, unconfine the\npointer.\n\nFor details about the confine region, see wp_confined_pointer."] - SetRegion { - region: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_region", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetRegion { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetRegion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetRegion { region } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - region.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetRegion { region } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = region - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "pointer confined\n\nNotification that the pointer confinement of the seat's pointer is\nactivated."] - Confined, - #[doc = "pointer unconfined\n\nNotification that the pointer confinement of the seat's pointer is no\nlonger active. If this is a oneshot pointer confinement (see\nwp_pointer_constraints.lifetime) this object is now defunct and should\nbe destroyed. If this is a persistent pointer confinement (see\nwp_pointer_constraints.lifetime) this pointer confinement may again\nreactivate in the future."] - Unconfined, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "confined", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unconfined", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Confined => 0, - Event::Unconfined => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Confined => 1, - Event::Unconfined => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Confined), - 1 => Ok(Event::Unconfined), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Confined), - 1 => Ok(Event::Unconfined), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpConfinedPointerV1(Proxy); - impl AsRef> for ZwpConfinedPointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpConfinedPointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpConfinedPointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpConfinedPointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpConfinedPointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpConfinedPointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_confined_pointer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_confined_pointer_v1_interface } - } - } - impl ZwpConfinedPointerV1 { - #[doc = "destroy the confined pointer object\n\nDestroy the confined pointer object. If applicable, the compositor will\nunconfine the pointer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set a new confine region\n\nSet a new region used to confine the pointer.\n\nThe new confine region is double-buffered. The new confine region will\nonly take effect when the associated surface gets its pending state\napplied. See wl_surface.commit for details.\n\nIf the confinement is active when the new confinement region is applied\nand the pointer ends up outside of newly applied region, the pointer may\nwarped to a position within the new confinement region. If warped, a\nwl_pointer.motion event will be emitted, but no\nwp_relative_pointer.relative_motion event.\n\nThe compositor may also, instead of using the new region, unconfine the\npointer.\n\nFor details about the confine region, see wp_confined_pointer."] - pub fn set_region(&self, region: Option<&super::wl_region::WlRegion>) -> () { - let msg = Request::SetRegion { - region: region.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFINED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UNCONFINED_SINCE: u32 = 1u32; - static mut zwp_confined_pointer_v1_requests_set_region_types: [*const wl_interface; 1] = - [unsafe { &super::wl_region::wl_region_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_confined_pointer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_region\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_confined_pointer_v1_requests_set_region_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_confined_pointer_v1_events: [wl_message; 2] = [ - wl_message { - name: b"confined\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unconfined\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_confined_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwp_confined_pointer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_confined_pointer_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_confined_pointer_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs deleted file mode 100644 index fc466f1..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs +++ /dev/null @@ -1,1095 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "touchpad gestures\n\nA global interface to provide semantic touchpad gestures for a given\npointer.\n\nTwo gestures are currently supported: swipe and pinch.\nAll gestures follow a three-stage cycle: begin, update, end and\nare identified by a unique id.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_pointer_gestures_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get swipe gesture\n\nCreate a swipe gesture object. See the\nwl_pointer_gesture_swipe interface for details."] - GetSwipeGesture { - pointer: super::wl_pointer::WlPointer, - }, - #[doc = "get pinch gesture\n\nCreate a pinch gesture object. See the\nwl_pointer_gesture_pinch interface for details."] - GetPinchGesture { - pointer: super::wl_pointer::WlPointer, - }, - #[doc = "destroy the pointer gesture object\n\nDestroy the pointer gesture object. Swipe and pinch objects created via this\ngesture object remain valid.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 2 of the interface"] - Release, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_swipe_gesture", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_pinch_gesture", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "release", - since: 2, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetSwipeGesture { .. } => 0, - Request::GetPinchGesture { .. } => 1, - Request::Release => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetSwipeGesture { .. } => 1, - Request::GetPinchGesture { .. } => 1, - Request::Release => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_pointer_gesture_swipe_v1::ZwpPointerGestureSwipeV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwp_pointer_gesture_pinch_v1::ZwpPointerGesturePinchV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetSwipeGesture { pointer } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - Request::GetPinchGesture { pointer } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - Request::Release => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetSwipeGesture { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::GetPinchGesture { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerGesturesV1(Proxy); - impl AsRef> for ZwpPointerGesturesV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerGesturesV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerGesturesV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerGesturesV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerGesturesV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerGesturesV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_gestures_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_gestures_v1_interface } - } - } - impl ZwpPointerGesturesV1 { - #[doc = "get swipe gesture\n\nCreate a swipe gesture object. See the\nwl_pointer_gesture_swipe interface for details."] - pub fn get_swipe_gesture( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetSwipeGesture { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "get pinch gesture\n\nCreate a pinch gesture object. See the\nwl_pointer_gesture_pinch interface for details."] - pub fn get_pinch_gesture( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetPinchGesture { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the pointer gesture object\n\nDestroy the pointer gesture object. Swipe and pinch objects created via this\ngesture object remain valid.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 2 of the interface."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_SWIPE_GESTURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_PINCH_GESTURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 2u32; - static mut zwp_pointer_gestures_v1_requests_get_swipe_gesture_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwp_pointer_gesture_swipe_v1::zwp_pointer_gesture_swipe_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - static mut zwp_pointer_gestures_v1_requests_get_pinch_gesture_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwp_pointer_gesture_pinch_v1::zwp_pointer_gesture_pinch_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gestures_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"get_swipe_gesture\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gestures_v1_requests_get_swipe_gesture_types as *const _ }, - }, - wl_message { - name: b"get_pinch_gesture\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gestures_v1_requests_get_pinch_gesture_types as *const _ }, - }, - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_gestures_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_gestures_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwp_pointer_gestures_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a swipe gesture object\n\nA swipe gesture object notifies a client about a multi-finger swipe\ngesture detected on an indirect input device such as a touchpad.\nThe gesture is usually initiated by multiple fingers moving in the\nsame direction but once initiated the direction may change.\nThe precise conditions of when such a gesture is detected are\nimplementation-dependent.\n\nA gesture consists of three stages: begin, update (optional) and end.\nThere cannot be multiple simultaneous pinch or swipe gestures on a\nsame pointer/seat, how compositors prevent these situations is\nimplementation-dependent.\n\nA gesture may be cancelled by the compositor or the hardware.\nClients should not consider performing permanent or irreversible\nactions until the end of a gesture has been received."] -pub mod zwp_pointer_gesture_swipe_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pointer swipe gesture object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "multi-finger swipe begin\n\nThis event is sent when a multi-finger swipe gesture is detected\non the device."] - Begin { - serial: u32, - time: u32, - surface: super::wl_surface::WlSurface, - fingers: u32, - }, - #[doc = "multi-finger swipe motion\n\nThis event is sent when a multi-finger swipe gesture changes the\nposition of the logical center.\n\nThe dx and dy coordinates are relative coordinates of the logical\ncenter of the gesture compared to the previous event."] - Update { time: u32, dx: f64, dy: f64 }, - #[doc = "multi-finger swipe end\n\nThis event is sent when a multi-finger swipe gesture ceases to\nbe valid. This may happen when one or more fingers are lifted or\nthe gesture is cancelled.\n\nWhen a gesture is cancelled, the client should undo state changes\ncaused by this gesture. What causes a gesture to be cancelled is\nimplementation-dependent."] - End { - serial: u32, - time: u32, - cancelled: i32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "begin", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "update", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "end", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Int, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Begin { .. } => 0, - Event::Update { .. } => 1, - Event::End { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Begin { .. } => 1, - Event::Update { .. } => 1, - Event::End { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Begin { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - fingers: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Update { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - dx: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::End { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - cancelled: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Begin { - serial: _args[0].u, - time: _args[1].u, - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - fingers: _args[3].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Update { - time: _args[0].u, - dx: (_args[1].f as f64) / 256., - dy: (_args[2].f as f64) / 256., - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::End { - serial: _args[0].u, - time: _args[1].u, - cancelled: _args[2].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerGestureSwipeV1(Proxy); - impl AsRef> for ZwpPointerGestureSwipeV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerGestureSwipeV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerGestureSwipeV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerGestureSwipeV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerGestureSwipeV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerGestureSwipeV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_gesture_swipe_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_gesture_swipe_v1_interface } - } - } - impl ZwpPointerGestureSwipeV1 { - #[doc = "destroy the pointer swipe gesture object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BEGIN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UPDATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_END_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_swipe_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_pointer_gesture_swipe_v1_events_begin_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_swipe_v1_events: [wl_message; 3] = [ - wl_message { - name: b"begin\0" as *const u8 as *const c_char, - signature: b"uuou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gesture_swipe_v1_events_begin_types as *const _ }, - }, - wl_message { - name: b"update\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"end\0" as *const u8 as *const c_char, - signature: b"uui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_gesture_swipe_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_gesture_swipe_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 1, - requests: unsafe { &zwp_pointer_gesture_swipe_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwp_pointer_gesture_swipe_v1_events as *const _ }, - }; -} -#[doc = "a pinch gesture object\n\nA pinch gesture object notifies a client about a multi-finger pinch\ngesture detected on an indirect input device such as a touchpad.\nThe gesture is usually initiated by multiple fingers moving towards\neach other or away from each other, or by two or more fingers rotating\naround a logical center of gravity. The precise conditions of when\nsuch a gesture is detected are implementation-dependent.\n\nA gesture consists of three stages: begin, update (optional) and end.\nThere cannot be multiple simultaneous pinch or swipe gestures on a\nsame pointer/seat, how compositors prevent these situations is\nimplementation-dependent.\n\nA gesture may be cancelled by the compositor or the hardware.\nClients should not consider performing permanent or irreversible\nactions until the end of a gesture has been received."] -pub mod zwp_pointer_gesture_pinch_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pinch gesture object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "multi-finger pinch begin\n\nThis event is sent when a multi-finger pinch gesture is detected\non the device."] - Begin { - serial: u32, - time: u32, - surface: super::wl_surface::WlSurface, - fingers: u32, - }, - #[doc = "multi-finger pinch motion\n\nThis event is sent when a multi-finger pinch gesture changes the\nposition of the logical center, the rotation or the relative scale.\n\nThe dx and dy coordinates are relative coordinates in the\nsurface coordinate space of the logical center of the gesture.\n\nThe scale factor is an absolute scale compared to the\npointer_gesture_pinch.begin event, e.g. a scale of 2 means the fingers\nare now twice as far apart as on pointer_gesture_pinch.begin.\n\nThe rotation is the relative angle in degrees clockwise compared to the previous\npointer_gesture_pinch.begin or pointer_gesture_pinch.update event."] - Update { - time: u32, - dx: f64, - dy: f64, - scale: f64, - rotation: f64, - }, - #[doc = "multi-finger pinch end\n\nThis event is sent when a multi-finger pinch gesture ceases to\nbe valid. This may happen when one or more fingers are lifted or\nthe gesture is cancelled.\n\nWhen a gesture is cancelled, the client should undo state changes\ncaused by this gesture. What causes a gesture to be cancelled is\nimplementation-dependent."] - End { - serial: u32, - time: u32, - cancelled: i32, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "begin", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "update", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "end", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Int, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Begin { .. } => 0, - Event::Update { .. } => 1, - Event::End { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Begin { .. } => 1, - Event::Update { .. } => 1, - Event::End { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Begin { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - fingers: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Update { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - dx: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - scale: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - rotation: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::End { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - cancelled: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Begin { - serial: _args[0].u, - time: _args[1].u, - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - fingers: _args[3].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Update { - time: _args[0].u, - dx: (_args[1].f as f64) / 256., - dy: (_args[2].f as f64) / 256., - scale: (_args[3].f as f64) / 256., - rotation: (_args[4].f as f64) / 256., - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::End { - serial: _args[0].u, - time: _args[1].u, - cancelled: _args[2].i, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPointerGesturePinchV1(Proxy); - impl AsRef> for ZwpPointerGesturePinchV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPointerGesturePinchV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPointerGesturePinchV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPointerGesturePinchV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPointerGesturePinchV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPointerGesturePinchV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_pointer_gesture_pinch_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_pointer_gesture_pinch_v1_interface } - } - } - impl ZwpPointerGesturePinchV1 { - #[doc = "destroy the pinch gesture object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BEGIN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UPDATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_END_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_pinch_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_pointer_gesture_pinch_v1_events_begin_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_pointer_gesture_pinch_v1_events: [wl_message; 3] = [ - wl_message { - name: b"begin\0" as *const u8 as *const c_char, - signature: b"uuou\0" as *const u8 as *const c_char, - types: unsafe { &zwp_pointer_gesture_pinch_v1_events_begin_types as *const _ }, - }, - wl_message { - name: b"update\0" as *const u8 as *const c_char, - signature: b"uffff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"end\0" as *const u8 as *const c_char, - signature: b"uui\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_pointer_gesture_pinch_v1_interface: wl_interface = wl_interface { - name: b"zwp_pointer_gesture_pinch_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 1, - requests: unsafe { &zwp_pointer_gesture_pinch_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwp_pointer_gesture_pinch_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs deleted file mode 100644 index 47a25f5..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs +++ /dev/null @@ -1,633 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 7] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "timed presentation related wl_surface requests\n\nThe main feature of this interface is accurate presentation\ntiming feedback to ensure smooth video playback while maintaining\naudio/video synchronization. Some features use the concept of a\npresentation clock, which is defined in the\npresentation.clock_id event.\n\nA content update for a wl_surface is submitted by a\nwl_surface.commit request. Request 'feedback' associates with\nthe wl_surface.commit and provides feedback on the content\nupdate, particularly the final realized presentation time.\n\n\n\nWhen the final realized presentation time is available, e.g.\nafter a framebuffer flip completes, the requested\npresentation_feedback.presented events are sent. The final\npresentation time can differ from the compositor's predicted\ndisplay update time and the update's target time, especially\nwhen the compositor misses its target vertical blanking period."] -pub mod wp_presentation { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "fatal presentation errors\n\nThese fatal protocol errors may be emitted in response to\nillegal presentation requests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid value in tv_nsec"] - InvalidTimestamp = 0, - #[doc = "invalid flag"] - InvalidFlag = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidTimestamp), - 1 => Some(Error::InvalidFlag), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind from the presentation interface\n\nInforms the server that the client will no longer be using\nthis protocol object. Existing objects created by this object\nare not affected.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "request presentation feedback information\n\nRequest presentation feedback for the current content submission\non the given surface. This creates a new presentation_feedback\nobject, which will deliver the feedback information once. If\nmultiple presentation_feedback objects are created for the same\nsubmission, they will all deliver the same information.\n\nFor details on what information is returned, see the\npresentation_feedback interface."] - Feedback { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "feedback", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Feedback { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Feedback { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::wp_presentation_feedback::WpPresentationFeedback, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Feedback { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(surface.as_ref().id()), Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Feedback { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - _args_array[1].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "clock ID for timestamps\n\nThis event tells the client in which clock domain the\ncompositor interprets the timestamps used by the presentation\nextension. This clock is called the presentation clock.\n\nThe compositor sends this event when the client binds to the\npresentation interface. The presentation clock does not change\nduring the lifetime of the client connection.\n\nThe clock identifier is platform dependent. On Linux/glibc,\nthe identifier value is one of the clockid_t values accepted\nby clock_gettime(). clock_gettime() is defined by\nPOSIX.1-2001.\n\nTimestamps in this clock domain are expressed as tv_sec_hi,\ntv_sec_lo, tv_nsec triples, each component being an unsigned\n32-bit value. Whole seconds are in tv_sec which is a 64-bit\nvalue combined from tv_sec_hi and tv_sec_lo, and the\nadditional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999].\n\nNote that clock_id applies only to the presentation clock,\nand implies nothing about e.g. the timestamps used in the\nWayland core protocol input events.\n\nCompositors should prefer a clock which does not jump and is\nnot slewed e.g. by NTP. The absolute value of the clock is\nirrelevant. Precision of one millisecond or better is\nrecommended. Clients must be able to query the current clock\nvalue directly, not by asking the compositor."] - ClockId { clk_id: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "clock_id", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::ClockId { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::ClockId { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::ClockId { - clk_id: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ClockId { clk_id: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpPresentation(Proxy); - impl AsRef> for WpPresentation { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpPresentation { - #[inline] - fn from(value: Proxy) -> Self { - WpPresentation(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpPresentation) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpPresentation { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpPresentation { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_presentation"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_presentation_interface } - } - } - impl WpPresentation { - #[doc = "unbind from the presentation interface\n\nInforms the server that the client will no longer be using\nthis protocol object. Existing objects created by this object\nare not affected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "request presentation feedback information\n\nRequest presentation feedback for the current content submission\non the given surface. This creates a new presentation_feedback\nobject, which will deliver the feedback information once. If\nmultiple presentation_feedback objects are created for the same\nsubmission, they will all deliver the same information.\n\nFor details on what information is returned, see the\npresentation_feedback interface."] - pub fn feedback( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::Feedback { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOCK_ID_SINCE: u32 = 1u32; - static mut wp_presentation_requests_feedback_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { - &super::wp_presentation_feedback::wp_presentation_feedback_interface - as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_presentation_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"feedback\0" as *const u8 as *const c_char, - signature: b"on\0" as *const u8 as *const c_char, - types: unsafe { &wp_presentation_requests_feedback_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_presentation_events: [wl_message; 1] = [wl_message { - name: b"clock_id\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_presentation_interface: wl_interface = wl_interface { - name: b"wp_presentation\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wp_presentation_requests as *const _ }, - event_count: 1, - events: unsafe { &wp_presentation_events as *const _ }, - }; -} -#[doc = "presentation time feedback event\n\nA presentation_feedback object returns an indication that a\nwl_surface content update has become visible to the user.\nOne object corresponds to one content update submission\n(wl_surface.commit). There are two possible outcomes: the\ncontent update is presented to the user, and a presentation\ntimestamp delivered; or, the user did not see the content\nupdate because it was superseded or its surface destroyed,\nand the content update is discarded.\n\nOnce a presentation_feedback object has delivered a 'presented'\nor 'discarded' event it is automatically destroyed."] -pub mod wp_presentation_feedback { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "bitmask of flags in presented event\n\nThese flags provide information about how the presentation of\nthe related content update was done. The intent is to help\nclients assess the reliability of the feedback and the visual\nquality with respect to possible tearing and timings. The\nflags are:\n\nVSYNC:\nThe presentation was synchronized to the \"vertical retrace\" by\nthe display hardware such that tearing does not happen.\nRelying on user space scheduling is not acceptable for this\nflag. If presentation is done by a copy to the active\nfrontbuffer, then it must guarantee that tearing cannot\nhappen.\n\nHW_CLOCK:\nThe display hardware provided measurements that the hardware\ndriver converted into a presentation timestamp. Sampling a\nclock in user space is not acceptable for this flag.\n\nHW_COMPLETION:\nThe display hardware signalled that it started using the new\nimage content. The opposite of this is e.g. a timer being used\nto guess when the display hardware has switched to the new\nimage content.\n\nZERO_COPY:\nThe presentation of this update was done zero-copy. This means\nthe buffer from the client was given to display hardware as\nis, without copying it. Compositing with OpenGL counts as\ncopying, even if textured directly from the client buffer.\nPossible zero-copy cases include direct scanout of a\nfullscreen surface and a surface on a hardware overlay."] pub struct Kind : u32 { # [doc = "presentation was vsync'd"] const Vsync = 1 ; # [doc = "hardware provided the presentation timestamp"] const HwClock = 2 ; # [doc = "hardware signalled the start of the presentation"] const HwCompletion = 4 ; # [doc = "presentation was done zero-copy"] const ZeroCopy = 8 ; } } - impl Kind { - pub fn from_raw(n: u32) -> Option { - Some(Kind::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "presentation synchronized to this output\n\nAs presentation can be synchronized to only one output at a\ntime, this event tells which output it was. This event is only\nsent prior to the presented event.\n\nAs clients may bind to the same global wl_output multiple\ntimes, this event is sent for each bound instance that matches\nthe synchronized output. If a client has not bound to the\nright wl_output global at all, this event is not sent."] - SyncOutput { output: super::wl_output::WlOutput }, - #[doc = "the content update was displayed\n\nThe associated content update was displayed to the user at the\nindicated time (tv_sec_hi/lo, tv_nsec). For the interpretation of\nthe timestamp, see presentation.clock_id event.\n\nThe timestamp corresponds to the time when the content update\nturned into light the first time on the surface's main output.\nCompositors may approximate this from the framebuffer flip\ncompletion events from the system, and the latency of the\nphysical display path if known.\n\nThis event is preceded by all related sync_output events\ntelling which output's refresh cycle the feedback corresponds\nto, i.e. the main output for the surface. Compositors are\nrecommended to choose the output containing the largest part\nof the wl_surface, or keeping the output they previously\nchose. Having a stable presentation output association helps\nclients predict future output refreshes (vblank).\n\nThe 'refresh' argument gives the compositor's prediction of how\nmany nanoseconds after tv_sec, tv_nsec the very next output\nrefresh may occur. This is to further aid clients in\npredicting future refreshes, i.e., estimating the timestamps\ntargeting the next few vblanks. If such prediction cannot\nusefully be done, the argument is zero.\n\nIf the output does not have a constant refresh rate, explicit\nvideo mode switches excluded, then the refresh argument must\nbe zero.\n\nThe 64-bit value combined from seq_hi and seq_lo is the value\nof the output's vertical retrace counter when the content\nupdate was first scanned out to the display. This value must\nbe compatible with the definition of MSC in\nGLX_OML_sync_control specification. Note, that if the display\npath has a non-zero latency, the time instant specified by\nthis counter may differ from the timestamp's.\n\nIf the output does not have a concept of vertical retrace or a\nrefresh cycle, or the output device is self-refreshing without\na way to query the refresh count, then the arguments seq_hi\nand seq_lo must be zero."] - Presented { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - refresh: u32, - seq_hi: u32, - seq_lo: u32, - flags: Kind, - }, - #[doc = "the content update was not displayed\n\nThe content update was never displayed to the user."] - Discarded, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "sync_output", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "presented", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "discarded", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::SyncOutput { .. } => 0, - Event::Presented { .. } => 1, - Event::Discarded => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::SyncOutput { .. } => 1, - Event::Presented { .. } => 1, - Event::Discarded => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::SyncOutput { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Presented { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - refresh: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - seq_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - seq_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Kind::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Discarded), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::SyncOutput { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 7); - Ok(Event::Presented { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - refresh: _args[3].u, - seq_hi: _args[4].u, - seq_lo: _args[5].u, - flags: Kind::from_raw(_args[6].u).ok_or(())?, - }) - } - 2 => Ok(Event::Discarded), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpPresentationFeedback(Proxy); - impl AsRef> for WpPresentationFeedback { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpPresentationFeedback { - #[inline] - fn from(value: Proxy) -> Self { - WpPresentationFeedback(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpPresentationFeedback) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpPresentationFeedback { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpPresentationFeedback { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_presentation_feedback"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_presentation_feedback_interface } - } - } - impl WpPresentationFeedback {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SYNC_OUTPUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESENTED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DISCARDED_SINCE: u32 = 1u32; - static mut wp_presentation_feedback_events_sync_output_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_presentation_feedback_events: [wl_message; 3] = [ - wl_message { - name: b"sync_output\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &wp_presentation_feedback_events_sync_output_types as *const _ }, - }, - wl_message { - name: b"presented\0" as *const u8 as *const c_char, - signature: b"uuuuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"discarded\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_presentation_feedback_interface: wl_interface = wl_interface { - name: b"wp_presentation_feedback\0" as *const u8 as *const c_char, - version: 1, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 3, - events: unsafe { &wp_presentation_feedback_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs deleted file mode 100644 index 51f9214..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs +++ /dev/null @@ -1,1228 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "X primary selection emulation\n\nThe primary selection device manager is a singleton global object that\nprovides access to the primary selection. It allows to create\nwp_primary_selection_source objects, as well as retrieving the per-seat\nwp_primary_selection_device objects."] -pub mod zwp_primary_selection_device_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - CreateSource {}, - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - GetDevice { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateSource { .. } => 0, - Request::GetDevice { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateSource { .. } => 1, - Request::GetDevice { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_primary_selection_source_v1::ZwpPrimarySelectionSourceV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwp_primary_selection_device_v1::ZwpPrimarySelectionDeviceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionDeviceManagerV1(Proxy); - impl AsRef> for ZwpPrimarySelectionDeviceManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionDeviceManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionDeviceManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionDeviceManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionDeviceManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionDeviceManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_device_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_device_manager_v1_interface } - } - } - impl ZwpPrimarySelectionDeviceManagerV1 { - #[doc = "create a new primary selection source\n\nCreate a new primary selection source."] - pub fn create_source( - &self, - ) -> Main { - let msg = Request::CreateSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a new primary selection device\n\nCreate a new data device for a given seat."] - pub fn get_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the primary selection device manager\n\nDestroy the primary selection device manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DEVICE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_primary_selection_device_manager_v1_requests_create_source_types: - [*const wl_interface; 1] = [unsafe { - &super::zwp_primary_selection_source_v1::zwp_primary_selection_source_v1_interface - as *const wl_interface - }]; - static mut zwp_primary_selection_device_manager_v1_requests_get_device_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_primary_selection_device_v1::zwp_primary_selection_device_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_device_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"create_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_primary_selection_device_manager_v1_requests_create_source_types as *const _ - }, - }, - wl_message { - name: b"get_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_primary_selection_device_manager_v1_requests_get_device_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_device_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_device_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zwp_primary_selection_device_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -pub mod zwp_primary_selection_device_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary\nselection will receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - serial: u32, - }, - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSelection { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSelection { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSelection { source, serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(source.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSelection { source, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wp_primary_selection_offer\n\nIntroduces a new wp_primary_selection_offer object that may be used\nto receive the current primary selection. Immediately following this\nevent, the new wp_primary_selection_offer object will send\nwp_primary_selection_offer.offer events to describe the offered mime\ntypes."] - DataOffer { - offer: Main, - }, - #[doc = "advertise a new primary selection\n\nThe wp_primary_selection_device.selection event is sent to notify the\nclient of a new primary selection. This event is sent after the\nwp_primary_selection.data_offer event introducing this object, and after\nthe offer has announced its mimetypes through\nwp_primary_selection_offer.offer.\n\nThe data_offer is valid until a new offer or NULL is received\nor until the client loses keyboard focus. The client must destroy the\nprevious selection data_offer, if any, upon receiving this event."] - Selection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Selection { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Selection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_primary_selection_offer_v1::ZwpPrimarySelectionOfferV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - offer: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DataOffer { - offer: Main::< - super::zwp_primary_selection_offer_v1::ZwpPrimarySelectionOfferV1, - >::from_c_ptr(_args[0].o as *mut _), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwp_primary_selection_offer_v1 :: ZwpPrimarySelectionOfferV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionDeviceV1(Proxy); - impl AsRef> for ZwpPrimarySelectionDeviceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionDeviceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionDeviceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionDeviceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionDeviceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionDeviceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_device_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_device_v1_interface } - } - } - impl ZwpPrimarySelectionDeviceV1 { - #[doc = "set the primary selection\n\nReplaces the current selection. The previous owner of the primary\nselection will receive a wp_primary_selection_source.cancelled event.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::zwp_primary_selection_source_v1::ZwpPrimarySelectionSourceV1>, - serial: u32, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection device\n\nDestroy the primary selection device.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - static mut zwp_primary_selection_device_v1_requests_set_selection_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwp_primary_selection_source_v1::zwp_primary_selection_source_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_device_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?ou\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_primary_selection_device_v1_requests_set_selection_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_primary_selection_device_v1_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_primary_selection_offer_v1::zwp_primary_selection_offer_v1_interface - as *const wl_interface - }]; - static mut zwp_primary_selection_device_v1_events_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::zwp_primary_selection_offer_v1::zwp_primary_selection_offer_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_device_v1_events: [wl_message; 2] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_primary_selection_device_v1_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_primary_selection_device_v1_events_selection_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_device_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_device_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_primary_selection_device_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_primary_selection_device_v1_events as *const _ }, - }; -} -#[doc = "offer to transfer primary selection contents\n\nA wp_primary_selection_offer represents an offer to transfer the contents\nof the primary selection clipboard to the client. Similar to\nwl_data_offer, the offer also describes the mime types that the data can\nbe converted to and provides the mechanisms for transferring the data\ndirectly to the client."] -pub mod zwp_primary_selection_offer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Receive { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Receive { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered mime type\n\nSent immediately after creating announcing the\nwp_primary_selection_offer through\nwp_primary_selection_device.data_offer. One event is sent per offered\nmime type."] - Offer { mime_type: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionOfferV1(Proxy); - impl AsRef> for ZwpPrimarySelectionOfferV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionOfferV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionOfferV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionOfferV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionOfferV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionOfferV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_offer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_offer_v1_interface } - } - } - impl ZwpPrimarySelectionOfferV1 { - #[doc = "request that the data is transferred\n\nTo transfer the contents of the primary selection clipboard, the client\nissues this request and indicates the mime type that it wants to\nreceive. The transfer happens through the passed file descriptor\n(typically created with the pipe system call). The source client writes\nthe data in the mime type representation requested and then closes the\nfile descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\ncloses its end, at which point the transfer is complete."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection offer\n\nDestroy the primary selection offer.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_offer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_offer_v1_events: [wl_message; 1] = [wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_offer_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_offer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_primary_selection_offer_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_primary_selection_offer_v1_events as *const _ }, - }; -} -#[doc = "offer to replace the contents of the primary selection\n\nThe source side of a wp_primary_selection_offer, it provides a way to\ndescribe the offered data and respond to requests to transfer the\nrequested contents of the primary selection clipboard."] -pub mod zwp_primary_selection_source_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - Offer { mime_type: String }, - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "send the primary selection contents\n\nRequest for the current primary selection contents from the client.\nSend the specified mime type over the passed file descriptor, then\nclose it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "request for primary selection contents was canceled\n\nThis primary selection source is no longer valid. The client should\nclean up and destroy this primary selection source."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Send { .. } => 0, - Event::Cancelled => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Send { .. } => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 1 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpPrimarySelectionSourceV1(Proxy); - impl AsRef> for ZwpPrimarySelectionSourceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpPrimarySelectionSourceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpPrimarySelectionSourceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpPrimarySelectionSourceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpPrimarySelectionSourceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpPrimarySelectionSourceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_primary_selection_source_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_primary_selection_source_v1_interface } - } - } - impl ZwpPrimarySelectionSourceV1 { - #[doc = "add an offered mime type\n\nThis request adds a mime type to the set of mime types advertised to\ntargets. Can be called several times to offer multiple types."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the primary selection source\n\nDestroy the primary selection source.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_source_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_primary_selection_source_v1_events: [wl_message; 2] = [ - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_primary_selection_source_v1_interface: wl_interface = wl_interface { - name: b"zwp_primary_selection_source_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_primary_selection_source_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_primary_selection_source_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs deleted file mode 100644 index 177d77f..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs +++ /dev/null @@ -1,532 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 6] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "get relative pointer objects\n\nA global interface used for getting the relative pointer object for a\ngiven pointer."] -pub mod zwp_relative_pointer_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the relative pointer manager object\n\nUsed by the client to notify the server that it will no longer use this\nrelative pointer manager object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "get a relative pointer object\n\nCreate a relative pointer interface given a wl_pointer object. See the\nwp_relative_pointer interface for more details."] - GetRelativePointer { - pointer: super::wl_pointer::WlPointer, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_relative_pointer", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetRelativePointer { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetRelativePointer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_relative_pointer_v1::ZwpRelativePointerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetRelativePointer { pointer } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(pointer.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetRelativePointer { pointer } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = pointer.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpRelativePointerManagerV1(Proxy); - impl AsRef> for ZwpRelativePointerManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpRelativePointerManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpRelativePointerManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpRelativePointerManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpRelativePointerManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpRelativePointerManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_relative_pointer_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_relative_pointer_manager_v1_interface } - } - } - impl ZwpRelativePointerManagerV1 { - #[doc = "destroy the relative pointer manager object\n\nUsed by the client to notify the server that it will no longer use this\nrelative pointer manager object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "get a relative pointer object\n\nCreate a relative pointer interface given a wl_pointer object. See the\nwp_relative_pointer interface for more details."] - pub fn get_relative_pointer( - &self, - pointer: &super::wl_pointer::WlPointer, - ) -> Main { - let msg = Request::GetRelativePointer { - pointer: pointer.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_RELATIVE_POINTER_SINCE: u32 = 1u32; - static mut zwp_relative_pointer_manager_v1_requests_get_relative_pointer_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwp_relative_pointer_v1::zwp_relative_pointer_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_pointer::wl_pointer_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_relative_pointer_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_relative_pointer\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_relative_pointer_manager_v1_requests_get_relative_pointer_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_relative_pointer_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_relative_pointer_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_relative_pointer_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "relative pointer object\n\nA wp_relative_pointer object is an extension to the wl_pointer interface\nused for emitting relative pointer events. It shares the same focus as\nwl_pointer objects of the same seat and will only emit events when it has\nfocus."] -pub mod zwp_relative_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the relative pointer object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "relative pointer motion\n\nRelative x/y pointer motion from the pointer of the seat associated with\nthis object.\n\nA relative motion is in the same dimension as regular wl_pointer motion\nevents, except they do not represent an absolute position. For example,\nmoving a pointer from (x, y) to (x', y') would have the equivalent\nrelative motion (x' - x, y' - y). If a pointer motion caused the\nabsolute pointer position to be clipped by for example the edge of the\nmonitor, the relative motion is unaffected by the clipping and will\nrepresent the unclipped motion.\n\nThis event also contains non-accelerated motion deltas. The\nnon-accelerated delta is, when applicable, the regular pointer motion\ndelta as it was before having applied motion acceleration and other\ntransformations such as normalization.\n\nNote that the non-accelerated delta does not represent 'raw' events as\nthey were read from some device. Pointer motion acceleration is device-\nand configuration-specific and non-accelerated deltas and accelerated\ndeltas may have the same value on some devices.\n\nRelative motions are not coupled to wl_pointer.motion events, and can be\nsent in combination with such events, but also independently. There may\nalso be scenarios where wl_pointer.motion is sent, but there is no\nrelative motion. The order of an absolute and relative motion event\noriginating from the same physical motion is not guaranteed.\n\nIf the client needs button events or focus state, it can receive them\nfrom a wl_pointer object of the same seat that the wp_relative_pointer\nobject is associated with."] - RelativeMotion { - utime_hi: u32, - utime_lo: u32, - dx: f64, - dy: f64, - dx_unaccel: f64, - dy_unaccel: f64, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "relative_motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::RelativeMotion { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::RelativeMotion { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::RelativeMotion { - utime_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - utime_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - dx: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dx_unaccel: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - dy_unaccel: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 6); - Ok(Event::RelativeMotion { - utime_hi: _args[0].u, - utime_lo: _args[1].u, - dx: (_args[2].f as f64) / 256., - dy: (_args[3].f as f64) / 256., - dx_unaccel: (_args[4].f as f64) / 256., - dy_unaccel: (_args[5].f as f64) / 256., - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpRelativePointerV1(Proxy); - impl AsRef> for ZwpRelativePointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpRelativePointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpRelativePointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpRelativePointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpRelativePointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpRelativePointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_relative_pointer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_relative_pointer_v1_interface } - } - } - impl ZwpRelativePointerV1 { - #[doc = "release the relative pointer object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RELATIVE_MOTION_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_relative_pointer_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_relative_pointer_v1_events: [wl_message; 1] = [wl_message { - name: b"relative_motion\0" as *const u8 as *const c_char, - signature: b"uuffff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_relative_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwp_relative_pointer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_relative_pointer_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwp_relative_pointer_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs deleted file mode 100644 index 34ff7bf..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs +++ /dev/null @@ -1,563 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "Server side window decoration manager\n\nThis interface allows to coordinate whether the server should create\na server-side window decoration around a wl_surface representing a\nshell surface (wl_shell_surface or similar). By announcing support\nfor this interface the server indicates that it supports server\nside decorations.\n\nUse in conjunction with zxdg_decoration_manager_v1 is undefined."] -pub mod org_kde_kwin_server_decoration_manager { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "Possible values to use in request_mode and the event mode."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "Undecorated: The surface is not decorated at all, neither server nor client-side. An example is a popup surface which should not be decorated."] - None = 0, - #[doc = "Client-side decoration: The decoration is part of the surface and the client."] - Client = 1, - #[doc = "Server-side decoration: The server embeds the surface into a decoration frame."] - Server = 2, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Mode::None), - 1 => Some(Mode::Client), - 2 => Some(Mode::Server), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Create a server-side decoration object for a given surface\n\nWhen a client creates a server-side decoration object it indicates\nthat it supports the protocol. The client is supposed to tell the\nserver whether it wants server-side decorations or will provide\nclient-side decorations.\n\nIf the client does not create a server-side decoration object for\na surface the server interprets this as lack of support for this\nprotocol and considers it as client-side decorated. Nevertheless a\nclient-side decorated surface should use this protocol to indicate\nto the server that it does not want a server-side deco."] - Create { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "create", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Create { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Create { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::org_kde_kwin_server_decoration::OrgKdeKwinServerDecoration, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Create { surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Create { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "The default mode used on the server\n\nThis event is emitted directly after binding the interface. It contains\nthe default mode for the decoration. When a new server decoration object\nis created this new object will be in the default mode until the first\nrequest_mode is requested.\n\nThe server may change the default mode at any time."] - DefaultMode { mode: Mode }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "default_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DefaultMode { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::DefaultMode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DefaultMode { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::DefaultMode { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct OrgKdeKwinServerDecorationManager(Proxy); - impl AsRef> for OrgKdeKwinServerDecorationManager { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for OrgKdeKwinServerDecorationManager { - #[inline] - fn from(value: Proxy) -> Self { - OrgKdeKwinServerDecorationManager(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: OrgKdeKwinServerDecorationManager) -> Self { - value.0 - } - } - impl std::fmt::Debug for OrgKdeKwinServerDecorationManager { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for OrgKdeKwinServerDecorationManager { - type Request = Request; - type Event = Event; - const NAME: &'static str = "org_kde_kwin_server_decoration_manager"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &org_kde_kwin_server_decoration_manager_interface } - } - } - impl OrgKdeKwinServerDecorationManager { - #[doc = "Create a server-side decoration object for a given surface\n\nWhen a client creates a server-side decoration object it indicates\nthat it supports the protocol. The client is supposed to tell the\nserver whether it wants server-side decorations or will provide\nclient-side decorations.\n\nIf the client does not create a server-side decoration object for\na surface the server interprets this as lack of support for this\nprotocol and considers it as client-side decorated. Nevertheless a\nclient-side decorated surface should use this protocol to indicate\nto the server that it does not want a server-side deco."] - pub fn create( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::Create { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DEFAULT_MODE_SINCE: u32 = 1u32; - static mut org_kde_kwin_server_decoration_manager_requests_create_types: [*const wl_interface; - 2] = [ - unsafe { - &super::org_kde_kwin_server_decoration::org_kde_kwin_server_decoration_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_manager_requests: [wl_message; 1] = - [wl_message { - name: b"create\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &org_kde_kwin_server_decoration_manager_requests_create_types as *const _ - }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_manager_events: [wl_message; 1] = [wl_message { - name: b"default_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_manager_interface: wl_interface = wl_interface { - name: b"org_kde_kwin_server_decoration_manager\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &org_kde_kwin_server_decoration_manager_requests as *const _ }, - event_count: 1, - events: unsafe { &org_kde_kwin_server_decoration_manager_events as *const _ }, - }; -} -pub mod org_kde_kwin_server_decoration { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "Possible values to use in request_mode and the event mode."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "Undecorated: The surface is not decorated at all, neither server nor client-side. An example is a popup surface which should not be decorated."] - None = 0, - #[doc = "Client-side decoration: The decoration is part of the surface and the client."] - Client = 1, - #[doc = "Server-side decoration: The server embeds the surface into a decoration frame."] - Server = 2, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Mode::None), - 1 => Some(Mode::Client), - 2 => Some(Mode::Server), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the server decoration object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Release, - #[doc = "The decoration mode the surface wants to use."] - RequestMode { mode: Mode }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "release", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "request_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Release => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Release => 0, - Request::RequestMode { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Release => 1, - Request::RequestMode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Release => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::RequestMode { mode } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Uint(mode.to_raw()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Release => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::RequestMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = mode.to_raw(); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "The new decoration mode applied by the server\n\nThis event is emitted directly after the decoration is created and\nrepresents the base decoration policy by the server. E.g. a server\nwhich wants all surfaces to be client-side decorated will send Client,\na server which wants server-side decoration will send Server.\n\nThe client can request a different mode through the decoration request.\nThe server will acknowledge this by another event with the same mode. So\neven if a server prefers server-side decoration it's possible to force a\nclient-side decoration.\n\nThe server may emit this event at any time. In this case the client can\nagain request a different mode. It's the responsibility of the server to\nprevent a feedback loop."] - Mode { mode: Mode }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Mode { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Mode { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Mode { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct OrgKdeKwinServerDecoration(Proxy); - impl AsRef> for OrgKdeKwinServerDecoration { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for OrgKdeKwinServerDecoration { - #[inline] - fn from(value: Proxy) -> Self { - OrgKdeKwinServerDecoration(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: OrgKdeKwinServerDecoration) -> Self { - value.0 - } - } - impl std::fmt::Debug for OrgKdeKwinServerDecoration { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for OrgKdeKwinServerDecoration { - type Request = Request; - type Event = Event; - const NAME: &'static str = "org_kde_kwin_server_decoration"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &org_kde_kwin_server_decoration_interface } - } - } - impl OrgKdeKwinServerDecoration { - #[doc = "release the server decoration object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn release(&self) -> () { - let msg = Request::Release; - self.0.send::(msg, None); - } - #[doc = "The decoration mode the surface wants to use."] - pub fn request_mode(&self, mode: Mode) -> () { - let msg = Request::RequestMode { mode: mode }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RELEASE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_REQUEST_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_requests: [wl_message; 2] = [ - wl_message { - name: b"release\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"request_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_events: [wl_message; 1] = [wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut org_kde_kwin_server_decoration_interface: wl_interface = wl_interface { - name: b"org_kde_kwin_server_decoration\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &org_kde_kwin_server_decoration_requests as *const _ }, - event_count: 1, - events: unsafe { &org_kde_kwin_server_decoration_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs deleted file mode 100644 index 68e7b9a..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs +++ /dev/null @@ -1,1973 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "controller object for graphic tablet devices\n\nAn object that provides access to the graphics tablets available on this\nsystem. All tablets are associated with a seat, to get access to the\nactual tablets, use wp_tablet_manager.get_tablet_seat."] -pub mod zwp_tablet_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - GetTabletSeat { seat: super::wl_seat::WlSeat }, - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_tablet_seat", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetTabletSeat { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetTabletSeat { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_tablet_seat_v1::ZwpTabletSeatV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetTabletSeat { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetTabletSeat { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletManagerV1(Proxy); - impl AsRef> for ZwpTabletManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_manager_v1_interface } - } - } - impl ZwpTabletManagerV1 { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - pub fn get_tablet_seat( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetTabletSeat { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TABLET_SEAT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_tablet_manager_v1_requests_get_tablet_seat_types: [*const wl_interface; 2] = [ - unsafe { &super::zwp_tablet_seat_v1::zwp_tablet_seat_v1_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_tablet_seat\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_manager_v1_requests_get_tablet_seat_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "controller object for graphic tablet devices of a seat\n\nAn object that provides access to the graphics tablets available on this\nseat. After binding to this interface, the compositor sends a set of\nwp_tablet_seat.tablet_added and wp_tablet_seat.tool_added events."] -pub mod zwp_tablet_seat_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "new device notification\n\nThis event is sent whenever a new tablet becomes available on this\nseat. This event only provides the object id of the tablet, any\nstatic information about the tablet (device name, vid/pid, etc.) is\nsent through the wp_tablet interface."] - TabletAdded { - id: Main, - }, - #[doc = "a new tool has been used with a tablet\n\nThis event is sent whenever a tool that has not previously been used\nwith a tablet comes into use. This event only provides the object id\nof the tool; any static information about the tool (capabilities,\ntype, etc.) is sent through the wp_tablet_tool interface."] - ToolAdded { - id: Main, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "tablet_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "tool_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::TabletAdded { .. } => 0, - Event::ToolAdded { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::TabletAdded { .. } => 1, - Event::ToolAdded { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::< - super::zwp_tablet_tool_v1::ZwpTabletToolV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::TabletAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::ToolAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::TabletAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ToolAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletSeatV1(Proxy); - impl AsRef> for ZwpTabletSeatV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletSeatV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletSeatV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletSeatV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletSeatV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletSeatV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_seat_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_seat_v1_interface } - } - } - impl ZwpTabletSeatV1 { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TABLET_ADDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TOOL_ADDED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_tablet_seat_v1_events_tablet_added_types: [*const wl_interface; 1] = - [unsafe { &super::zwp_tablet_v1::zwp_tablet_v1_interface as *const wl_interface }]; - static mut zwp_tablet_seat_v1_events_tool_added_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_tool_v1::zwp_tablet_tool_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v1_events: [wl_message; 2] = [ - wl_message { - name: b"tablet_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v1_events_tablet_added_types as *const _ }, - }, - wl_message { - name: b"tool_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v1_events_tool_added_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_seat_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_seat_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_seat_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwp_tablet_seat_v1_events as *const _ }, - }; -} -#[doc = "a physical tablet tool\n\nAn object that represents a physical tool that has been, or is\ncurrently in use with a tablet in this seat. Each wp_tablet_tool\nobject stays valid until the client destroys it; the compositor\nreuses the wp_tablet_tool object to indicate that the object's\nrespective physical tool has come into proximity of a tablet again.\n\nA wp_tablet_tool object's relation to a physical tool depends on the\ntablet's ability to report serial numbers. If the tablet supports\nthis capability, then the object represents a specific physical tool\nand can be identified even when used on multiple tablets.\n\nA tablet tool has a number of static characteristics, e.g. tool type,\nhardware_serial and capabilities. These capabilities are sent in an\nevent sequence after the wp_tablet_seat.tool_added event before any\nactual events from this tool. This initial event sequence is\nterminated by a wp_tablet_tool.done event.\n\nTablet tool events are grouped by wp_tablet_tool.frame events.\nAny events received before a wp_tablet_tool.frame event should be\nconsidered part of the same hardware state change."] -pub mod zwp_tablet_tool_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "a physical tool type\n\nDescribes the physical type of a tool. The physical type of a tool\ngenerally defines its base usage.\n\nThe mouse tool represents a mouse-shaped tool that is not a relative\ndevice but bound to the tablet's surface, providing absolute\ncoordinates.\n\nThe lens tool is a mouse-shaped tool with an attached lens to\nprovide precision focus."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Type { - #[doc = "Pen"] - Pen = 320, - #[doc = "Eraser"] - Eraser = 321, - #[doc = "Brush"] - Brush = 322, - #[doc = "Pencil"] - Pencil = 323, - #[doc = "Airbrush"] - Airbrush = 324, - #[doc = "Finger"] - Finger = 325, - #[doc = "Mouse"] - Mouse = 326, - #[doc = "Lens"] - Lens = 327, - } - impl Type { - pub fn from_raw(n: u32) -> Option { - match n { - 320 => Some(Type::Pen), - 321 => Some(Type::Eraser), - 322 => Some(Type::Brush), - 323 => Some(Type::Pencil), - 324 => Some(Type::Airbrush), - 325 => Some(Type::Finger), - 326 => Some(Type::Mouse), - 327 => Some(Type::Lens), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "capability flags for a tool\n\nDescribes extra capabilities on a tablet.\n\nAny tool must provide x and y values, extra axes are\ndevice-specific."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Capability { - #[doc = "Tilt axes"] - Tilt = 1, - #[doc = "Pressure axis"] - Pressure = 2, - #[doc = "Distance axis"] - Distance = 3, - #[doc = "Z-rotation axis"] - Rotation = 4, - #[doc = "Slider axis"] - Slider = 5, - #[doc = "Wheel axis"] - Wheel = 6, - } - impl Capability { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Capability::Tilt), - 2 => Some(Capability::Pressure), - 3 => Some(Capability::Distance), - 4 => Some(Capability::Rotation), - 5 => Some(Capability::Slider), - 6 => Some(Capability::Wheel), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical button state\n\nDescribes the physical state of a button that produced the button event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "button is not pressed"] - Released = 0, - #[doc = "button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a cursor. The role\nassigned by this request is the same as assigned by\nwl_pointer.set_cursor meaning the same surface can be\nused both as a wl_pointer cursor and a wp_tablet cursor. If the\nsurface already has another role, it raises a protocol error.\nThe surface may be used on multiple tablets and across multiple\nseats."] - SetCursor { - serial: u32, - surface: Option, - hotspot_x: i32, - hotspot_y: i32, - }, - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_cursor", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetCursor { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetCursor { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(hotspot_x), - Argument::Int(hotspot_y), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].i = hotspot_x; - _args_array[3].i = hotspot_y; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tool type\n\nThe tool type is the high-level type of the tool and usually decides\nthe interaction expected from this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Type { tool_type: Type }, - #[doc = "unique hardware serial number of the tool\n\nIf the physical tool can be identified by a unique 64-bit serial\nnumber, this event notifies the client of this serial number.\n\nIf multiple tablets are available in the same seat and the tool is\nuniquely identifiable by the serial number, that tool may move\nbetween tablets.\n\nOtherwise, if the tool has no serial number and this event is\nmissing, the tool is tied to the tablet it first comes into\nproximity with. Even if the physical tool is used on multiple\ntablets, separate wp_tablet_tool objects will be created, one per\ntablet.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareSerial { - hardware_serial_hi: u32, - hardware_serial_lo: u32, - }, - #[doc = "hardware id notification in Wacom's format\n\nThis event notifies the client of a hardware id available on this tool.\n\nThe hardware id is a device-specific 64-bit id that provides extra\ninformation about the tool in use, beyond the wl_tool.type\nenumeration. The format of the id is specific to tablets made by\nWacom Inc. For example, the hardware id of a Wacom Grip\nPen (a stylus) is 0x802.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareIdWacom { - hardware_id_hi: u32, - hardware_id_lo: u32, - }, - #[doc = "tool capability notification\n\nThis event notifies the client of any capabilities of this tool,\nbeyond the main set of x/y axes and tip up/down detection.\n\nOne event is sent for each extra capability available on this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Capability { capability: Capability }, - #[doc = "tool description events sequence complete\n\nThis event signals the end of the initial burst of descriptive\nevents. A client may consider the static description of the tool to\nbe complete and finalize initialization of the tool."] - Done, - #[doc = "tool removed\n\nThis event is sent when the tool is removed from the system and will\nsend no further events. Should the physical tool come back into\nproximity later, a new wp_tablet_tool object will be created.\n\nIt is compositor-dependent when a tool is removed. A compositor may\nremove a tool on proximity out, tablet removal or any other reason.\nA compositor may also keep a tool alive until shutdown.\n\nIf the tool is currently in proximity, a proximity_out event will be\nsent before the removed event. See wp_tablet_tool.proximity_out for\nthe handling of any buttons logically down.\n\nWhen this event is received, the client must wp_tablet_tool.destroy\nthe object."] - Removed, - #[doc = "proximity in event\n\nNotification that this tool is focused on a certain surface.\n\nThis event can be received when the tool has moved from one surface to\nanother, or when the tool has come back into proximity above the\nsurface.\n\nIf any button is logically down when the tool comes into proximity,\nthe respective button event is sent after the proximity_in event but\nwithin the same frame as the proximity_in event."] - ProximityIn { - serial: u32, - tablet: super::zwp_tablet_v1::ZwpTabletV1, - surface: super::wl_surface::WlSurface, - }, - #[doc = "proximity out event\n\nNotification that this tool has either left proximity, or is no\nlonger focused on a certain surface.\n\nWhen the tablet tool leaves proximity of the tablet, button release\nevents are sent for each button that was held down at the time of\nleaving proximity. These events are sent before the proximity_out\nevent but within the same wp_tablet.frame.\n\nIf the tool stays within proximity of the tablet, but the focus\nchanges from one surface to another, a button release event may not\nbe sent until the button is actually released or the tool leaves the\nproximity of the tablet."] - ProximityOut, - #[doc = "tablet tool is making contact\n\nSent whenever the tablet tool comes in contact with the surface of the\ntablet.\n\nIf the tool is already in contact with the tablet when entering the\ninput region, the client owning said region will receive a\nwp_tablet.proximity_in event, followed by a wp_tablet.down\nevent and a wp_tablet.frame event.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool in\nlogical contact until a minimum physical pressure threshold is\nexceeded."] - Down { serial: u32 }, - #[doc = "tablet tool is no longer making contact\n\nSent whenever the tablet tool stops making contact with the surface of\nthe tablet, or when the tablet tool moves out of the input region\nand the compositor grab (if any) is dismissed.\n\nIf the tablet tool moves out of the input region while in contact\nwith the surface of the tablet and the compositor does not have an\nongoing grab on the surface, the client owning said region will\nreceive a wp_tablet.up event, followed by a wp_tablet.proximity_out\nevent and a wp_tablet.frame event. If the compositor has an ongoing\ngrab on this device, this event sequence is sent whenever the grab\nis dismissed in the future.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool out\nof logical contact until physical pressure falls below a specific\nthreshold."] - Up, - #[doc = "motion event\n\nSent whenever a tablet tool moves."] - Motion { x: f64, y: f64 }, - #[doc = "pressure change event\n\nSent whenever the pressure axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that pressure may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Pressure { pressure: u32 }, - #[doc = "distance change event\n\nSent whenever the distance axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that distance may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Distance { distance: u32 }, - #[doc = "tilt change event\n\nSent whenever one or both of the tilt axes on a tool change. Each tilt\nvalue is in 0.01 of a degree, relative to the z-axis of the tablet.\nThe angle is positive when the top of a tool tilts along the\npositive x or y axis."] - Tilt { tilt_x: i32, tilt_y: i32 }, - #[doc = "z-rotation change event\n\nSent whenever the z-rotation axis on the tool changes. The\nrotation value is in 0.01 of a degree clockwise from the tool's\nlogical neutral position."] - Rotation { degrees: i32 }, - #[doc = "Slider position change event\n\nSent whenever the slider position on the tool changes. The\nvalue is normalized between -65535 and 65535, with 0 as the logical\nneutral position of the slider.\n\nThe slider is available on e.g. the Wacom Airbrush tool."] - Slider { position: i32 }, - #[doc = "Wheel delta event\n\nSent whenever the wheel on the tool emits an event. This event\ncontains two values for the same axis change. The degrees value is\nin 0.01 of a degree in the same orientation as the\nwl_pointer.vertical_scroll axis. The clicks value is in discrete\nlogical clicks of the mouse wheel. This value may be zero if the\nmovement of the wheel was less than one logical click.\n\nClients should choose either value and avoid mixing degrees and\nclicks. The compositor may accumulate values smaller than a logical\nclick and emulate click events when a certain threshold is met.\nThus, wl_tablet_tool.wheel events with non-zero clicks values may\nhave different degrees values."] - Wheel { degrees: i32, clicks: i32 }, - #[doc = "button event\n\nSent whenever a button on the tool is pressed or released.\n\nIf a button is held down when the tool moves in or out of proximity,\nbutton events are generated by the compositor. See\nwp_tablet_tool.proximity_in and wp_tablet_tool.proximity_out for\ndetails."] - Button { - serial: u32, - button: u32, - state: ButtonState, - }, - #[doc = "frame event\n\nMarks the end of a series of axis and/or button updates from the\ntablet. The Wayland protocol requires axis updates to be sent\nsequentially, however all events within a frame should be considered\none hardware event."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "type", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_serial", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_id_wacom", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "capability", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "proximity_in", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "proximity_out", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "down", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "up", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "pressure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "distance", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "tilt", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "rotation", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "slider", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "wheel", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Type { .. } => 0, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 2, - Event::Capability { .. } => 3, - Event::Done => 4, - Event::Removed => 5, - Event::ProximityIn { .. } => 6, - Event::ProximityOut => 7, - Event::Down { .. } => 8, - Event::Up => 9, - Event::Motion { .. } => 10, - Event::Pressure { .. } => 11, - Event::Distance { .. } => 12, - Event::Tilt { .. } => 13, - Event::Rotation { .. } => 14, - Event::Slider { .. } => 15, - Event::Wheel { .. } => 16, - Event::Button { .. } => 17, - Event::Frame { .. } => 18, - } - } - fn since(&self) -> u32 { - match *self { - Event::Type { .. } => 1, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 1, - Event::Capability { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - Event::ProximityIn { .. } => 1, - Event::ProximityOut => 1, - Event::Down { .. } => 1, - Event::Up => 1, - Event::Motion { .. } => 1, - Event::Pressure { .. } => 1, - Event::Distance { .. } => 1, - Event::Tilt { .. } => 1, - Event::Rotation { .. } => 1, - Event::Slider { .. } => 1, - Event::Wheel { .. } => 1, - Event::Button { .. } => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Type { - tool_type: { - if let Some(Argument::Uint(val)) = args.next() { - Type::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareSerial { - hardware_serial_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_serial_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareIdWacom { - hardware_id_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_id_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capability { - capability: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::ProximityIn { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tablet: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::Down { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 9 => Ok(Event::Up), - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Pressure { - pressure: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::Distance { - distance: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 13 => { - let mut args = msg.args.into_iter(); - Ok(Event::Tilt { - tilt_x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tilt_y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 14 => { - let mut args = msg.args.into_iter(); - Ok(Event::Rotation { - degrees: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 15 => { - let mut args = msg.args.into_iter(); - Ok(Event::Slider { - position: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 16 => { - let mut args = msg.args.into_iter(); - Ok(Event::Wheel { - degrees: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - clicks: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 17 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 18 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Type { - tool_type: Type::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareSerial { - hardware_serial_hi: _args[0].u, - hardware_serial_lo: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareIdWacom { - hardware_id_hi: _args[0].u, - hardware_id_lo: _args[1].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capability { - capability: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::ProximityIn { - serial: _args[0].u, - tablet: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Down { serial: _args[0].u }) - } - 9 => Ok(Event::Up), - 10 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Motion { - x: (_args[0].f as f64) / 256., - y: (_args[1].f as f64) / 256., - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Pressure { - pressure: _args[0].u, - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Distance { - distance: _args[0].u, - }) - } - 13 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Tilt { - tilt_x: _args[0].i, - tilt_y: _args[1].i, - }) - } - 14 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Rotation { - degrees: _args[0].i, - }) - } - 15 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Slider { - position: _args[0].i, - }) - } - 16 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Wheel { - degrees: _args[0].i, - clicks: _args[1].i, - }) - } - 17 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Button { - serial: _args[0].u, - button: _args[1].u, - state: ButtonState::from_raw(_args[2].u).ok_or(())?, - }) - } - 18 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletToolV1(Proxy); - impl AsRef> for ZwpTabletToolV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletToolV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletToolV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletToolV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletToolV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletToolV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_tool_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_tool_v1_interface } - } - } - impl ZwpTabletToolV1 { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a cursor. The role\nassigned by this request is the same as assigned by\nwl_pointer.set_cursor meaning the same surface can be\nused both as a wl_pointer cursor and a wp_tablet cursor. If the\nsurface already has another role, it raises a protocol error.\nThe surface may be used on multiple tablets and across multiple\nseats."] - pub fn set_cursor( - &self, - serial: u32, - surface: Option<&super::wl_surface::WlSurface>, - hotspot_x: i32, - hotspot_y: i32, - ) -> () { - let msg = Request::SetCursor { - serial: serial, - surface: surface.map(|o| o.clone()), - hotspot_x: hotspot_x, - hotspot_y: hotspot_y, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_SERIAL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_ID_WACOM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_IN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_OUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DOWN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESSURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DISTANCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TILT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ROTATION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SLIDER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_WHEEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - static mut zwp_tablet_tool_v1_requests_set_cursor_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_cursor\0" as *const u8 as *const c_char, - signature: b"u?oii\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v1_requests_set_cursor_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_tablet_tool_v1_events_proximity_in_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::zwp_tablet_v1::zwp_tablet_v1_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v1_events: [wl_message; 19] = [ - wl_message { - name: b"type\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_serial\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_id_wacom\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"capability\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"proximity_in\0" as *const u8 as *const c_char, - signature: b"uoo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v1_events_proximity_in_types as *const _ }, - }, - wl_message { - name: b"proximity_out\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"down\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"up\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"pressure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"distance\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"tilt\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"rotation\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"slider\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"wheel\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_tool_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_tool_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_tool_v1_requests as *const _ }, - event_count: 19, - events: unsafe { &zwp_tablet_tool_v1_events as *const _ }, - }; -} -#[doc = "graphics tablet device\n\nThe wp_tablet interface represents one graphics tablet device. The\ntablet interface itself does not generate events; all events are\ngenerated by wp_tablet_tool objects when in proximity above a tablet.\n\nA tablet has a number of static characteristics, e.g. device name and\npid/vid. These capabilities are sent in an event sequence after the\nwp_tablet_seat.tablet_added event. This initial event sequence is\nterminated by a wp_tablet.done event."] -pub mod zwp_tablet_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tablet device name\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Name { name: String }, - #[doc = "tablet device USB vendor/product id\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Id { vid: u32, pid: u32 }, - #[doc = "path to the device\n\nA system-specific device path that indicates which device is behind\nthis wp_tablet. This information may be used to gather additional\ninformation about the device, e.g. through libwacom.\n\nA device may have more than one device path. If so, multiple\nwp_tablet.path events are sent. A device may be emulated and not\nhave a device path, and in that case this event will not be sent.\n\nThe format of the path is unspecified, it may be a device node, a\nsysfs path, or some other identifier. It is up to the client to\nidentify the string provided.\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Path { path: String }, - #[doc = "tablet description events sequence complete\n\nThis event is sent immediately to signal the end of the initial\nburst of descriptive events. A client may consider the static\ndescription of the tablet to be complete and finalize initialization\nof the tablet."] - Done, - #[doc = "tablet removed event\n\nSent when the tablet has been removed from the system. When a tablet\nis removed, some tools may be removed.\n\nWhen this event is received, the client must wp_tablet.destroy\nthe object."] - Removed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "name", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "id", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "path", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Name { .. } => 0, - Event::Id { .. } => 1, - Event::Path { .. } => 2, - Event::Done => 3, - Event::Removed => 4, - } - } - fn since(&self) -> u32 { - match *self { - Event::Name { .. } => 1, - Event::Id { .. } => 1, - Event::Path { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Id { - vid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - pid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Path { - path: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Id { - vid: _args[0].u, - pid: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Path { - path: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletV1(Proxy); - impl AsRef> for ZwpTabletV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_v1_interface } - } - } - impl ZwpTabletV1 { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PATH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v1_events: [wl_message; 5] = [ - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"id\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"path\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_v1_interface: wl_interface = wl_interface { - name: b"zwp_tablet_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_v1_requests as *const _ }, - event_count: 5, - events: unsafe { &zwp_tablet_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs deleted file mode 100644 index f1d378a..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs +++ /dev/null @@ -1,3851 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "controller object for graphic tablet devices\n\nAn object that provides access to the graphics tablets available on this\nsystem. All tablets are associated with a seat, to get access to the\nactual tablets, use wp_tablet_manager.get_tablet_seat."] -pub mod zwp_tablet_manager_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - GetTabletSeat { seat: super::wl_seat::WlSeat }, - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_tablet_seat", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetTabletSeat { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetTabletSeat { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_tablet_seat_v2::ZwpTabletSeatV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetTabletSeat { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetTabletSeat { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletManagerV2(Proxy); - impl AsRef> for ZwpTabletManagerV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletManagerV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletManagerV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletManagerV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletManagerV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletManagerV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_manager_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_manager_v2_interface } - } - } - impl ZwpTabletManagerV2 { - #[doc = "get the tablet seat\n\nGet the wp_tablet_seat object for the given seat. This object\nprovides access to all graphics tablets in this seat."] - pub fn get_tablet_seat( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetTabletSeat { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "release the memory for the tablet manager object\n\nDestroy the wp_tablet_manager object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TABLET_SEAT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwp_tablet_manager_v2_requests_get_tablet_seat_types: [*const wl_interface; 2] = [ - unsafe { &super::zwp_tablet_seat_v2::zwp_tablet_seat_v2_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_manager_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"get_tablet_seat\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_manager_v2_requests_get_tablet_seat_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_manager_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_manager_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_manager_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "controller object for graphic tablet devices of a seat\n\nAn object that provides access to the graphics tablets available on this\nseat. After binding to this interface, the compositor sends a set of\nwp_tablet_seat.tablet_added and wp_tablet_seat.tool_added events."] -pub mod zwp_tablet_seat_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "new device notification\n\nThis event is sent whenever a new tablet becomes available on this\nseat. This event only provides the object id of the tablet, any\nstatic information about the tablet (device name, vid/pid, etc.) is\nsent through the wp_tablet interface."] - TabletAdded { - id: Main, - }, - #[doc = "a new tool has been used with a tablet\n\nThis event is sent whenever a tool that has not previously been used\nwith a tablet comes into use. This event only provides the object id\nof the tool; any static information about the tool (capabilities,\ntype, etc.) is sent through the wp_tablet_tool interface."] - ToolAdded { - id: Main, - }, - #[doc = "new pad notification\n\nThis event is sent whenever a new pad is known to the system. Typically,\npads are physically attached to tablets and a pad_added event is\nsent immediately after the wp_tablet_seat.tablet_added.\nHowever, some standalone pad devices logically attach to tablets at\nruntime, and the client must wait for wp_tablet_pad.enter to know\nthe tablet a pad is attached to.\n\nThis event only provides the object id of the pad. All further\nfeatures (buttons, strips, rings) are sent through the wp_tablet_pad\ninterface."] - PadAdded { - id: Main, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "tablet_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "tool_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "pad_added", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::TabletAdded { .. } => 0, - Event::ToolAdded { .. } => 1, - Event::PadAdded { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::TabletAdded { .. } => 1, - Event::ToolAdded { .. } => 1, - Event::PadAdded { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::( - version, - meta.child(), - )), - 1 => Some(Object::from_interface::< - super::zwp_tablet_tool_v2::ZwpTabletToolV2, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_tablet_pad_v2::ZwpTabletPadV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::TabletAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::ToolAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::PadAdded { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::TabletAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ToolAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PadAdded { - id: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletSeatV2(Proxy); - impl AsRef> for ZwpTabletSeatV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletSeatV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletSeatV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletSeatV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletSeatV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletSeatV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_seat_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_seat_v2_interface } - } - } - impl ZwpTabletSeatV2 { - #[doc = "release the memory for the tablet seat object\n\nDestroy the wp_tablet_seat object. Objects created from this\nobject are unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TABLET_ADDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TOOL_ADDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PAD_ADDED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_tablet_seat_v2_events_tablet_added_types: [*const wl_interface; 1] = - [unsafe { &super::zwp_tablet_v2::zwp_tablet_v2_interface as *const wl_interface }]; - static mut zwp_tablet_seat_v2_events_tool_added_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_tool_v2::zwp_tablet_tool_v2_interface as *const wl_interface - }]; - static mut zwp_tablet_seat_v2_events_pad_added_types: [*const wl_interface; 1] = - [ - unsafe { - &super::zwp_tablet_pad_v2::zwp_tablet_pad_v2_interface as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_seat_v2_events: [wl_message; 3] = [ - wl_message { - name: b"tablet_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v2_events_tablet_added_types as *const _ }, - }, - wl_message { - name: b"tool_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v2_events_tool_added_types as *const _ }, - }, - wl_message { - name: b"pad_added\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_seat_v2_events_pad_added_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_seat_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_seat_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_seat_v2_requests as *const _ }, - event_count: 3, - events: unsafe { &zwp_tablet_seat_v2_events as *const _ }, - }; -} -#[doc = "a physical tablet tool\n\nAn object that represents a physical tool that has been, or is\ncurrently in use with a tablet in this seat. Each wp_tablet_tool\nobject stays valid until the client destroys it; the compositor\nreuses the wp_tablet_tool object to indicate that the object's\nrespective physical tool has come into proximity of a tablet again.\n\nA wp_tablet_tool object's relation to a physical tool depends on the\ntablet's ability to report serial numbers. If the tablet supports\nthis capability, then the object represents a specific physical tool\nand can be identified even when used on multiple tablets.\n\nA tablet tool has a number of static characteristics, e.g. tool type,\nhardware_serial and capabilities. These capabilities are sent in an\nevent sequence after the wp_tablet_seat.tool_added event before any\nactual events from this tool. This initial event sequence is\nterminated by a wp_tablet_tool.done event.\n\nTablet tool events are grouped by wp_tablet_tool.frame events.\nAny events received before a wp_tablet_tool.frame event should be\nconsidered part of the same hardware state change."] -pub mod zwp_tablet_tool_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "a physical tool type\n\nDescribes the physical type of a tool. The physical type of a tool\ngenerally defines its base usage.\n\nThe mouse tool represents a mouse-shaped tool that is not a relative\ndevice but bound to the tablet's surface, providing absolute\ncoordinates.\n\nThe lens tool is a mouse-shaped tool with an attached lens to\nprovide precision focus."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Type { - #[doc = "Pen"] - Pen = 320, - #[doc = "Eraser"] - Eraser = 321, - #[doc = "Brush"] - Brush = 322, - #[doc = "Pencil"] - Pencil = 323, - #[doc = "Airbrush"] - Airbrush = 324, - #[doc = "Finger"] - Finger = 325, - #[doc = "Mouse"] - Mouse = 326, - #[doc = "Lens"] - Lens = 327, - } - impl Type { - pub fn from_raw(n: u32) -> Option { - match n { - 320 => Some(Type::Pen), - 321 => Some(Type::Eraser), - 322 => Some(Type::Brush), - 323 => Some(Type::Pencil), - 324 => Some(Type::Airbrush), - 325 => Some(Type::Finger), - 326 => Some(Type::Mouse), - 327 => Some(Type::Lens), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "capability flags for a tool\n\nDescribes extra capabilities on a tablet.\n\nAny tool must provide x and y values, extra axes are\ndevice-specific."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Capability { - #[doc = "Tilt axes"] - Tilt = 1, - #[doc = "Pressure axis"] - Pressure = 2, - #[doc = "Distance axis"] - Distance = 3, - #[doc = "Z-rotation axis"] - Rotation = 4, - #[doc = "Slider axis"] - Slider = 5, - #[doc = "Wheel axis"] - Wheel = 6, - } - impl Capability { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Capability::Tilt), - 2 => Some(Capability::Pressure), - 3 => Some(Capability::Distance), - 4 => Some(Capability::Rotation), - 5 => Some(Capability::Slider), - 6 => Some(Capability::Wheel), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "physical button state\n\nDescribes the physical state of a button that produced the button event."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "button is not pressed"] - Released = 0, - #[doc = "button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a wp_tablet_tool cursor. A\nsurface may only ever be used as the cursor surface for one\nwp_tablet_tool. If the surface already has another role or has\npreviously been used as cursor surface for a different tool, a\nprotocol error is raised."] - SetCursor { - serial: u32, - surface: Option, - hotspot_x: i32, - hotspot_y: i32, - }, - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_cursor", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetCursor { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetCursor { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(serial), - Argument::Object(surface.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Int(hotspot_x), - Argument::Int(hotspot_y), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetCursor { - serial, - surface, - hotspot_x, - hotspot_y, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - _args_array[1].o = surface - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].i = hotspot_x; - _args_array[3].i = hotspot_y; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tool type\n\nThe tool type is the high-level type of the tool and usually decides\nthe interaction expected from this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Type { tool_type: Type }, - #[doc = "unique hardware serial number of the tool\n\nIf the physical tool can be identified by a unique 64-bit serial\nnumber, this event notifies the client of this serial number.\n\nIf multiple tablets are available in the same seat and the tool is\nuniquely identifiable by the serial number, that tool may move\nbetween tablets.\n\nOtherwise, if the tool has no serial number and this event is\nmissing, the tool is tied to the tablet it first comes into\nproximity with. Even if the physical tool is used on multiple\ntablets, separate wp_tablet_tool objects will be created, one per\ntablet.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareSerial { - hardware_serial_hi: u32, - hardware_serial_lo: u32, - }, - #[doc = "hardware id notification in Wacom's format\n\nThis event notifies the client of a hardware id available on this tool.\n\nThe hardware id is a device-specific 64-bit id that provides extra\ninformation about the tool in use, beyond the wl_tool.type\nenumeration. The format of the id is specific to tablets made by\nWacom Inc. For example, the hardware id of a Wacom Grip\nPen (a stylus) is 0x802.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - HardwareIdWacom { - hardware_id_hi: u32, - hardware_id_lo: u32, - }, - #[doc = "tool capability notification\n\nThis event notifies the client of any capabilities of this tool,\nbeyond the main set of x/y axes and tip up/down detection.\n\nOne event is sent for each extra capability available on this tool.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_tool.done event."] - Capability { capability: Capability }, - #[doc = "tool description events sequence complete\n\nThis event signals the end of the initial burst of descriptive\nevents. A client may consider the static description of the tool to\nbe complete and finalize initialization of the tool."] - Done, - #[doc = "tool removed\n\nThis event is sent when the tool is removed from the system and will\nsend no further events. Should the physical tool come back into\nproximity later, a new wp_tablet_tool object will be created.\n\nIt is compositor-dependent when a tool is removed. A compositor may\nremove a tool on proximity out, tablet removal or any other reason.\nA compositor may also keep a tool alive until shutdown.\n\nIf the tool is currently in proximity, a proximity_out event will be\nsent before the removed event. See wp_tablet_tool.proximity_out for\nthe handling of any buttons logically down.\n\nWhen this event is received, the client must wp_tablet_tool.destroy\nthe object."] - Removed, - #[doc = "proximity in event\n\nNotification that this tool is focused on a certain surface.\n\nThis event can be received when the tool has moved from one surface to\nanother, or when the tool has come back into proximity above the\nsurface.\n\nIf any button is logically down when the tool comes into proximity,\nthe respective button event is sent after the proximity_in event but\nwithin the same frame as the proximity_in event."] - ProximityIn { - serial: u32, - tablet: super::zwp_tablet_v2::ZwpTabletV2, - surface: super::wl_surface::WlSurface, - }, - #[doc = "proximity out event\n\nNotification that this tool has either left proximity, or is no\nlonger focused on a certain surface.\n\nWhen the tablet tool leaves proximity of the tablet, button release\nevents are sent for each button that was held down at the time of\nleaving proximity. These events are sent before the proximity_out\nevent but within the same wp_tablet.frame.\n\nIf the tool stays within proximity of the tablet, but the focus\nchanges from one surface to another, a button release event may not\nbe sent until the button is actually released or the tool leaves the\nproximity of the tablet."] - ProximityOut, - #[doc = "tablet tool is making contact\n\nSent whenever the tablet tool comes in contact with the surface of the\ntablet.\n\nIf the tool is already in contact with the tablet when entering the\ninput region, the client owning said region will receive a\nwp_tablet.proximity_in event, followed by a wp_tablet.down\nevent and a wp_tablet.frame event.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool in\nlogical contact until a minimum physical pressure threshold is\nexceeded."] - Down { serial: u32 }, - #[doc = "tablet tool is no longer making contact\n\nSent whenever the tablet tool stops making contact with the surface of\nthe tablet, or when the tablet tool moves out of the input region\nand the compositor grab (if any) is dismissed.\n\nIf the tablet tool moves out of the input region while in contact\nwith the surface of the tablet and the compositor does not have an\nongoing grab on the surface, the client owning said region will\nreceive a wp_tablet.up event, followed by a wp_tablet.proximity_out\nevent and a wp_tablet.frame event. If the compositor has an ongoing\ngrab on this device, this event sequence is sent whenever the grab\nis dismissed in the future.\n\nNote that this event describes logical contact, not physical\ncontact. On some devices, a compositor may not consider a tool out\nof logical contact until physical pressure falls below a specific\nthreshold."] - Up, - #[doc = "motion event\n\nSent whenever a tablet tool moves."] - Motion { x: f64, y: f64 }, - #[doc = "pressure change event\n\nSent whenever the pressure axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that pressure may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Pressure { pressure: u32 }, - #[doc = "distance change event\n\nSent whenever the distance axis on a tool changes. The value of this\nevent is normalized to a value between 0 and 65535.\n\nNote that distance may be nonzero even when a tool is not in logical\ncontact. See the down and up events for more details."] - Distance { distance: u32 }, - #[doc = "tilt change event\n\nSent whenever one or both of the tilt axes on a tool change. Each tilt\nvalue is in degrees, relative to the z-axis of the tablet.\nThe angle is positive when the top of a tool tilts along the\npositive x or y axis."] - Tilt { tilt_x: f64, tilt_y: f64 }, - #[doc = "z-rotation change event\n\nSent whenever the z-rotation axis on the tool changes. The\nrotation value is in degrees clockwise from the tool's\nlogical neutral position."] - Rotation { degrees: f64 }, - #[doc = "Slider position change event\n\nSent whenever the slider position on the tool changes. The\nvalue is normalized between -65535 and 65535, with 0 as the logical\nneutral position of the slider.\n\nThe slider is available on e.g. the Wacom Airbrush tool."] - Slider { position: i32 }, - #[doc = "Wheel delta event\n\nSent whenever the wheel on the tool emits an event. This event\ncontains two values for the same axis change. The degrees value is\nin the same orientation as the wl_pointer.vertical_scroll axis. The\nclicks value is in discrete logical clicks of the mouse wheel. This\nvalue may be zero if the movement of the wheel was less\nthan one logical click.\n\nClients should choose either value and avoid mixing degrees and\nclicks. The compositor may accumulate values smaller than a logical\nclick and emulate click events when a certain threshold is met.\nThus, wl_tablet_tool.wheel events with non-zero clicks values may\nhave different degrees values."] - Wheel { degrees: f64, clicks: i32 }, - #[doc = "button event\n\nSent whenever a button on the tool is pressed or released.\n\nIf a button is held down when the tool moves in or out of proximity,\nbutton events are generated by the compositor. See\nwp_tablet_tool.proximity_in and wp_tablet_tool.proximity_out for\ndetails."] - Button { - serial: u32, - button: u32, - state: ButtonState, - }, - #[doc = "frame event\n\nMarks the end of a series of axis and/or button updates from the\ntablet. The Wayland protocol requires axis updates to be sent\nsequentially, however all events within a frame should be considered\none hardware event."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "type", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_serial", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "hardware_id_wacom", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "capability", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "proximity_in", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "proximity_out", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "down", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "up", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "motion", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "pressure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "distance", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "tilt", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "rotation", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "slider", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "wheel", - since: 1, - signature: &[super::ArgumentType::Fixed, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Type { .. } => 0, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 2, - Event::Capability { .. } => 3, - Event::Done => 4, - Event::Removed => 5, - Event::ProximityIn { .. } => 6, - Event::ProximityOut => 7, - Event::Down { .. } => 8, - Event::Up => 9, - Event::Motion { .. } => 10, - Event::Pressure { .. } => 11, - Event::Distance { .. } => 12, - Event::Tilt { .. } => 13, - Event::Rotation { .. } => 14, - Event::Slider { .. } => 15, - Event::Wheel { .. } => 16, - Event::Button { .. } => 17, - Event::Frame { .. } => 18, - } - } - fn since(&self) -> u32 { - match *self { - Event::Type { .. } => 1, - Event::HardwareSerial { .. } => 1, - Event::HardwareIdWacom { .. } => 1, - Event::Capability { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - Event::ProximityIn { .. } => 1, - Event::ProximityOut => 1, - Event::Down { .. } => 1, - Event::Up => 1, - Event::Motion { .. } => 1, - Event::Pressure { .. } => 1, - Event::Distance { .. } => 1, - Event::Tilt { .. } => 1, - Event::Rotation { .. } => 1, - Event::Slider { .. } => 1, - Event::Wheel { .. } => 1, - Event::Button { .. } => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Type { - tool_type: { - if let Some(Argument::Uint(val)) = args.next() { - Type::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareSerial { - hardware_serial_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_serial_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::HardwareIdWacom { - hardware_id_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - hardware_id_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Capability { - capability: { - if let Some(Argument::Uint(val)) = args.next() { - Capability::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::ProximityIn { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tablet: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::Down { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 9 => Ok(Event::Up), - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Motion { - x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Pressure { - pressure: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::Distance { - distance: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 13 => { - let mut args = msg.args.into_iter(); - Ok(Event::Tilt { - tilt_x: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - tilt_y: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 14 => { - let mut args = msg.args.into_iter(); - Ok(Event::Rotation { - degrees: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 15 => { - let mut args = msg.args.into_iter(); - Ok(Event::Slider { - position: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 16 => { - let mut args = msg.args.into_iter(); - Ok(Event::Wheel { - degrees: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - clicks: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 17 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 18 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Type { - tool_type: Type::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareSerial { - hardware_serial_hi: _args[0].u, - hardware_serial_lo: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::HardwareIdWacom { - hardware_id_hi: _args[0].u, - hardware_id_lo: _args[1].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Capability { - capability: Capability::from_raw(_args[0].u).ok_or(())?, - }) - } - 4 => Ok(Event::Done), - 5 => Ok(Event::Removed), - 6 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::ProximityIn { - serial: _args[0].u, - tablet: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - }) - } - 7 => Ok(Event::ProximityOut), - 8 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Down { serial: _args[0].u }) - } - 9 => Ok(Event::Up), - 10 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Motion { - x: (_args[0].f as f64) / 256., - y: (_args[1].f as f64) / 256., - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Pressure { - pressure: _args[0].u, - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Distance { - distance: _args[0].u, - }) - } - 13 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Tilt { - tilt_x: (_args[0].f as f64) / 256., - tilt_y: (_args[1].f as f64) / 256., - }) - } - 14 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Rotation { - degrees: (_args[0].f as f64) / 256., - }) - } - 15 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Slider { - position: _args[0].i, - }) - } - 16 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Wheel { - degrees: (_args[0].f as f64) / 256., - clicks: _args[1].i, - }) - } - 17 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Button { - serial: _args[0].u, - button: _args[1].u, - state: ButtonState::from_raw(_args[2].u).ok_or(())?, - }) - } - 18 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletToolV2(Proxy); - impl AsRef> for ZwpTabletToolV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletToolV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletToolV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletToolV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletToolV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletToolV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_tool_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_tool_v2_interface } - } - } - impl ZwpTabletToolV2 { - #[doc = "set the tablet tool's surface\n\nSets the surface of the cursor used for this tool on the given\ntablet. This request only takes effect if the tool is in proximity\nof one of the requesting client's surfaces or the surface parameter\nis the current pointer surface. If there was a previous surface set\nwith this request it is replaced. If surface is NULL, the cursor\nimage is hidden.\n\nThe parameters hotspot_x and hotspot_y define the position of the\npointer surface relative to the pointer location. Its top-left corner\nis always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the\ncoordinates of the pointer location, in surface-local coordinates.\n\nOn surface.attach requests to the pointer surface, hotspot_x and\nhotspot_y are decremented by the x and y parameters passed to the\nrequest. Attach must be confirmed by wl_surface.commit as usual.\n\nThe hotspot can also be updated by passing the currently set pointer\nsurface to this request with new values for hotspot_x and hotspot_y.\n\nThe current and pending input regions of the wl_surface are cleared,\nand wl_surface.set_input_region is ignored until the wl_surface is no\nlonger used as the cursor. When the use as a cursor ends, the current\nand pending input regions become undefined, and the wl_surface is\nunmapped.\n\nThis request gives the surface the role of a wp_tablet_tool cursor. A\nsurface may only ever be used as the cursor surface for one\nwp_tablet_tool. If the surface already has another role or has\npreviously been used as cursor surface for a different tool, a\nprotocol error is raised."] - pub fn set_cursor( - &self, - serial: u32, - surface: Option<&super::wl_surface::WlSurface>, - hotspot_x: i32, - hotspot_y: i32, - ) -> () { - let msg = Request::SetCursor { - serial: serial, - surface: surface.map(|o| o.clone()), - hotspot_x: hotspot_x, - hotspot_y: hotspot_y, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the tool object\n\nThis destroys the client's resource for this tool object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_SERIAL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HARDWARE_ID_WACOM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CAPABILITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_IN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PROXIMITY_OUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DOWN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_UP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRESSURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DISTANCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TILT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ROTATION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SLIDER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_WHEEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - static mut zwp_tablet_tool_v2_requests_set_cursor_types: [*const wl_interface; 4] = [ - NULLPTR as *const wl_interface, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_cursor\0" as *const u8 as *const c_char, - signature: b"u?oii\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v2_requests_set_cursor_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_tablet_tool_v2_events_proximity_in_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::zwp_tablet_v2::zwp_tablet_v2_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_tool_v2_events: [wl_message; 19] = [ - wl_message { - name: b"type\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_serial\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hardware_id_wacom\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"capability\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"proximity_in\0" as *const u8 as *const c_char, - signature: b"uoo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_tool_v2_events_proximity_in_types as *const _ }, - }, - wl_message { - name: b"proximity_out\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"down\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"up\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"pressure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"distance\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"tilt\0" as *const u8 as *const c_char, - signature: b"ff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"rotation\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"slider\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"wheel\0" as *const u8 as *const c_char, - signature: b"fi\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_tool_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_tool_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_tool_v2_requests as *const _ }, - event_count: 19, - events: unsafe { &zwp_tablet_tool_v2_events as *const _ }, - }; -} -#[doc = "graphics tablet device\n\nThe wp_tablet interface represents one graphics tablet device. The\ntablet interface itself does not generate events; all events are\ngenerated by wp_tablet_tool objects when in proximity above a tablet.\n\nA tablet has a number of static characteristics, e.g. device name and\npid/vid. These capabilities are sent in an event sequence after the\nwp_tablet_seat.tablet_added event. This initial event sequence is\nterminated by a wp_tablet.done event."] -pub mod zwp_tablet_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "tablet device name\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Name { name: String }, - #[doc = "tablet device USB vendor/product id\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Id { vid: u32, pid: u32 }, - #[doc = "path to the device\n\nA system-specific device path that indicates which device is behind\nthis wp_tablet. This information may be used to gather additional\ninformation about the device, e.g. through libwacom.\n\nA device may have more than one device path. If so, multiple\nwp_tablet.path events are sent. A device may be emulated and not\nhave a device path, and in that case this event will not be sent.\n\nThe format of the path is unspecified, it may be a device node, a\nsysfs path, or some other identifier. It is up to the client to\nidentify the string provided.\n\nThis event is sent in the initial burst of events before the\nwp_tablet.done event."] - Path { path: String }, - #[doc = "tablet description events sequence complete\n\nThis event is sent immediately to signal the end of the initial\nburst of descriptive events. A client may consider the static\ndescription of the tablet to be complete and finalize initialization\nof the tablet."] - Done, - #[doc = "tablet removed event\n\nSent when the tablet has been removed from the system. When a tablet\nis removed, some tools may be removed.\n\nWhen this event is received, the client must wp_tablet.destroy\nthe object."] - Removed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "name", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "id", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "path", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Name { .. } => 0, - Event::Id { .. } => 1, - Event::Path { .. } => 2, - Event::Done => 3, - Event::Removed => 4, - } - } - fn since(&self) -> u32 { - match *self { - Event::Name { .. } => 1, - Event::Id { .. } => 1, - Event::Path { .. } => 1, - Event::Done => 1, - Event::Removed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Id { - vid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - pid: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Path { - path: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Id { - vid: _args[0].u, - pid: _args[1].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Path { - path: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 3 => Ok(Event::Done), - 4 => Ok(Event::Removed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletV2(Proxy); - impl AsRef> for ZwpTabletV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_v2_interface } - } - } - impl ZwpTabletV2 { - #[doc = "destroy the tablet object\n\nThis destroys the client's resource for this tablet object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PATH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_v2_events: [wl_message; 5] = [ - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"id\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"path\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_v2_requests as *const _ }, - event_count: 5, - events: unsafe { &zwp_tablet_v2_events as *const _ }, - }; -} -#[doc = "pad ring\n\nA circular interaction area, such as the touch ring on the Wacom Intuos\nPro series tablets.\n\nEvents on a ring are logically grouped by the wl_tablet_pad_ring.frame\nevent."] -pub mod zwp_tablet_pad_ring_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "ring axis source\n\nDescribes the source types for ring events. This indicates to the\nclient how a ring event was physically generated; a client may\nadjust the user interface accordingly. For example, events\nfrom a \"finger\" source may trigger kinetic scrolling."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Source { - #[doc = "finger"] - Finger = 1, - } - impl Source { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Source::Finger), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set compositor feedback\n\nRequest that the compositor use the provided feedback string\nassociated with this ring. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the ring is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the ring; compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nring. Requests providing other serials than the most recent one will be\nignored."] - SetFeedback { description: String, serial: u32 }, - #[doc = "destroy the ring object\n\nThis destroys the client's resource for this ring object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_feedback", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetFeedback { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetFeedback { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetFeedback { - description, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(description.into()) - })), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetFeedback { - description, - serial, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(description).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "ring event source\n\nSource information for ring events.\n\nThis event does not occur on its own. It is sent before a\nwp_tablet_pad_ring.frame event and carries the source information\nfor all events within that frame.\n\nThe source specifies how this event was generated. If the source is\nwp_tablet_pad_ring.source.finger, a wp_tablet_pad_ring.stop event\nwill be sent when the user lifts the finger off the device.\n\nThis event is optional. If the source is unknown for an interaction,\nno event is sent."] - Source { source: Source }, - #[doc = "angle changed\n\nSent whenever the angle on a ring changes.\n\nThe angle is provided in degrees clockwise from the logical\nnorth of the ring in the pad's current rotation."] - Angle { degrees: f64 }, - #[doc = "interaction stopped\n\nStop notification for ring events.\n\nFor some wp_tablet_pad_ring.source types, a wp_tablet_pad_ring.stop\nevent is sent to notify a client that the interaction with the ring\nhas terminated. This enables the client to implement kinetic scrolling.\nSee the wp_tablet_pad_ring.source documentation for information on\nwhen this event may be generated.\n\nAny wp_tablet_pad_ring.angle events with the same source after this\nevent should be considered as the start of a new interaction."] - Stop, - #[doc = "end of a ring event sequence\n\nIndicates the end of a set of ring events that logically belong\ntogether. A client is expected to accumulate the data in all events\nwithin the frame before proceeding.\n\nAll wp_tablet_pad_ring events before a wp_tablet_pad_ring.frame event belong\nlogically together. For example, on termination of a finger interaction\non a ring the compositor will send a wp_tablet_pad_ring.source event,\na wp_tablet_pad_ring.stop event and a wp_tablet_pad_ring.frame event.\n\nA wp_tablet_pad_ring.frame event is sent for every logical event\ngroup, even if the group only contains a single wp_tablet_pad_ring\nevent. Specifically, a client may get a sequence: angle, frame,\nangle, frame, etc."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "source", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "angle", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Source { .. } => 0, - Event::Angle { .. } => 1, - Event::Stop => 2, - Event::Frame { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Source { .. } => 1, - Event::Angle { .. } => 1, - Event::Stop => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Source { - source: { - if let Some(Argument::Uint(val)) = args.next() { - Source::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Angle { - degrees: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Stop), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Source { - source: Source::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Angle { - degrees: (_args[0].f as f64) / 256., - }) - } - 2 => Ok(Event::Stop), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadRingV2(Proxy); - impl AsRef> for ZwpTabletPadRingV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadRingV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadRingV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadRingV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadRingV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadRingV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_ring_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_ring_v2_interface } - } - } - impl ZwpTabletPadRingV2 { - #[doc = "set compositor feedback\n\nRequest that the compositor use the provided feedback string\nassociated with this ring. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the ring is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the ring; compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nring. Requests providing other serials than the most recent one will be\nignored."] - pub fn set_feedback(&self, description: String, serial: u32) -> () { - let msg = Request::SetFeedback { - description: description, - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the ring object\n\nThis destroys the client's resource for this ring object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_ring_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_feedback\0" as *const u8 as *const c_char, - signature: b"su\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_ring_v2_events: [wl_message; 4] = [ - wl_message { - name: b"source\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"angle\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_ring_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_ring_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_pad_ring_v2_requests as *const _ }, - event_count: 4, - events: unsafe { &zwp_tablet_pad_ring_v2_events as *const _ }, - }; -} -#[doc = "pad strip\n\nA linear interaction area, such as the strips found in Wacom Cintiq\nmodels.\n\nEvents on a strip are logically grouped by the wl_tablet_pad_strip.frame\nevent."] -pub mod zwp_tablet_pad_strip_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "strip axis source\n\nDescribes the source types for strip events. This indicates to the\nclient how a strip event was physically generated; a client may\nadjust the user interface accordingly. For example, events\nfrom a \"finger\" source may trigger kinetic scrolling."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Source { - #[doc = "finger"] - Finger = 1, - } - impl Source { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Source::Finger), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this strip. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the strip is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the strip, and compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nstrip. Requests providing other serials than the most recent one will be\nignored."] - SetFeedback { description: String, serial: u32 }, - #[doc = "destroy the strip object\n\nThis destroys the client's resource for this strip object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_feedback", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetFeedback { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetFeedback { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetFeedback { - description, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(description.into()) - })), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetFeedback { - description, - serial, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(description).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "strip event source\n\nSource information for strip events.\n\nThis event does not occur on its own. It is sent before a\nwp_tablet_pad_strip.frame event and carries the source information\nfor all events within that frame.\n\nThe source specifies how this event was generated. If the source is\nwp_tablet_pad_strip.source.finger, a wp_tablet_pad_strip.stop event\nwill be sent when the user lifts their finger off the device.\n\nThis event is optional. If the source is unknown for an interaction,\nno event is sent."] - Source { source: Source }, - #[doc = "position changed\n\nSent whenever the position on a strip changes.\n\nThe position is normalized to a range of [0, 65535], the 0-value\nrepresents the top-most and/or left-most position of the strip in\nthe pad's current rotation."] - Position { position: u32 }, - #[doc = "interaction stopped\n\nStop notification for strip events.\n\nFor some wp_tablet_pad_strip.source types, a wp_tablet_pad_strip.stop\nevent is sent to notify a client that the interaction with the strip\nhas terminated. This enables the client to implement kinetic\nscrolling. See the wp_tablet_pad_strip.source documentation for\ninformation on when this event may be generated.\n\nAny wp_tablet_pad_strip.position events with the same source after this\nevent should be considered as the start of a new interaction."] - Stop, - #[doc = "end of a strip event sequence\n\nIndicates the end of a set of events that represent one logical\nhardware strip event. A client is expected to accumulate the data\nin all events within the frame before proceeding.\n\nAll wp_tablet_pad_strip events before a wp_tablet_pad_strip.frame event belong\nlogically together. For example, on termination of a finger interaction\non a strip the compositor will send a wp_tablet_pad_strip.source event,\na wp_tablet_pad_strip.stop event and a wp_tablet_pad_strip.frame\nevent.\n\nA wp_tablet_pad_strip.frame event is sent for every logical event\ngroup, even if the group only contains a single wp_tablet_pad_strip\nevent. Specifically, a client may get a sequence: position, frame,\nposition, frame, etc."] - Frame { time: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "source", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "position", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Source { .. } => 0, - Event::Position { .. } => 1, - Event::Stop => 2, - Event::Frame { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Source { .. } => 1, - Event::Position { .. } => 1, - Event::Stop => 1, - Event::Frame { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Source { - source: { - if let Some(Argument::Uint(val)) = args.next() { - Source::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Position { - position: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Stop), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Source { - source: Source::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Position { - position: _args[0].u, - }) - } - 2 => Ok(Event::Stop), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Frame { time: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadStripV2(Proxy); - impl AsRef> for ZwpTabletPadStripV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadStripV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadStripV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadStripV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadStripV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadStripV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_strip_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_strip_v2_interface } - } - } - impl ZwpTabletPadStripV2 { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this strip. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever the strip is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with the strip, and compositors may use this\ninformation to offer visual feedback about the button layout\n(eg. on-screen displays).\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nstrip. Requests providing other serials than the most recent one will be\nignored."] - pub fn set_feedback(&self, description: String, serial: u32) -> () { - let msg = Request::SetFeedback { - description: description, - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the strip object\n\nThis destroys the client's resource for this strip object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_strip_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_feedback\0" as *const u8 as *const c_char, - signature: b"su\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_strip_v2_events: [wl_message; 4] = [ - wl_message { - name: b"source\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"position\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_strip_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_strip_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_pad_strip_v2_requests as *const _ }, - event_count: 4, - events: unsafe { &zwp_tablet_pad_strip_v2_events as *const _ }, - }; -} -#[doc = "a set of buttons, rings and strips\n\nA pad group describes a distinct (sub)set of buttons, rings and strips\npresent in the tablet. The criteria of this grouping is usually positional,\neg. if a tablet has buttons on the left and right side, 2 groups will be\npresented. The physical arrangement of groups is undisclosed and may\nchange on the fly.\n\nPad groups will announce their features during pad initialization. Between\nthe corresponding wp_tablet_pad.group event and wp_tablet_pad_group.done, the\npad group will announce the buttons, rings and strips contained in it,\nplus the number of supported modes.\n\nModes are a mechanism to allow multiple groups of actions for every element\nin the pad group. The number of groups and available modes in each is\npersistent across device plugs. The current mode is user-switchable, it\nwill be announced through the wp_tablet_pad_group.mode_switch event both\nwhenever it is switched, and after wp_tablet_pad.enter.\n\nThe current mode logically applies to all elements in the pad group,\nalthough it is at clients' discretion whether to actually perform different\nactions, and/or issue the respective .set_feedback requests to notify the\ncompositor. See the wp_tablet_pad_group.mode_switch event for more details."] -pub mod zwp_tablet_pad_group_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad_group object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "buttons announced\n\nSent on wp_tablet_pad_group initialization to announce the available\nbuttons in the group. Button indices start at 0, a button may only be\nin one group at a time.\n\nThis event is first sent in the initial burst of events before the\nwp_tablet_pad_group.done event.\n\nSome buttons are reserved by the compositor. These buttons may not be\nassigned to any wp_tablet_pad_group. Compositors may broadcast this\nevent in the case of changes to the mapping of these reserved buttons.\nIf the compositor happens to reserve all buttons in a group, this event\nwill be sent with an empty array."] - Buttons { buttons: Vec }, - #[doc = "ring announced\n\nSent on wp_tablet_pad_group initialization to announce available rings.\nOne event is sent for each ring available on this pad group.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad_group.done event."] - Ring { - ring: Main, - }, - #[doc = "strip announced\n\nSent on wp_tablet_pad initialization to announce available strips.\nOne event is sent for each strip available on this pad group.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad_group.done event."] - Strip { - strip: Main, - }, - #[doc = "mode-switch ability announced\n\nSent on wp_tablet_pad_group initialization to announce that the pad\ngroup may switch between modes. A client may use a mode to store a\nspecific configuration for buttons, rings and strips and use the\nwl_tablet_pad_group.mode_switch event to toggle between these\nconfigurations. Mode indices start at 0.\n\nSwitching modes is compositor-dependent. See the\nwp_tablet_pad_group.mode_switch event for more details.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad_group.done event. This event is only sent when more than\nmore than one mode is available."] - Modes { modes: u32 }, - #[doc = "tablet group description events sequence complete\n\nThis event is sent immediately to signal the end of the initial\nburst of descriptive events. A client may consider the static\ndescription of the tablet to be complete and finalize initialization\nof the tablet group."] - Done, - #[doc = "mode switch event\n\nNotification that the mode was switched.\n\nA mode applies to all buttons, rings and strips in a group\nsimultaneously, but a client is not required to assign different actions\nfor each mode. For example, a client may have mode-specific button\nmappings but map the ring to vertical scrolling in all modes. Mode\nindices start at 0.\n\nSwitching modes is compositor-dependent. The compositor may provide\nvisual cues to the client about the mode, e.g. by toggling LEDs on\nthe tablet device. Mode-switching may be software-controlled or\ncontrolled by one or more physical buttons. For example, on a Wacom\nIntuos Pro, the button inside the ring may be assigned to switch\nbetween modes.\n\nThe compositor will also send this event after wp_tablet_pad.enter on\neach group in order to notify of the current mode. Groups that only\nfeature one mode will use mode=0 when emitting this event.\n\nIf a button action in the new mode differs from the action in the\nprevious mode, the client should immediately issue a\nwp_tablet_pad.set_feedback request for each changed button.\n\nIf a ring or strip action in the new mode differs from the action\nin the previous mode, the client should immediately issue a\nwp_tablet_ring.set_feedback or wp_tablet_strip.set_feedback request\nfor each changed ring or strip."] - ModeSwitch { time: u32, serial: u32, mode: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "buttons", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "ring", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "strip", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "modes", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "mode_switch", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Buttons { .. } => 0, - Event::Ring { .. } => 1, - Event::Strip { .. } => 2, - Event::Modes { .. } => 3, - Event::Done => 4, - Event::ModeSwitch { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Buttons { .. } => 1, - Event::Ring { .. } => 1, - Event::Strip { .. } => 1, - Event::Modes { .. } => 1, - Event::Done => 1, - Event::ModeSwitch { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_tablet_pad_ring_v2::ZwpTabletPadRingV2, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwp_tablet_pad_strip_v2::ZwpTabletPadStripV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Buttons { - buttons: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ring { - ring: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Strip { - strip: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Modes { - modes: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => Ok(Event::Done), - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::ModeSwitch { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mode: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Buttons { - buttons: { - let array = &*_args[0].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ring { - ring: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Strip { - strip: - Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Modes { modes: _args[0].u }) - } - 4 => Ok(Event::Done), - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::ModeSwitch { - time: _args[0].u, - serial: _args[1].u, - mode: _args[2].u, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadGroupV2(Proxy); - impl AsRef> for ZwpTabletPadGroupV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadGroupV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadGroupV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadGroupV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadGroupV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadGroupV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_group_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_group_v2_interface } - } - } - impl ZwpTabletPadGroupV2 { - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad_group object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTONS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_RING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STRIP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODES_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SWITCH_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_group_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwp_tablet_pad_group_v2_events_ring_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_pad_ring_v2::zwp_tablet_pad_ring_v2_interface as *const wl_interface - }]; - static mut zwp_tablet_pad_group_v2_events_strip_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_pad_strip_v2::zwp_tablet_pad_strip_v2_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_group_v2_events: [wl_message; 6] = [ - wl_message { - name: b"buttons\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ring\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_group_v2_events_ring_types as *const _ }, - }, - wl_message { - name: b"strip\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_group_v2_events_strip_types as *const _ }, - }, - wl_message { - name: b"modes\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode_switch\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_group_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_group_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_tablet_pad_group_v2_requests as *const _ }, - event_count: 6, - events: unsafe { &zwp_tablet_pad_group_v2_events as *const _ }, - }; -} -#[doc = "a set of buttons, rings and strips\n\nA pad device is a set of buttons, rings and strips\nusually physically present on the tablet device itself. Some\nexceptions exist where the pad device is physically detached, e.g. the\nWacom ExpressKey Remote.\n\nPad devices have no axes that control the cursor and are generally\nauxiliary devices to the tool devices used on the tablet surface.\n\nA pad device has a number of static characteristics, e.g. the number\nof rings. These capabilities are sent in an event sequence after the\nwp_tablet_seat.pad_added event before any actual events from this pad.\nThis initial event sequence is terminated by a wp_tablet_pad.done\nevent.\n\nAll pad features (buttons, rings and strips) are logically divided into\ngroups and all pads have at least one group. The available groups are\nnotified through the wp_tablet_pad.group event; the compositor will\nemit one event per group before emitting wp_tablet_pad.done.\n\nGroups may have multiple modes. Modes allow clients to map multiple\nactions to a single pad feature. Only one mode can be active per group,\nalthough different groups may have different active modes."] -pub mod zwp_tablet_pad_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "physical button state\n\nDescribes the physical state of a button that caused the button\nevent."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ButtonState { - #[doc = "the button is not pressed"] - Released = 0, - #[doc = "the button is pressed"] - Pressed = 1, - } - impl ButtonState { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ButtonState::Released), - 1 => Some(ButtonState::Pressed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this button. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever a button is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with each button, and compositors may use\nthis information to offer visual feedback on the button layout\n(e.g. on-screen displays).\n\nButton indices start at 0. Setting the feedback string on a button\nthat is reserved by the compositor (i.e. not belonging to any\nwp_tablet_pad_group) does not generate an error but the compositor\nis free to ignore the request.\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nbutton. Requests providing other serials than the most recent one will\nbe ignored."] - SetFeedback { - button: u32, - description: String, - serial: u32, - }, - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_feedback", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetFeedback { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetFeedback { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetFeedback { - button, - description, - serial, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(button), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(description.into()) - })), - Argument::Uint(serial), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetFeedback { - button, - description, - serial, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = button; - let _arg_1 = ::std::ffi::CString::new(description).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - _args_array[2].u = serial; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "group announced\n\nSent on wp_tablet_pad initialization to announce available groups.\nOne event is sent for each pad group available.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad.done event. At least one group will be announced."] - Group { - pad_group: Main, - }, - #[doc = "path to the device\n\nA system-specific device path that indicates which device is behind\nthis wp_tablet_pad. This information may be used to gather additional\ninformation about the device, e.g. through libwacom.\n\nThe format of the path is unspecified, it may be a device node, a\nsysfs path, or some other identifier. It is up to the client to\nidentify the string provided.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad.done event."] - Path { path: String }, - #[doc = "buttons announced\n\nSent on wp_tablet_pad initialization to announce the available\nbuttons.\n\nThis event is sent in the initial burst of events before the\nwp_tablet_pad.done event. This event is only sent when at least one\nbutton is available."] - Buttons { buttons: u32 }, - #[doc = "pad description event sequence complete\n\nThis event signals the end of the initial burst of descriptive\nevents. A client may consider the static description of the pad to\nbe complete and finalize initialization of the pad."] - Done, - #[doc = "physical button state\n\nSent whenever the physical state of a button changes."] - Button { - time: u32, - button: u32, - state: ButtonState, - }, - #[doc = "enter event\n\nNotification that this pad is focused on the specified surface."] - Enter { - serial: u32, - tablet: super::zwp_tablet_v2::ZwpTabletV2, - surface: super::wl_surface::WlSurface, - }, - #[doc = "enter event\n\nNotification that this pad is no longer focused on the specified\nsurface."] - Leave { - serial: u32, - surface: super::wl_surface::WlSurface, - }, - #[doc = "pad removed event\n\nSent when the pad has been removed from the system. When a tablet\nis removed its pad(s) will be removed too.\n\nWhen this event is received, the client must destroy all rings, strips\nand groups that were offered by this pad, and issue wp_tablet_pad.destroy\nthe pad itself."] - Removed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "group", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "path", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "buttons", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "enter", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "removed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Group { .. } => 0, - Event::Path { .. } => 1, - Event::Buttons { .. } => 2, - Event::Done => 3, - Event::Button { .. } => 4, - Event::Enter { .. } => 5, - Event::Leave { .. } => 6, - Event::Removed => 7, - } - } - fn since(&self) -> u32 { - match *self { - Event::Group { .. } => 1, - Event::Path { .. } => 1, - Event::Buttons { .. } => 1, - Event::Done => 1, - Event::Button { .. } => 1, - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::Removed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_tablet_pad_group_v2::ZwpTabletPadGroupV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Group { - pad_group: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Path { - path: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Buttons { - buttons: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Done), - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Button { - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - button: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - ButtonState::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tablet: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 7 => Ok(Event::Removed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Group { - pad_group: - Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Path { - path: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Buttons { - buttons: _args[0].u, - }) - } - 3 => Ok(Event::Done), - 4 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Button { - time: _args[0].u, - button: _args[1].u, - state: ButtonState::from_raw(_args[2].u).ok_or(())?, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Enter { - serial: _args[0].u, - tablet: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - surface: Proxy::::from_c_ptr( - _args[2].o as *mut _, - ) - .into(), - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Leave { - serial: _args[0].u, - surface: Proxy::::from_c_ptr( - _args[1].o as *mut _, - ) - .into(), - }) - } - 7 => Ok(Event::Removed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTabletPadV2(Proxy); - impl AsRef> for ZwpTabletPadV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTabletPadV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTabletPadV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTabletPadV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTabletPadV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTabletPadV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_tablet_pad_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_tablet_pad_v2_interface } - } - } - impl ZwpTabletPadV2 { - #[doc = "set compositor feedback\n\nRequests the compositor to use the provided feedback string\nassociated with this button. This request should be issued immediately\nafter a wp_tablet_pad_group.mode_switch event from the corresponding\ngroup is received, or whenever a button is mapped to a different\naction. See wp_tablet_pad_group.mode_switch for more details.\n\nClients are encouraged to provide context-aware descriptions for\nthe actions associated with each button, and compositors may use\nthis information to offer visual feedback on the button layout\n(e.g. on-screen displays).\n\nButton indices start at 0. Setting the feedback string on a button\nthat is reserved by the compositor (i.e. not belonging to any\nwp_tablet_pad_group) does not generate an error but the compositor\nis free to ignore the request.\n\nThe provided string 'description' is a UTF-8 encoded string to be\nassociated with this ring, and is considered user-visible; general\ninternationalization rules apply.\n\nThe serial argument will be that of the last\nwp_tablet_pad_group.mode_switch event received for the group of this\nbutton. Requests providing other serials than the most recent one will\nbe ignored."] - pub fn set_feedback(&self, button: u32, description: String, serial: u32) -> () { - let msg = Request::SetFeedback { - button: button, - description: description, - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the pad object\n\nDestroy the wp_tablet_pad object. Objects created from this object\nare unaffected and should be destroyed separately.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FEEDBACK_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GROUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PATH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTONS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REMOVED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"set_feedback\0" as *const u8 as *const c_char, - signature: b"usu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_tablet_pad_v2_events_group_types: [*const wl_interface; 1] = [unsafe { - &super::zwp_tablet_pad_group_v2::zwp_tablet_pad_group_v2_interface as *const wl_interface - }]; - static mut zwp_tablet_pad_v2_events_enter_types: [*const wl_interface; 3] = [ - NULLPTR as *const wl_interface, - unsafe { &super::zwp_tablet_v2::zwp_tablet_v2_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut zwp_tablet_pad_v2_events_leave_types: [*const wl_interface; 2] = - [NULLPTR as *const wl_interface, unsafe { - &super::wl_surface::wl_surface_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_tablet_pad_v2_events: [wl_message; 8] = [ - wl_message { - name: b"group\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_v2_events_group_types as *const _ }, - }, - wl_message { - name: b"path\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"buttons\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"uoo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_v2_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"uo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_tablet_pad_v2_events_leave_types as *const _ }, - }, - wl_message { - name: b"removed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_tablet_pad_v2_interface: wl_interface = wl_interface { - name: b"zwp_tablet_pad_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_tablet_pad_v2_requests as *const _ }, - event_count: 8, - events: unsafe { &zwp_tablet_pad_v2_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs deleted file mode 100644 index 084d96d..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs +++ /dev/null @@ -1,1542 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "text input\n\nAn object used for text input. Adds support for text input and input\nmethods to applications. A text_input object is created from a\nwl_text_input_manager and corresponds typically to a text entry in an\napplication.\n\nRequests are used to activate/deactivate the text_input object and set\nstate information like surrounding and selected text or the content type.\nThe information about entered text is sent to the text_input object via\nthe pre-edit and commit events. Using this interface removes the need\nfor applications to directly process hardware key events and compose text\nout of them.\n\nText is generally UTF-8 encoded, indices and lengths are in bytes.\n\nSerials are used to synchronize the state between the text input and\nan input method. New serials are sent by the text input in the\ncommit_state request and are used by the input method to indicate\nthe known text input state in events like preedit_string, commit_string,\nand keysym. The text input can then ignore events from the input method\nwhich are based on an outdated state (for example after a reset).\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zwp_text_input_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - bitflags! { # [doc = "content hint\n\nContent hint is a bitmask to allow to modify the behavior of the text\ninput."] pub struct ContentHint : u32 { # [doc = "no special behaviour"] const None = 0 ; # [doc = "auto completion, correction and capitalization"] const Default = 7 ; # [doc = "hidden and sensitive text"] const Password = 192 ; # [doc = "suggest word completions"] const AutoCompletion = 1 ; # [doc = "suggest word corrections"] const AutoCorrection = 2 ; # [doc = "switch to uppercase letters at the start of a sentence"] const AutoCapitalization = 4 ; # [doc = "prefer lowercase letters"] const Lowercase = 8 ; # [doc = "prefer uppercase letters"] const Uppercase = 16 ; # [doc = "prefer casing for titles and headings (can be language dependent)"] const Titlecase = 32 ; # [doc = "characters should be hidden"] const HiddenText = 64 ; # [doc = "typed text should not be stored"] const SensitiveData = 128 ; # [doc = "just latin characters should be entered"] const Latin = 256 ; # [doc = "the text input is multiline"] const Multiline = 512 ; } } - impl ContentHint { - pub fn from_raw(n: u32) -> Option { - Some(ContentHint::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "content purpose\n\nThe content purpose allows to specify the primary purpose of a text\ninput.\n\nThis allows an input method to show special purpose input panels with\nextra characters or to disallow some characters."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ContentPurpose { - #[doc = "default input, allowing all characters"] - Normal = 0, - #[doc = "allow only alphabetic characters"] - Alpha = 1, - #[doc = "allow only digits"] - Digits = 2, - #[doc = "input a number (including decimal separator and sign)"] - Number = 3, - #[doc = "input a phone number"] - Phone = 4, - #[doc = "input an URL"] - Url = 5, - #[doc = "input an email address"] - Email = 6, - #[doc = "input a name of a person"] - Name = 7, - #[doc = "input a password (combine with password or sensitive_data hint)"] - Password = 8, - #[doc = "input a date"] - Date = 9, - #[doc = "input a time"] - Time = 10, - #[doc = "input a date and time"] - Datetime = 11, - #[doc = "input for a terminal"] - Terminal = 12, - } - impl ContentPurpose { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ContentPurpose::Normal), - 1 => Some(ContentPurpose::Alpha), - 2 => Some(ContentPurpose::Digits), - 3 => Some(ContentPurpose::Number), - 4 => Some(ContentPurpose::Phone), - 5 => Some(ContentPurpose::Url), - 6 => Some(ContentPurpose::Email), - 7 => Some(ContentPurpose::Name), - 8 => Some(ContentPurpose::Password), - 9 => Some(ContentPurpose::Date), - 10 => Some(ContentPurpose::Time), - 11 => Some(ContentPurpose::Datetime), - 12 => Some(ContentPurpose::Terminal), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum PreeditStyle { - #[doc = "default style for composing text"] - Default = 0, - #[doc = "style should be the same as in non-composing text"] - None = 1, - Active = 2, - Inactive = 3, - Highlight = 4, - Underline = 5, - Selection = 6, - Incorrect = 7, - } - impl PreeditStyle { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(PreeditStyle::Default), - 1 => Some(PreeditStyle::None), - 2 => Some(PreeditStyle::Active), - 3 => Some(PreeditStyle::Inactive), - 4 => Some(PreeditStyle::Highlight), - 5 => Some(PreeditStyle::Underline), - 6 => Some(PreeditStyle::Selection), - 7 => Some(PreeditStyle::Incorrect), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum TextDirection { - #[doc = "automatic text direction based on text and language"] - Auto = 0, - #[doc = "left-to-right"] - Ltr = 1, - #[doc = "right-to-left"] - Rtl = 2, - } - impl TextDirection { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(TextDirection::Auto), - 1 => Some(TextDirection::Ltr), - 2 => Some(TextDirection::Rtl), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request activation\n\nRequests the text_input object to be activated (typically when the\ntext entry gets focus).\n\nThe seat argument is a wl_seat which maintains the focus for this\nactivation. The surface argument is a wl_surface assigned to the\ntext_input object and tracked for focus lost. The enter event\nis emitted on successful activation."] - Activate { - seat: super::wl_seat::WlSeat, - surface: super::wl_surface::WlSurface, - }, - #[doc = "request deactivation\n\nRequests the text_input object to be deactivated (typically when the\ntext entry lost focus). The seat argument is a wl_seat which was used\nfor activation."] - Deactivate { seat: super::wl_seat::WlSeat }, - #[doc = "show input panels\n\nRequests input panels (virtual keyboard) to show."] - ShowInputPanel, - #[doc = "hide input panels\n\nRequests input panels (virtual keyboard) to hide."] - HideInputPanel, - #[doc = "reset\n\nShould be called by an editor widget when the input state should be\nreset, for example after the text was changed outside of the normal\ninput method flow."] - Reset, - #[doc = "sets the surrounding text\n\nSets the plain surrounding text around the input position. Text is\nUTF-8 encoded. Cursor is the byte offset within the\nsurrounding text. Anchor is the byte offset of the\nselection anchor within the surrounding text. If there is no selected\ntext anchor, then it is the same as cursor."] - SetSurroundingText { - text: String, - cursor: u32, - anchor: u32, - }, - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some\nof the behavior.\n\nWhen no content type is explicitly set, a normal content purpose with\ndefault hints (auto completion, auto correction, auto capitalization)\nshould be assumed."] - SetContentType { - hint: ContentHint, - purpose: ContentPurpose, - }, - #[doc = ""] - SetCursorRectangle { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "sets preferred language\n\nSets a specific language. This allows for example a virtual keyboard to\nshow a language specific layout. The \"language\" argument is an RFC-3066\nformat language tag.\n\nIt could be used for example in a word processor to indicate the\nlanguage of the currently edited document or in an instant message\napplication which tracks languages of contacts."] - SetPreferredLanguage { language: String }, - #[doc = ""] - CommitState { serial: u32 }, - #[doc = ""] - InvokeAction { button: u32, index: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "activate", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "deactivate", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "show_input_panel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "hide_input_panel", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "reset", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_cursor_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_preferred_language", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "commit_state", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "invoke_action", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Activate { .. } => 0, - Request::Deactivate { .. } => 1, - Request::ShowInputPanel => 2, - Request::HideInputPanel => 3, - Request::Reset => 4, - Request::SetSurroundingText { .. } => 5, - Request::SetContentType { .. } => 6, - Request::SetCursorRectangle { .. } => 7, - Request::SetPreferredLanguage { .. } => 8, - Request::CommitState { .. } => 9, - Request::InvokeAction { .. } => 10, - } - } - fn since(&self) -> u32 { - match *self { - Request::Activate { .. } => 1, - Request::Deactivate { .. } => 1, - Request::ShowInputPanel => 1, - Request::HideInputPanel => 1, - Request::Reset => 1, - Request::SetSurroundingText { .. } => 1, - Request::SetContentType { .. } => 1, - Request::SetCursorRectangle { .. } => 1, - Request::SetPreferredLanguage { .. } => 1, - Request::CommitState { .. } => 1, - Request::InvokeAction { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Activate { seat, surface } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Object(surface.as_ref().id()), - ], - }, - Request::Deactivate { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()),], - }, - Request::ShowInputPanel => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::HideInputPanel => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::Reset => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - Request::SetSurroundingText { - text, - cursor, - anchor, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Uint(cursor), - Argument::Uint(anchor), - ], - }, - Request::SetContentType { hint, purpose } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Uint(hint.to_raw()), - Argument::Uint(purpose.to_raw()), - ], - }, - Request::SetCursorRectangle { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetPreferredLanguage { language } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(language.into()) - })),], - }, - Request::CommitState { serial } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::Uint(serial),], - }, - Request::InvokeAction { button, index } => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![Argument::Uint(button), Argument::Uint(index),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Activate { seat, surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Deactivate { seat } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::ShowInputPanel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::HideInputPanel => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::Reset => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - Request::SetSurroundingText { - text, - cursor, - anchor, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].u = cursor; - _args_array[2].u = anchor; - f(5, &mut _args_array) - } - Request::SetContentType { hint, purpose } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = hint.to_raw(); - _args_array[1].u = purpose.to_raw(); - f(6, &mut _args_array) - } - Request::SetCursorRectangle { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(7, &mut _args_array) - } - Request::SetPreferredLanguage { language } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(language).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(8, &mut _args_array) - } - Request::CommitState { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(9, &mut _args_array) - } - Request::InvokeAction { button, index } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = button; - _args_array[1].u = index; - f(10, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "enter event\n\nNotify the text_input object when it received focus. Typically in\nresponse to an activate request."] - Enter { - surface: super::wl_surface::WlSurface, - }, - #[doc = "leave event\n\nNotify the text_input object when it lost focus. Either in response\nto a deactivate request or when the assigned surface lost focus or was\ndestroyed."] - Leave, - #[doc = "modifiers map\n\nTransfer an array of 0-terminated modifier names. The position in\nthe array is the index of the modifier as used in the modifiers\nbitmask in the keysym event."] - ModifiersMap { map: Vec }, - #[doc = "state of the input panel\n\nNotify when the visibility state of the input panel changed."] - InputPanelState { state: u32 }, - #[doc = "pre-edit\n\nNotify when a new composing text (pre-edit) should be set around the\ncurrent cursor position. Any previously set composing text should\nbe removed.\n\nThe commit text can be used to replace the preedit text on reset\n(for example on unfocus).\n\nThe text input should also handle all preedit_style and preedit_cursor\nevents occurring directly before preedit_string."] - PreeditString { - serial: u32, - text: String, - commit: String, - }, - #[doc = "pre-edit styling\n\nSets styling information on composing text. The style is applied for\nlength bytes from index relative to the beginning of the composing\ntext (as byte offset). Multiple styles can\nbe applied to a composing text by sending multiple preedit_styling\nevents.\n\nThis event is handled as part of a following preedit_string event."] - PreeditStyling { - index: u32, - length: u32, - style: PreeditStyle, - }, - #[doc = "pre-edit cursor\n\nSets the cursor position inside the composing text (as byte\noffset) relative to the start of the composing text. When index is a\nnegative number no cursor is shown.\n\nThis event is handled as part of a following preedit_string event."] - PreeditCursor { index: i32 }, - #[doc = "commit\n\nNotify when text should be inserted into the editor widget. The text to\ncommit could be either just a single character after a key press or the\nresult of some composing (pre-edit). It could also be an empty text\nwhen some text should be removed (see delete_surrounding_text) or when\nthe input cursor should be moved (see cursor_position).\n\nAny previously set composing text should be removed."] - CommitString { serial: u32, text: String }, - #[doc = "set cursor to new position\n\nNotify when the cursor or anchor position should be modified.\n\nThis event should be handled as part of a following commit_string\nevent."] - CursorPosition { index: i32, anchor: i32 }, - #[doc = "delete surrounding text\n\nNotify when the text around the current cursor position should be\ndeleted.\n\nIndex is relative to the current cursor (in bytes).\nLength is the length of deleted text (in bytes).\n\nThis event should be handled as part of a following commit_string\nevent."] - DeleteSurroundingText { index: i32, length: u32 }, - #[doc = "keysym\n\nNotify when a key event was sent. Key events should not be used\nfor normal text input operations, which should be done with\ncommit_string, delete_surrounding_text, etc. The key event follows\nthe wl_keyboard key event convention. Sym is an XKB keysym, state a\nwl_keyboard key_state. Modifiers are a mask for effective modifiers\n(where the modifier indices are set by the modifiers_map event)"] - Keysym { - serial: u32, - time: u32, - sym: u32, - state: u32, - modifiers: u32, - }, - #[doc = "language\n\nSets the language of the input text. The \"language\" argument is an\nRFC-3066 format language tag."] - Language { serial: u32, language: String }, - #[doc = "text direction\n\nSets the text direction of input text.\n\nIt is mainly needed for showing an input cursor on the correct side of\nthe editor when there is no input done yet and making sure neutral\ndirection text is laid out properly."] - TextDirection { - serial: u32, - direction: TextDirection, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "modifiers_map", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "input_panel_state", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Str, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_styling", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "preedit_cursor", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "cursor_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "keysym", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "language", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "text_direction", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave => 1, - Event::ModifiersMap { .. } => 2, - Event::InputPanelState { .. } => 3, - Event::PreeditString { .. } => 4, - Event::PreeditStyling { .. } => 5, - Event::PreeditCursor { .. } => 6, - Event::CommitString { .. } => 7, - Event::CursorPosition { .. } => 8, - Event::DeleteSurroundingText { .. } => 9, - Event::Keysym { .. } => 10, - Event::Language { .. } => 11, - Event::TextDirection { .. } => 12, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave => 1, - Event::ModifiersMap { .. } => 1, - Event::InputPanelState { .. } => 1, - Event::PreeditString { .. } => 1, - Event::PreeditStyling { .. } => 1, - Event::PreeditCursor { .. } => 1, - Event::CommitString { .. } => 1, - Event::CursorPosition { .. } => 1, - Event::DeleteSurroundingText { .. } => 1, - Event::Keysym { .. } => 1, - Event::Language { .. } => 1, - Event::TextDirection { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Leave), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::ModifiersMap { - map: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::InputPanelState { - state: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditString { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - commit: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditStyling { - index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - style: { - if let Some(Argument::Uint(val)) = args.next() { - PreeditStyle::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditCursor { - index: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::CommitString { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::CursorPosition { - index: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - anchor: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 9 => { - let mut args = msg.args.into_iter(); - Ok(Event::DeleteSurroundingText { - index: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Keysym { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - time: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - sym: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - state: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - modifiers: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Language { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - language: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::TextDirection { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - direction: { - if let Some(Argument::Uint(val)) = args.next() { - TextDirection::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enter { - surface: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => Ok(Event::Leave), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::ModifiersMap { - map: { - let array = &*_args[0].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::InputPanelState { state: _args[0].u }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::PreeditString { - serial: _args[0].u, - text: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - commit: ::std::ffi::CStr::from_ptr(_args[2].s) - .to_string_lossy() - .into_owned(), - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::PreeditStyling { - index: _args[0].u, - length: _args[1].u, - style: PreeditStyle::from_raw(_args[2].u).ok_or(())?, - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PreeditCursor { index: _args[0].i }) - } - 7 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::CommitString { - serial: _args[0].u, - text: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - }) - } - 8 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::CursorPosition { - index: _args[0].i, - anchor: _args[1].i, - }) - } - 9 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::DeleteSurroundingText { - index: _args[0].i, - length: _args[1].u, - }) - } - 10 => { - let _args = ::std::slice::from_raw_parts(args, 5); - Ok(Event::Keysym { - serial: _args[0].u, - time: _args[1].u, - sym: _args[2].u, - state: _args[3].u, - modifiers: _args[4].u, - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Language { - serial: _args[0].u, - language: ::std::ffi::CStr::from_ptr(_args[1].s) - .to_string_lossy() - .into_owned(), - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::TextDirection { - serial: _args[0].u, - direction: TextDirection::from_raw(_args[1].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputV1(Proxy); - impl AsRef> for ZwpTextInputV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_v1_interface } - } - } - impl ZwpTextInputV1 { - #[doc = "request activation\n\nRequests the text_input object to be activated (typically when the\ntext entry gets focus).\n\nThe seat argument is a wl_seat which maintains the focus for this\nactivation. The surface argument is a wl_surface assigned to the\ntext_input object and tracked for focus lost. The enter event\nis emitted on successful activation."] - pub fn activate( - &self, - seat: &super::wl_seat::WlSeat, - surface: &super::wl_surface::WlSurface, - ) -> () { - let msg = Request::Activate { - seat: seat.clone(), - surface: surface.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "request deactivation\n\nRequests the text_input object to be deactivated (typically when the\ntext entry lost focus). The seat argument is a wl_seat which was used\nfor activation."] - pub fn deactivate(&self, seat: &super::wl_seat::WlSeat) -> () { - let msg = Request::Deactivate { seat: seat.clone() }; - self.0.send::(msg, None); - } - #[doc = "show input panels\n\nRequests input panels (virtual keyboard) to show."] - pub fn show_input_panel(&self) -> () { - let msg = Request::ShowInputPanel; - self.0.send::(msg, None); - } - #[doc = "hide input panels\n\nRequests input panels (virtual keyboard) to hide."] - pub fn hide_input_panel(&self) -> () { - let msg = Request::HideInputPanel; - self.0.send::(msg, None); - } - #[doc = "reset\n\nShould be called by an editor widget when the input state should be\nreset, for example after the text was changed outside of the normal\ninput method flow."] - pub fn reset(&self) -> () { - let msg = Request::Reset; - self.0.send::(msg, None); - } - #[doc = "sets the surrounding text\n\nSets the plain surrounding text around the input position. Text is\nUTF-8 encoded. Cursor is the byte offset within the\nsurrounding text. Anchor is the byte offset of the\nselection anchor within the surrounding text. If there is no selected\ntext anchor, then it is the same as cursor."] - pub fn set_surrounding_text(&self, text: String, cursor: u32, anchor: u32) -> () { - let msg = Request::SetSurroundingText { - text: text, - cursor: cursor, - anchor: anchor, - }; - self.0.send::(msg, None); - } - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some\nof the behavior.\n\nWhen no content type is explicitly set, a normal content purpose with\ndefault hints (auto completion, auto correction, auto capitalization)\nshould be assumed."] - pub fn set_content_type(&self, hint: ContentHint, purpose: ContentPurpose) -> () { - let msg = Request::SetContentType { - hint: hint, - purpose: purpose, - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn set_cursor_rectangle(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetCursorRectangle { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "sets preferred language\n\nSets a specific language. This allows for example a virtual keyboard to\nshow a language specific layout. The \"language\" argument is an RFC-3066\nformat language tag.\n\nIt could be used for example in a word processor to indicate the\nlanguage of the currently edited document or in an instant message\napplication which tracks languages of contacts."] - pub fn set_preferred_language(&self, language: String) -> () { - let msg = Request::SetPreferredLanguage { language: language }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn commit_state(&self, serial: u32) -> () { - let msg = Request::CommitState { serial: serial }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn invoke_action(&self, button: u32, index: u32) -> () { - let msg = Request::InvokeAction { - button: button, - index: index, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DEACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_INPUT_PANEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_HIDE_INPUT_PANEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PREFERRED_LANGUAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_INVOKE_ACTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODIFIERS_MAP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_INPUT_PANEL_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_STYLING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_CURSOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CURSOR_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_KEYSYM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LANGUAGE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TEXT_DIRECTION_SINCE: u32 = 1u32; - static mut zwp_text_input_v1_requests_activate_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut zwp_text_input_v1_requests_deactivate_types: [*const wl_interface; 1] = - [unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v1_requests: [wl_message; 11] = [ - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"oo\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v1_requests_activate_types as *const _ }, - }, - wl_message { - name: b"deactivate\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v1_requests_deactivate_types as *const _ }, - }, - wl_message { - name: b"show_input_panel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"hide_input_panel\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"reset\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_surrounding_text\0" as *const u8 as *const c_char, - signature: b"suu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_cursor_rectangle\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_preferred_language\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_state\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"invoke_action\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_text_input_v1_events_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v1_events: [wl_message; 13] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v1_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"modifiers_map\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"input_panel_state\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_string\0" as *const u8 as *const c_char, - signature: b"uss\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_styling\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preedit_cursor\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cursor_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"iu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"keysym\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"language\0" as *const u8 as *const c_char, - signature: b"us\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"text_direction\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_v1_interface: wl_interface = wl_interface { - name: b"zwp_text_input_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 11, - requests: unsafe { &zwp_text_input_v1_requests as *const _ }, - event_count: 13, - events: unsafe { &zwp_text_input_v1_events as *const _ }, - }; -} -#[doc = "text input manager\n\nA factory for text_input objects. This object is a global singleton."] -pub mod zwp_text_input_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create text input\n\nCreates a new text_input object."] - CreateTextInput {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "create_text_input", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateTextInput { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateTextInput { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwp_text_input_v1::ZwpTextInputV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateTextInput {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateTextInput {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputManagerV1(Proxy); - impl AsRef> for ZwpTextInputManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_manager_v1_interface } - } - } - impl ZwpTextInputManagerV1 { - #[doc = "create text input\n\nCreates a new text_input object."] - pub fn create_text_input(&self) -> Main { - let msg = Request::CreateTextInput {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_TEXT_INPUT_SINCE: u32 = 1u32; - static mut zwp_text_input_manager_v1_requests_create_text_input_types: [*const wl_interface; - 1] = - [ - unsafe { - &super::zwp_text_input_v1::zwp_text_input_v1_interface as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_manager_v1_requests: [wl_message; 1] = [wl_message { - name: b"create_text_input\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_manager_v1_requests_create_text_input_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_text_input_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_text_input_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs deleted file mode 100644 index 716c617..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs +++ /dev/null @@ -1,1109 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "text input\n\nThe zwp_text_input_v3 interface represents text input and input methods\nassociated with a seat. It provides enter/leave events to follow the\ntext input focus for a seat.\n\nRequests are used to enable/disable the text-input object and set\nstate information like surrounding and selected text or the content type.\nThe information about the entered text is sent to the text-input object\nvia the preedit_string and commit_string events.\n\nText is valid UTF-8 encoded, indices and lengths are in bytes. Indices\nmust not point to middle bytes inside a code point: they must either\npoint to the first byte of a code point or to the end of the buffer.\nLengths must be measured between two valid indices.\n\nFocus moving throughout surfaces will result in the emission of\nzwp_text_input_v3.enter and zwp_text_input_v3.leave events. The focused\nsurface must commit zwp_text_input_v3.enable and\nzwp_text_input_v3.disable requests as the keyboard focus moves across\neditable and non-editable elements of the UI. Those two requests are not\nexpected to be paired with each other, the compositor must be able to\nhandle consecutive series of the same request.\n\nState is sent by the state requests (set_surrounding_text,\nset_content_type and set_cursor_rectangle) and a commit request. After an\nenter event or disable request all state information is invalidated and\nneeds to be resent by the client."] -pub mod zwp_text_input_v3 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "text change reason\n\nReason for the change of surrounding text or cursor posision."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ChangeCause { - #[doc = "input method caused the change"] - InputMethod = 0, - #[doc = "something else than the input method caused the change"] - Other = 1, - } - impl ChangeCause { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ChangeCause::InputMethod), - 1 => Some(ChangeCause::Other), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { # [doc = "content hint\n\nContent hint is a bitmask to allow to modify the behavior of the text\ninput."] pub struct ContentHint : u32 { # [doc = "no special behavior"] const None = 0 ; # [doc = "suggest word completions"] const Completion = 1 ; # [doc = "suggest word corrections"] const Spellcheck = 2 ; # [doc = "switch to uppercase letters at the start of a sentence"] const AutoCapitalization = 4 ; # [doc = "prefer lowercase letters"] const Lowercase = 8 ; # [doc = "prefer uppercase letters"] const Uppercase = 16 ; # [doc = "prefer casing for titles and headings (can be language dependent)"] const Titlecase = 32 ; # [doc = "characters should be hidden"] const HiddenText = 64 ; # [doc = "typed text should not be stored"] const SensitiveData = 128 ; # [doc = "just Latin characters should be entered"] const Latin = 256 ; # [doc = "the text input is multiline"] const Multiline = 512 ; } } - impl ContentHint { - pub fn from_raw(n: u32) -> Option { - Some(ContentHint::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[doc = "content purpose\n\nThe content purpose allows to specify the primary purpose of a text\ninput.\n\nThis allows an input method to show special purpose input panels with\nextra characters or to disallow some characters."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ContentPurpose { - #[doc = "default input, allowing all characters"] - Normal = 0, - #[doc = "allow only alphabetic characters"] - Alpha = 1, - #[doc = "allow only digits"] - Digits = 2, - #[doc = "input a number (including decimal separator and sign)"] - Number = 3, - #[doc = "input a phone number"] - Phone = 4, - #[doc = "input an URL"] - Url = 5, - #[doc = "input an email address"] - Email = 6, - #[doc = "input a name of a person"] - Name = 7, - #[doc = "input a password (combine with sensitive_data hint)"] - Password = 8, - #[doc = "input is a numeric password (combine with sensitive_data hint)"] - Pin = 9, - #[doc = "input a date"] - Date = 10, - #[doc = "input a time"] - Time = 11, - #[doc = "input a date and time"] - Datetime = 12, - #[doc = "input for a terminal"] - Terminal = 13, - } - impl ContentPurpose { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ContentPurpose::Normal), - 1 => Some(ContentPurpose::Alpha), - 2 => Some(ContentPurpose::Digits), - 3 => Some(ContentPurpose::Number), - 4 => Some(ContentPurpose::Phone), - 5 => Some(ContentPurpose::Url), - 6 => Some(ContentPurpose::Email), - 7 => Some(ContentPurpose::Name), - 8 => Some(ContentPurpose::Password), - 9 => Some(ContentPurpose::Pin), - 10 => Some(ContentPurpose::Date), - 11 => Some(ContentPurpose::Time), - 12 => Some(ContentPurpose::Datetime), - 13 => Some(ContentPurpose::Terminal), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Destroy the wp_text_input\n\nDestroy the wp_text_input object. Also disables all surfaces enabled\nthrough this wp_text_input object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "Request text input to be enabled\n\nRequests text input on the surface previously obtained from the enter\nevent.\n\nThis request must be issued every time the active text input changes\nto a new one, including within the current surface. Use\nzwp_text_input_v3.disable when there is no longer any input focus on\nthe current surface.\n\nClients must not enable more than one text input on the single seat\nand should disable the current text input before enabling the new one.\nAt most one instance of text input may be in enabled state per instance,\nRequests to enable the another text input when some text input is active\nmust be ignored by compositor.\n\nThis request resets all state associated with previous enable, disable,\nset_surrounding_text, set_text_change_cause, set_content_type, and\nset_cursor_rectangle requests, as well as the state associated with\npreedit_string, commit_string, and delete_surrounding_text events.\n\nThe set_surrounding_text, set_content_type and set_cursor_rectangle\nrequests must follow if the text input supports the necessary\nfunctionality.\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe changes must be applied by the compositor after issuing a\nzwp_text_input_v3.commit request."] - Enable, - #[doc = "Disable text input on a surface\n\nExplicitly disable text input on the current surface (typically when\nthere is no focus on any text entry inside the surface).\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request."] - Disable, - #[doc = "sets the surrounding text\n\nSets the surrounding plain text around the input, excluding the preedit\ntext.\n\nThe client should notify the compositor of any changes in any of the\nvalues carried with this request, including changes caused by handling\nincoming text-input events as well as changes caused by other\nmechanisms like keyboard typing.\n\nIf the client is unaware of the text around the cursor, it should not\nissue this request, to signify lack of support to the compositor.\n\nText is UTF-8 encoded, and should include the cursor position, the\ncomplete selection and additional characters before and after them.\nThere is a maximum length of wayland messages, so text can not be\nlonger than 4000 bytes.\n\nCursor is the byte offset of the cursor within text buffer.\n\nAnchor is the byte offset of the selection anchor within text buffer.\nIf there is no selected text, anchor is the same as cursor.\n\nIf any preedit text is present, it is replaced with a cursor for the\npurpose of this event.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial state for affected fields is empty, meaning that the text\ninput does not support sending surrounding text. If the empty values\nget applied, subsequent attempts to change them may have no effect."] - SetSurroundingText { - text: String, - cursor: i32, - anchor: i32, - }, - #[doc = "indicates the cause of surrounding text change\n\nTells the compositor why the text surrounding the cursor changed.\n\nWhenever the client detects an external change in text, cursor, or\nanchor posision, it must issue this request to the compositor. This\nrequest is intended to give the input method a chance to update the\npreedit text in an appropriate way, e.g. by removing it when the user\nstarts typing with a keyboard.\n\ncause describes the source of the change.\n\nThe value set with this request is double-buffered. It must be applied\nand reset to initial at the next zwp_text_input_v3.commit request.\n\nThe initial value of cause is input_method."] - SetTextChangeCause { cause: ChangeCause }, - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some of\nthe behavior.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request.\nSubsequent attempts to update them may have no effect. The values\nremain valid until the next committed enable or disable request.\n\nThe initial value for hint is none, and the initial value for purpose\nis normal."] - SetContentType { - hint: ContentHint, - purpose: ContentPurpose, - }, - #[doc = "set cursor position\n\nMarks an area around the cursor as a x, y, width, height rectangle in\nsurface local coordinates.\n\nAllows the compositor to put a window with word suggestions near the\ncursor, without obstructing the text being input.\n\nIf the client is unaware of the position of edited text, it should not\nissue this request, to signify lack of support to the compositor.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial values describing a cursor rectangle are empty. That means\nthe text input does not support describing the cursor area. If the\nempty values get applied, subsequent attempts to change them may have\nno effect."] - SetCursorRectangle { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "commit state\n\nAtomically applies state changes recently sent to the compositor.\n\nThe commit request establishes and updates the state of the client, and\nmust be issued after any changes to apply them.\n\nText input state (enabled status, content purpose, content hint,\nsurrounding text and change cause, cursor rectangle) is conceptually\ndouble-buffered within the context of a text input, i.e. between a\ncommitted enable request and the following committed enable or disable\nrequest.\n\nProtocol requests modify the pending state, as opposed to the current\nstate in use by the input method. A commit request atomically applies\nall pending state, replacing the current state. After commit, the new\npending state is as documented for each related request.\n\nRequests are applied in the order of arrival.\n\nNeither current nor pending state are modified unless noted otherwise.\n\nThe compositor must count the number of commit requests coming from\neach zwp_text_input_v3 object and use the count as the serial in done\nevents."] - Commit, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "enable", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "disable", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_surrounding_text", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_text_change_cause", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_content_type", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_cursor_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "commit", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Enable => 1, - Request::Disable => 2, - Request::SetSurroundingText { .. } => 3, - Request::SetTextChangeCause { .. } => 4, - Request::SetContentType { .. } => 5, - Request::SetCursorRectangle { .. } => 6, - Request::Commit => 7, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Enable => 1, - Request::Disable => 1, - Request::SetSurroundingText { .. } => 1, - Request::SetTextChangeCause { .. } => 1, - Request::SetContentType { .. } => 1, - Request::SetCursorRectangle { .. } => 1, - Request::Commit => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Enable => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::Disable => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::SetSurroundingText { - text, - cursor, - anchor, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(text.into()) - })), - Argument::Int(cursor), - Argument::Int(anchor), - ], - }, - Request::SetTextChangeCause { cause } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(cause.to_raw()),], - }, - Request::SetContentType { hint, purpose } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![ - Argument::Uint(hint.to_raw()), - Argument::Uint(purpose.to_raw()), - ], - }, - Request::SetCursorRectangle { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Commit => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Enable => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::Disable => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::SetSurroundingText { - text, - cursor, - anchor, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(text).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].i = cursor; - _args_array[2].i = anchor; - f(3, &mut _args_array) - } - Request::SetTextChangeCause { cause } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = cause.to_raw(); - f(4, &mut _args_array) - } - Request::SetContentType { hint, purpose } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = hint.to_raw(); - _args_array[1].u = purpose.to_raw(); - f(5, &mut _args_array) - } - Request::SetCursorRectangle { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(6, &mut _args_array) - } - Request::Commit => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "enter event\n\nNotification that this seat's text-input focus is on a certain surface.\n\nIf client has created multiple text input objects, compositor must send\nthis event to all of them.\n\nWhen the seat has the keyboard capability the text-input focus follows\nthe keyboard focus. This event sets the current surface for the\ntext-input object."] - Enter { - surface: super::wl_surface::WlSurface, - }, - #[doc = "leave event\n\nNotification that this seat's text-input focus is no longer on a\ncertain surface. The client should reset any preedit string previously\nset.\n\nThe leave notification clears the current surface. It is sent before\nthe enter notification for the new focus. After leave event, compositor\nmust ignore requests from any text input instances until next enter\nevent.\n\nWhen the seat has the keyboard capability the text-input focus follows\nthe keyboard focus."] - Leave { - surface: super::wl_surface::WlSurface, - }, - #[doc = "pre-edit\n\nNotify when a new composing text (pre-edit) should be set at the\ncurrent cursor position. Any previously set composing text must be\nremoved. Any previously existing selected text must be removed.\n\nThe argument text contains the pre-edit string buffer.\n\nThe parameters cursor_begin and cursor_end are counted in bytes\nrelative to the beginning of the submitted text buffer. Cursor should\nbe hidden when both are equal to -1.\n\nThey could be represented by the client as a line if both values are\nthe same, or as a text highlight otherwise.\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.done event.\n\nThe initial value of text is an empty string, and cursor_begin,\ncursor_end and cursor_hidden are all 0."] - PreeditString { - text: Option, - cursor_begin: i32, - cursor_end: i32, - }, - #[doc = "text commit\n\nNotify when text should be inserted into the editor widget. The text to\ncommit could be either just a single character after a key press or the\nresult of some composing (pre-edit).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.done event.\n\nThe initial value of text is an empty string."] - CommitString { text: Option }, - #[doc = "delete surrounding text\n\nNotify when the text around the current cursor position should be\ndeleted.\n\nBefore_length and after_length are the number of bytes before and after\nthe current cursor index (excluding the selection) to delete.\n\nIf a preedit text is present, in effect before_length is counted from\nthe beginning of it, and after_length from its end (see done event\nsequence).\n\nValues set with this event are double-buffered. They must be applied\nand reset to initial on the next zwp_text_input_v3.done event.\n\nThe initial values of both before_length and after_length are 0."] - DeleteSurroundingText { - before_length: u32, - after_length: u32, - }, - #[doc = "apply changes\n\nInstruct the application to apply changes to state requested by the\npreedit_string, commit_string and delete_surrounding_text events. The\nstate relating to these events is double-buffered, and each one\nmodifies the pending state. This event replaces the current state with\nthe pending state.\n\nThe application must proceed by evaluating the changes in the following\norder:\n\n1. Replace existing preedit string with the cursor.\n2. Delete requested surrounding text.\n3. Insert commit string with the cursor at its end.\n4. Calculate surrounding text to send.\n5. Insert new preedit text in cursor position.\n6. Place cursor inside preedit text.\n\nThe serial number reflects the last state of the zwp_text_input_v3\nobject known to the compositor. The value of the serial argument must\nbe equal to the number of commit requests already issued on that object.\nWhen the client receives a done event with a serial different than the\nnumber of past commit requests, it must proceed as normal, except it\nshould not change the current state of the zwp_text_input_v3 object."] - Done { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "leave", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "preedit_string", - since: 1, - signature: &[ - super::ArgumentType::Str, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "commit_string", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "delete_surrounding_text", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Enter { .. } => 0, - Event::Leave { .. } => 1, - Event::PreeditString { .. } => 2, - Event::CommitString { .. } => 3, - Event::DeleteSurroundingText { .. } => 4, - Event::Done { .. } => 5, - } - } - fn since(&self) -> u32 { - match *self { - Event::Enter { .. } => 1, - Event::Leave { .. } => 1, - Event::PreeditString { .. } => 1, - Event::CommitString { .. } => 1, - Event::DeleteSurroundingText { .. } => 1, - Event::Done { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enter { - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Leave { - surface: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::PreeditString { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - if s.len() == 0 { - None - } else { - Some(s) - } - } else { - return Err(()); - } - }, - cursor_begin: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - cursor_end: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::CommitString { - text: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - if s.len() == 0 { - None - } else { - Some(s) - } - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::DeleteSurroundingText { - before_length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - after_length: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::Done { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enter { - surface: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Leave { - surface: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::PreeditString { - text: if _args[0].s.is_null() { - None - } else { - Some( - ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - ) - }, - cursor_begin: _args[1].i, - cursor_end: _args[2].i, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::CommitString { - text: if _args[0].s.is_null() { - None - } else { - Some( - ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - ) - }, - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::DeleteSurroundingText { - before_length: _args[0].u, - after_length: _args[1].u, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Done { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputV3(Proxy); - impl AsRef> for ZwpTextInputV3 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputV3 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputV3(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputV3) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputV3 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputV3 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_v3"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_v3_interface } - } - } - impl ZwpTextInputV3 { - #[doc = "Destroy the wp_text_input\n\nDestroy the wp_text_input object. Also disables all surfaces enabled\nthrough this wp_text_input object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "Request text input to be enabled\n\nRequests text input on the surface previously obtained from the enter\nevent.\n\nThis request must be issued every time the active text input changes\nto a new one, including within the current surface. Use\nzwp_text_input_v3.disable when there is no longer any input focus on\nthe current surface.\n\nClients must not enable more than one text input on the single seat\nand should disable the current text input before enabling the new one.\nAt most one instance of text input may be in enabled state per instance,\nRequests to enable the another text input when some text input is active\nmust be ignored by compositor.\n\nThis request resets all state associated with previous enable, disable,\nset_surrounding_text, set_text_change_cause, set_content_type, and\nset_cursor_rectangle requests, as well as the state associated with\npreedit_string, commit_string, and delete_surrounding_text events.\n\nThe set_surrounding_text, set_content_type and set_cursor_rectangle\nrequests must follow if the text input supports the necessary\nfunctionality.\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe changes must be applied by the compositor after issuing a\nzwp_text_input_v3.commit request."] - pub fn enable(&self) -> () { - let msg = Request::Enable; - self.0.send::(msg, None); - } - #[doc = "Disable text input on a surface\n\nExplicitly disable text input on the current surface (typically when\nthere is no focus on any text entry inside the surface).\n\nState set with this request is double-buffered. It will get applied on\nthe next zwp_text_input_v3.commit request."] - pub fn disable(&self) -> () { - let msg = Request::Disable; - self.0.send::(msg, None); - } - #[doc = "sets the surrounding text\n\nSets the surrounding plain text around the input, excluding the preedit\ntext.\n\nThe client should notify the compositor of any changes in any of the\nvalues carried with this request, including changes caused by handling\nincoming text-input events as well as changes caused by other\nmechanisms like keyboard typing.\n\nIf the client is unaware of the text around the cursor, it should not\nissue this request, to signify lack of support to the compositor.\n\nText is UTF-8 encoded, and should include the cursor position, the\ncomplete selection and additional characters before and after them.\nThere is a maximum length of wayland messages, so text can not be\nlonger than 4000 bytes.\n\nCursor is the byte offset of the cursor within text buffer.\n\nAnchor is the byte offset of the selection anchor within text buffer.\nIf there is no selected text, anchor is the same as cursor.\n\nIf any preedit text is present, it is replaced with a cursor for the\npurpose of this event.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial state for affected fields is empty, meaning that the text\ninput does not support sending surrounding text. If the empty values\nget applied, subsequent attempts to change them may have no effect."] - pub fn set_surrounding_text(&self, text: String, cursor: i32, anchor: i32) -> () { - let msg = Request::SetSurroundingText { - text: text, - cursor: cursor, - anchor: anchor, - }; - self.0.send::(msg, None); - } - #[doc = "indicates the cause of surrounding text change\n\nTells the compositor why the text surrounding the cursor changed.\n\nWhenever the client detects an external change in text, cursor, or\nanchor posision, it must issue this request to the compositor. This\nrequest is intended to give the input method a chance to update the\npreedit text in an appropriate way, e.g. by removing it when the user\nstarts typing with a keyboard.\n\ncause describes the source of the change.\n\nThe value set with this request is double-buffered. It must be applied\nand reset to initial at the next zwp_text_input_v3.commit request.\n\nThe initial value of cause is input_method."] - pub fn set_text_change_cause(&self, cause: ChangeCause) -> () { - let msg = Request::SetTextChangeCause { cause: cause }; - self.0.send::(msg, None); - } - #[doc = "set content purpose and hint\n\nSets the content purpose and content hint. While the purpose is the\nbasic purpose of an input field, the hint flags allow to modify some of\nthe behavior.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request.\nSubsequent attempts to update them may have no effect. The values\nremain valid until the next committed enable or disable request.\n\nThe initial value for hint is none, and the initial value for purpose\nis normal."] - pub fn set_content_type(&self, hint: ContentHint, purpose: ContentPurpose) -> () { - let msg = Request::SetContentType { - hint: hint, - purpose: purpose, - }; - self.0.send::(msg, None); - } - #[doc = "set cursor position\n\nMarks an area around the cursor as a x, y, width, height rectangle in\nsurface local coordinates.\n\nAllows the compositor to put a window with word suggestions near the\ncursor, without obstructing the text being input.\n\nIf the client is unaware of the position of edited text, it should not\nissue this request, to signify lack of support to the compositor.\n\nValues set with this request are double-buffered. They will get applied\non the next zwp_text_input_v3.commit request, and stay valid until the\nnext committed enable or disable request.\n\nThe initial values describing a cursor rectangle are empty. That means\nthe text input does not support describing the cursor area. If the\nempty values get applied, subsequent attempts to change them may have\nno effect."] - pub fn set_cursor_rectangle(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetCursorRectangle { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "commit state\n\nAtomically applies state changes recently sent to the compositor.\n\nThe commit request establishes and updates the state of the client, and\nmust be issued after any changes to apply them.\n\nText input state (enabled status, content purpose, content hint,\nsurrounding text and change cause, cursor rectangle) is conceptually\ndouble-buffered within the context of a text input, i.e. between a\ncommitted enable request and the following committed enable or disable\nrequest.\n\nProtocol requests modify the pending state, as opposed to the current\nstate in use by the input method. A commit request atomically applies\nall pending state, replacing the current state. After commit, the new\npending state is as documented for each related request.\n\nRequests are applied in the order of arrival.\n\nNeither current nor pending state are modified unless noted otherwise.\n\nThe compositor must count the number of commit requests coming from\neach zwp_text_input_v3 object and use the count as the serial in done\nevents."] - pub fn commit(&self) -> () { - let msg = Request::Commit; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ENABLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DISABLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TEXT_CHANGE_CAUSE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONTENT_TYPE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CURSOR_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COMMIT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREEDIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_COMMIT_STRING_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DELETE_SURROUNDING_TEXT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v3_requests: [wl_message; 8] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"enable\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"disable\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_surrounding_text\0" as *const u8 as *const c_char, - signature: b"sii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_text_change_cause\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_content_type\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_cursor_rectangle\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwp_text_input_v3_events_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - static mut zwp_text_input_v3_events_leave_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_v3_events: [wl_message; 6] = [ - wl_message { - name: b"enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v3_events_enter_types as *const _ }, - }, - wl_message { - name: b"leave\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_v3_events_leave_types as *const _ }, - }, - wl_message { - name: b"preedit_string\0" as *const u8 as *const c_char, - signature: b"?sii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"commit_string\0" as *const u8 as *const c_char, - signature: b"?s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"delete_surrounding_text\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_v3_interface: wl_interface = wl_interface { - name: b"zwp_text_input_v3\0" as *const u8 as *const c_char, - version: 1, - request_count: 8, - requests: unsafe { &zwp_text_input_v3_requests as *const _ }, - event_count: 6, - events: unsafe { &zwp_text_input_v3_events as *const _ }, - }; -} -#[doc = "text input manager\n\nA factory for text-input objects. This object is a global singleton."] -pub mod zwp_text_input_manager_v3 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Destroy the wp_text_input_manager\n\nDestroy the wp_text_input_manager object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new text input object\n\nCreates a new text-input object for a given seat."] - GetTextInput { seat: super::wl_seat::WlSeat }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_text_input", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetTextInput { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetTextInput { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_text_input_v3::ZwpTextInputV3, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetTextInput { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetTextInput { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpTextInputManagerV3(Proxy); - impl AsRef> for ZwpTextInputManagerV3 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpTextInputManagerV3 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpTextInputManagerV3(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpTextInputManagerV3) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpTextInputManagerV3 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpTextInputManagerV3 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_text_input_manager_v3"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_text_input_manager_v3_interface } - } - } - impl ZwpTextInputManagerV3 { - #[doc = "Destroy the wp_text_input_manager\n\nDestroy the wp_text_input_manager object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new text input object\n\nCreates a new text-input object for a given seat."] - pub fn get_text_input( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetTextInput { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TEXT_INPUT_SINCE: u32 = 1u32; - static mut zwp_text_input_manager_v3_requests_get_text_input_types: [*const wl_interface; 2] = [ - unsafe { &super::zwp_text_input_v3::zwp_text_input_v3_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_text_input_manager_v3_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_text_input\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwp_text_input_manager_v3_requests_get_text_input_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_text_input_manager_v3_interface: wl_interface = wl_interface { - name: b"zwp_text_input_manager_v3\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_text_input_manager_v3_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs deleted file mode 100644 index ab8114c..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs +++ /dev/null @@ -1,582 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "surface cropping and scaling\n\nThe global interface exposing surface cropping and scaling\ncapabilities is used to instantiate an interface extension for a\nwl_surface object. This extended interface will then allow\ncropping and scaling the surface contents, effectively\ndisconnecting the direct relationship between the buffer and the\nsurface size."] -pub mod wp_viewporter { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the surface already has a viewport object associated"] - ViewportExists = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::ViewportExists), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unbind from the cropping and scaling interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other objects,\nwp_viewport objects included.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "extend surface interface for crop and scale\n\nInstantiate an interface extension for the given wl_surface to\ncrop and scale its content. If the given wl_surface already has\na wp_viewport object associated, the viewport_exists\nprotocol error is raised."] - GetViewport { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_viewport", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetViewport { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetViewport { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetViewport { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetViewport { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpViewporter(Proxy); - impl AsRef> for WpViewporter { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpViewporter { - #[inline] - fn from(value: Proxy) -> Self { - WpViewporter(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpViewporter) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpViewporter { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpViewporter { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_viewporter"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_viewporter_interface } - } - } - impl WpViewporter { - #[doc = "unbind from the cropping and scaling interface\n\nInforms the server that the client will not be using this\nprotocol object anymore. This does not affect any other objects,\nwp_viewport objects included.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "extend surface interface for crop and scale\n\nInstantiate an interface extension for the given wl_surface to\ncrop and scale its content. If the given wl_surface already has\na wp_viewport object associated, the viewport_exists\nprotocol error is raised."] - pub fn get_viewport( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetViewport { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_VIEWPORT_SINCE: u32 = 1u32; - static mut wp_viewporter_requests_get_viewport_types: [*const wl_interface; 2] = [ - unsafe { &super::wp_viewport::wp_viewport_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_viewporter_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_viewport\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &wp_viewporter_requests_get_viewport_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_viewporter_interface: wl_interface = wl_interface { - name: b"wp_viewporter\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &wp_viewporter_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "crop and scale interface to a wl_surface\n\nAn additional interface to a wl_surface object, which allows the\nclient to specify the cropping and scaling of the surface\ncontents.\n\nThis interface works with two concepts: the source rectangle (src_x,\nsrc_y, src_width, src_height), and the destination size (dst_width,\ndst_height). The contents of the source rectangle are scaled to the\ndestination size, and content outside the source rectangle is ignored.\nThis state is double-buffered, and is applied on the next\nwl_surface.commit.\n\nThe two parts of crop and scale state are independent: the source\nrectangle, and the destination size. Initially both are unset, that\nis, no scaling is applied. The whole of the current wl_buffer is\nused as the source, and the surface size is as defined in\nwl_surface.attach.\n\nIf the destination size is set, it causes the surface size to become\ndst_width, dst_height. The source (rectangle) is scaled to exactly\nthis size. This overrides whatever the attached wl_buffer size is,\nunless the wl_buffer is NULL. If the wl_buffer is NULL, the surface\nhas no content and therefore no size. Otherwise, the size is always\nat least 1x1 in surface local coordinates.\n\nIf the source rectangle is set, it defines what area of the wl_buffer is\ntaken as the source. If the source rectangle is set and the destination\nsize is not set, then src_width and src_height must be integers, and the\nsurface size becomes the source rectangle size. This results in cropping\nwithout scaling. If src_width or src_height are not integers and\ndestination size is not set, the bad_size protocol error is raised when\nthe surface state is applied.\n\nThe coordinate transformations from buffer pixel coordinates up to\nthe surface-local coordinates happen in the following order:\n1. buffer_transform (wl_surface.set_buffer_transform)\n2. buffer_scale (wl_surface.set_buffer_scale)\n3. crop and scale (wp_viewport.set*)\nThis means, that the source rectangle coordinates of crop and scale\nare given in the coordinates after the buffer transform and scale,\ni.e. in the coordinates that would be the surface-local coordinates\nif the crop and scale was not applied.\n\nIf src_x or src_y are negative, the bad_value protocol error is raised.\nOtherwise, if the source rectangle is partially or completely outside of\nthe non-NULL wl_buffer, then the out_of_buffer protocol error is raised\nwhen the surface state is applied. A NULL wl_buffer does not raise the\nout_of_buffer error.\n\nThe x, y arguments of wl_surface.attach are applied as normal to\nthe surface. They indicate how many pixels to remove from the\nsurface size from the left and the top. In other words, they are\nstill in the surface-local coordinate system, just like dst_width\nand dst_height are.\n\nIf the wl_surface associated with the wp_viewport is destroyed,\nall wp_viewport requests except 'destroy' raise the protocol error\nno_surface.\n\nIf the wp_viewport object is destroyed, the crop and scale\nstate is removed from the wl_surface. The change will be applied\non the next wl_surface.commit."] -pub mod wp_viewport { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "negative or zero values in width or height"] - BadValue = 0, - #[doc = "destination size is not integer"] - BadSize = 1, - #[doc = "source rectangle extends outside of the content area"] - OutOfBuffer = 2, - #[doc = "the wl_surface was destroyed"] - NoSurface = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::BadValue), - 1 => Some(Error::BadSize), - 2 => Some(Error::OutOfBuffer), - 3 => Some(Error::NoSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove scaling and cropping from the surface\n\nThe associated wl_surface's crop and scale state is removed.\nThe change is applied on the next wl_surface.commit.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the source rectangle for cropping\n\nSet the source rectangle of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf all of x, y, width and height are -1.0, the source rectangle is\nunset instead. Any other set of values where width or height are zero\nor negative, or x or y are negative, raise the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - SetSource { - x: f64, - y: f64, - width: f64, - height: f64, - }, - #[doc = "set the surface size for scaling\n\nSet the destination size of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf width is -1 and height is -1, the destination size is unset\ninstead. Any other pair of values for width and height that\ncontains zero or negative values raises the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - SetDestination { width: i32, height: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_source", - since: 1, - signature: &[ - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_destination", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetSource { .. } => 1, - Request::SetDestination { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetSource { .. } => 1, - Request::SetDestination { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetSource { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Fixed((x * 256.) as i32), - Argument::Fixed((y * 256.) as i32), - Argument::Fixed((width * 256.) as i32), - Argument::Fixed((height * 256.) as i32), - ], - }, - Request::SetDestination { width, height } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetSource { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].f = (x * 256.) as i32; - _args_array[1].f = (y * 256.) as i32; - _args_array[2].f = (width * 256.) as i32; - _args_array[3].f = (height * 256.) as i32; - f(1, &mut _args_array) - } - Request::SetDestination { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct WpViewport(Proxy); - impl AsRef> for WpViewport { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for WpViewport { - #[inline] - fn from(value: Proxy) -> Self { - WpViewport(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: WpViewport) -> Self { - value.0 - } - } - impl std::fmt::Debug for WpViewport { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for WpViewport { - type Request = Request; - type Event = Event; - const NAME: &'static str = "wp_viewport"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &wp_viewport_interface } - } - } - impl WpViewport { - #[doc = "remove scaling and cropping from the surface\n\nThe associated wl_surface's crop and scale state is removed.\nThe change is applied on the next wl_surface.commit.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the source rectangle for cropping\n\nSet the source rectangle of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf all of x, y, width and height are -1.0, the source rectangle is\nunset instead. Any other set of values where width or height are zero\nor negative, or x or y are negative, raise the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - pub fn set_source(&self, x: f64, y: f64, width: f64, height: f64) -> () { - let msg = Request::SetSource { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the surface size for scaling\n\nSet the destination size of the associated wl_surface. See\nwp_viewport for the description, and relation to the wl_buffer\nsize.\n\nIf width is -1 and height is -1, the destination size is unset\ninstead. Any other pair of values for width and height that\ncontains zero or negative values raises the bad_value protocol\nerror.\n\nThe crop and scale state is double-buffered state, and will be\napplied on the next wl_surface.commit."] - pub fn set_destination(&self, width: i32, height: i32) -> () { - let msg = Request::SetDestination { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_DESTINATION_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut wp_viewport_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_source\0" as *const u8 as *const c_char, - signature: b"ffff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_destination\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut wp_viewport_interface: wl_interface = wl_interface { - name: b"wp_viewport\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &wp_viewport_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs deleted file mode 100644 index 1127fe6..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs +++ /dev/null @@ -1,1372 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manager to control data devices\n\nThis interface is a manager that allows creating per-seat data device\ncontrols."] -pub mod zwlr_data_control_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new data source\n\nCreate a new data source."] - CreateDataSource {}, - #[doc = "get a data device for a seat\n\nCreate a data device that can be used to manage a seat's selection."] - GetDataDevice { seat: super::wl_seat::WlSeat }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_data_source", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_data_device", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateDataSource { .. } => 0, - Request::GetDataDevice { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateDataSource { .. } => 1, - Request::GetDataDevice { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_data_control_source_v1::ZwlrDataControlSourceV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwlr_data_control_device_v1::ZwlrDataControlDeviceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateDataSource {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - Request::GetDataDevice { seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(seat.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateDataSource {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::GetDataDevice { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlManagerV1(Proxy); - impl AsRef> for ZwlrDataControlManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_manager_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_manager_v1_interface } - } - } - impl ZwlrDataControlManagerV1 { - #[doc = "create a new data source\n\nCreate a new data source."] - pub fn create_data_source( - &self, - ) -> Main { - let msg = Request::CreateDataSource {}; - self.0.send(msg, None).unwrap() - } - #[doc = "get a data device for a seat\n\nCreate a data device that can be used to manage a seat's selection."] - pub fn get_data_device( - &self, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GetDataDevice { seat: seat.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_DATA_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_DATA_DEVICE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_data_control_manager_v1_requests_create_data_source_types: - [*const wl_interface; 1] = [unsafe { - &super::zwlr_data_control_source_v1::zwlr_data_control_source_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_manager_v1_requests_get_data_device_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwlr_data_control_device_v1::zwlr_data_control_device_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"create_data_source\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_manager_v1_requests_create_data_source_types as *const _ - }, - }, - wl_message { - name: b"get_data_device\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_manager_v1_requests_get_data_device_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_manager_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwlr_data_control_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "manage a data device for a seat\n\nThis interface allows a client to manage a seat's selection.\n\nWhen the seat is destroyed, this object becomes inert."] -pub mod zwlr_data_control_device_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "source given to set_selection or set_primary_selection was already used before"] - UsedSource = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::UsedSource), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection to the data from\nthe source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the selection, set the source to NULL."] - SetSelection { - source: Option, - }, - #[doc = "destroy this data device\n\nDestroys the data device object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "copy data to the primary selection\n\nThis request asks the compositor to set the primary selection to the\ndata from the source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the primary selection, set the source to NULL.\n\nThe compositor will ignore this request if it does not support primary\nselection.\n\nOnly available since version 2 of the interface"] - SetPrimarySelection { - source: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_primary_selection", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSelection { .. } => 0, - Request::Destroy => 1, - Request::SetPrimarySelection { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSelection { .. } => 1, - Request::Destroy => 1, - Request::SetPrimarySelection { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSelection { source } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object( - source.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::SetPrimarySelection { source } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object( - source.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSelection { source } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::SetPrimarySelection { source } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = source - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new wlr_data_control_offer\n\nThe data_offer event introduces a new wlr_data_control_offer object,\nwhich will subsequently be used in either the\nwlr_data_control_device.selection event (for the regular clipboard\nselections) or the wlr_data_control_device.primary_selection event (for\nthe primary clipboard selections). Immediately following the\nwlr_data_control_device.data_offer event, the new data_offer object\nwill send out wlr_data_control_offer.offer events to describe the MIME\ntypes it offers."] - DataOffer { - id: Main, - }, - #[doc = "advertise new selection\n\nThe selection event is sent out to notify the client of a new\nwlr_data_control_offer for the selection for this device. The\nwlr_data_control_device.data_offer and the wlr_data_control_offer.offer\nevents are sent out immediately before this event to introduce the data\noffer object. The selection event is sent to a client when a new\nselection is set. The wlr_data_control_offer is valid until a new\nwlr_data_control_offer or NULL is received. The client must destroy the\nprevious selection wlr_data_control_offer, if any, upon receiving this\nevent.\n\nThe first selection event is sent upon binding the\nwlr_data_control_device object."] - Selection { - id: Option, - }, - #[doc = "this data control is no longer valid\n\nThis data control object is no longer valid and should be destroyed by\nthe client."] - Finished, - #[doc = "advertise new primary selection\n\nThe primary_selection event is sent out to notify the client of a new\nwlr_data_control_offer for the primary selection for this device. The\nwlr_data_control_device.data_offer and the wlr_data_control_offer.offer\nevents are sent out immediately before this event to introduce the data\noffer object. The primary_selection event is sent to a client when a\nnew primary selection is set. The wlr_data_control_offer is valid until\na new wlr_data_control_offer or NULL is received. The client must\ndestroy the previous primary selection wlr_data_control_offer, if any,\nupon receiving this event.\n\nIf the compositor supports primary selection, the first\nprimary_selection event is sent upon binding the\nwlr_data_control_device object.\n\nOnly available since version 2 of the interface"] - PrimarySelection { - id: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "data_offer", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "selection", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "primary_selection", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::DataOffer { .. } => 0, - Event::Selection { .. } => 1, - Event::Finished => 2, - Event::PrimarySelection { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::DataOffer { .. } => 1, - Event::Selection { .. } => 1, - Event::Finished => 1, - Event::PrimarySelection { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_data_control_offer_v1::ZwlrDataControlOfferV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::DataOffer { - id: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Selection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Finished), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::PrimarySelection { - id: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok (Event :: DataOffer { id : Main :: < super :: zwlr_data_control_offer_v1 :: ZwlrDataControlOfferV1 > :: from_c_ptr (_args [0] . o as * mut _) , }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Selection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwlr_data_control_offer_v1 :: ZwlrDataControlOfferV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - 2 => Ok(Event::Finished), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::PrimarySelection { - id: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwlr_data_control_offer_v1 :: ZwlrDataControlOfferV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlDeviceV1(Proxy); - impl AsRef> for ZwlrDataControlDeviceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlDeviceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlDeviceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlDeviceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlDeviceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlDeviceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_device_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_device_v1_interface } - } - } - impl ZwlrDataControlDeviceV1 { - #[doc = "copy data to the selection\n\nThis request asks the compositor to set the selection to the data from\nthe source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the selection, set the source to NULL."] - pub fn set_selection( - &self, - source: Option<&super::zwlr_data_control_source_v1::ZwlrDataControlSourceV1>, - ) -> () { - let msg = Request::SetSelection { - source: source.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "destroy this data device\n\nDestroys the data device object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "copy data to the primary selection\n\nThis request asks the compositor to set the primary selection to the\ndata from the source on behalf of the client.\n\nThe given source may not be used in any further set_selection or\nset_primary_selection requests. Attempting to use a previously used\nsource is a protocol error.\n\nTo unset the primary selection, set the source to NULL.\n\nThe compositor will ignore this request if it does not support primary\nselection.\n\nOnly available since version 2 of the interface."] - pub fn set_primary_selection( - &self, - source: Option<&super::zwlr_data_control_source_v1::ZwlrDataControlSourceV1>, - ) -> () { - let msg = Request::SetPrimarySelection { - source: source.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PRIMARY_SELECTION_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DATA_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SELECTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PRIMARY_SELECTION_SINCE: u32 = 2u32; - static mut zwlr_data_control_device_v1_requests_set_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_data_control_source_v1::zwlr_data_control_source_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_device_v1_requests_set_primary_selection_types: - [*const wl_interface; 1] = [unsafe { - &super::zwlr_data_control_source_v1::zwlr_data_control_source_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_device_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"set_selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_data_control_device_v1_requests_set_selection_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_primary_selection\0" as *const u8 as *const c_char, - signature: b"2?o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_device_v1_requests_set_primary_selection_types as *const _ - }, - }, - ]; - static mut zwlr_data_control_device_v1_events_data_offer_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_data_control_offer_v1::zwlr_data_control_offer_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_device_v1_events_selection_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_data_control_offer_v1::zwlr_data_control_offer_v1_interface - as *const wl_interface - }]; - static mut zwlr_data_control_device_v1_events_primary_selection_types: [*const wl_interface; - 1] = [unsafe { - &super::zwlr_data_control_offer_v1::zwlr_data_control_offer_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_device_v1_events: [wl_message; 4] = [ - wl_message { - name: b"data_offer\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_data_control_device_v1_events_data_offer_types as *const _ }, - }, - wl_message { - name: b"selection\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_data_control_device_v1_events_selection_types as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"primary_selection\0" as *const u8 as *const c_char, - signature: b"2?o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_data_control_device_v1_events_primary_selection_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_device_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_device_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwlr_data_control_device_v1_requests as *const _ }, - event_count: 4, - events: unsafe { &zwlr_data_control_device_v1_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nThe wlr_data_control_source object is the source side of a\nwlr_data_control_offer. It is created by the source client in a data\ntransfer and provides a way to describe the offered data and a way to\nrespond to requests to transfer the data."] -pub mod zwlr_data_control_source_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "offer sent after wlr_data_control_device.set_selection"] - InvalidOffer = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::InvalidOffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "add an offered MIME type\n\nThis request adds a MIME type to the set of MIME types advertised to\ntargets. Can be called several times to offer multiple types.\n\nCalling this after wlr_data_control_device.set_selection is a protocol\nerror."] - Offer { mime_type: String }, - #[doc = "destroy this source\n\nDestroys the data source object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Offer { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Offer { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Offer { mime_type } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Offer { mime_type } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "send the data\n\nRequest for data from the client. Send the data as the specified MIME\ntype over the passed file descriptor, then close it."] - Send { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "selection was cancelled\n\nThis data source is no longer valid. The data source has been replaced\nby another data source.\n\nThe client should clean up and destroy this data source."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "send", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Send { .. } => 0, - Event::Cancelled => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Send { .. } => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Send { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Send { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - fd: _args[1].h, - }) - } - 1 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlSourceV1(Proxy); - impl AsRef> for ZwlrDataControlSourceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlSourceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlSourceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlSourceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlSourceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlSourceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_source_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_source_v1_interface } - } - } - impl ZwlrDataControlSourceV1 { - #[doc = "add an offered MIME type\n\nThis request adds a MIME type to the set of MIME types advertised to\ntargets. Can be called several times to offer multiple types.\n\nCalling this after wlr_data_control_device.set_selection is a protocol\nerror."] - pub fn offer(&self, mime_type: String) -> () { - let msg = Request::Offer { - mime_type: mime_type, - }; - self.0.send::(msg, None); - } - #[doc = "destroy this source\n\nDestroys the data source object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_OFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SEND_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_source_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_source_v1_events: [wl_message; 2] = [ - wl_message { - name: b"send\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_source_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_source_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_data_control_source_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_data_control_source_v1_events as *const _ }, - }; -} -#[doc = "offer to transfer data\n\nA wlr_data_control_offer represents a piece of data offered for transfer\nby another client (the source client). The offer describes the different\nMIME types that the data can be converted to and provides the mechanism\nfor transferring the data directly from the source client."] -pub mod zwlr_data_control_offer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request and\nindicates the MIME type it wants to receive. The transfer happens\nthrough the passed file descriptor (typically created with the pipe\nsystem call). The source client writes the data in the MIME type\nrepresentation requested and then closes the file descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\nthen closes its end, at which point the transfer is complete.\n\nThis request may happen multiple times for different MIME types."] - Receive { - mime_type: String, - fd: ::std::os::unix::io::RawFd, - }, - #[doc = "destroy this offer\n\nDestroys the data offer object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "receive", - since: 1, - signature: &[super::ArgumentType::Str, super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Receive { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Receive { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Receive { mime_type, fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(mime_type.into()) - })), - Argument::Fd(fd), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Receive { mime_type, fd } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(mime_type).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - _args_array[1].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "advertise offered MIME type\n\nSent immediately after creating the wlr_data_control_offer object.\nOne event per offered MIME type."] - Offer { mime_type: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "offer", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Offer { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Offer { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Offer { - mime_type: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Offer { - mime_type: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrDataControlOfferV1(Proxy); - impl AsRef> for ZwlrDataControlOfferV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrDataControlOfferV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrDataControlOfferV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrDataControlOfferV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrDataControlOfferV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrDataControlOfferV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_data_control_offer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_data_control_offer_v1_interface } - } - } - impl ZwlrDataControlOfferV1 { - #[doc = "request that the data is transferred\n\nTo transfer the offered data, the client issues this request and\nindicates the MIME type it wants to receive. The transfer happens\nthrough the passed file descriptor (typically created with the pipe\nsystem call). The source client writes the data in the MIME type\nrepresentation requested and then closes the file descriptor.\n\nThe receiving client reads from the read end of the pipe until EOF and\nthen closes its end, at which point the transfer is complete.\n\nThis request may happen multiple times for different MIME types."] - pub fn receive(&self, mime_type: String, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::Receive { - mime_type: mime_type, - fd: fd, - }; - self.0.send::(msg, None); - } - #[doc = "destroy this offer\n\nDestroys the data offer object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RECEIVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OFFER_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_offer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"receive\0" as *const u8 as *const c_char, - signature: b"sh\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_data_control_offer_v1_events: [wl_message; 1] = [wl_message { - name: b"offer\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_data_control_offer_v1_interface: wl_interface = wl_interface { - name: b"zwlr_data_control_offer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_data_control_offer_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zwlr_data_control_offer_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs deleted file mode 100644 index 53dbf62..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs +++ /dev/null @@ -1,826 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 10] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manager to inform clients and begin capturing\n\nThis object is a manager with which to start capturing from sources."] -pub mod zwlr_export_dmabuf_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "capture a frame from an output\n\nCapture the next frame of an entire output."] - CaptureOutput { - overlay_cursor: i32, - output: super::wl_output::WlOutput, - }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "capture_output", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CaptureOutput { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CaptureOutput { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_export_dmabuf_frame_v1::ZwlrExportDmabufFrameV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Int(overlay_cursor), - Argument::Object(output.as_ref().id()), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = overlay_cursor; - _args_array[2].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrExportDmabufManagerV1(Proxy); - impl AsRef> for ZwlrExportDmabufManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrExportDmabufManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrExportDmabufManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrExportDmabufManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrExportDmabufManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrExportDmabufManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_export_dmabuf_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_export_dmabuf_manager_v1_interface } - } - } - impl ZwlrExportDmabufManagerV1 { - #[doc = "capture a frame from an output\n\nCapture the next frame of an entire output."] - pub fn capture_output( - &self, - overlay_cursor: i32, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::CaptureOutput { - overlay_cursor: overlay_cursor, - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CAPTURE_OUTPUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_export_dmabuf_manager_v1_requests_capture_output_types: [*const wl_interface; - 3] = [ - unsafe { - &super::zwlr_export_dmabuf_frame_v1::zwlr_export_dmabuf_frame_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_export_dmabuf_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"capture_output\0" as *const u8 as *const c_char, - signature: b"nio\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_export_dmabuf_manager_v1_requests_capture_output_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_export_dmabuf_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_export_dmabuf_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_export_dmabuf_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a DMA-BUF frame\n\nThis object represents a single DMA-BUF frame.\n\nIf the capture is successful, the compositor will first send a \"frame\"\nevent, followed by one or several \"object\". When the frame is available\nfor readout, the \"ready\" event is sent.\n\nIf the capture failed, the \"cancel\" event is sent. This can happen anytime\nbefore the \"ready\" event.\n\nOnce either a \"ready\" or a \"cancel\" event is received, the client should\ndestroy the frame. Once an \"object\" event is received, the client is\nresponsible for closing the associated file descriptor.\n\nAll frames are read-only and may not be written into or altered."] -pub mod zwlr_export_dmabuf_frame_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "frame flags\n\nSpecial flags that should be respected by the client."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Flags { - #[doc = "clients should copy frame before processing"] - Transient = 1, - } - impl Flags { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Flags::Transient), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "cancel reason\n\nIndicates reason for cancelling the frame."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum CancelReason { - #[doc = "temporary error, source will produce more frames"] - Temporary = 0, - #[doc = "fatal error, source will not produce frames"] - Permanent = 1, - #[doc = "temporary error, source will produce more frames"] - Resizing = 2, - } - impl CancelReason { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(CancelReason::Temporary), - 1 => Some(CancelReason::Permanent), - 2 => Some(CancelReason::Resizing), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "delete this object, used or not\n\nUnreferences the frame. This request must be called as soon as its no\nlonger used.\n\nIt can be called at any time by the client. The client will still have\nto close any FDs it has been given.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "a frame description\n\nMain event supplying the client with information about the frame. If the\ncapture didn't fail, this event is always emitted first before any other\nevents.\n\nThis event is followed by a number of \"object\" as specified by the\n\"num_objects\" argument."] - Frame { - width: u32, - height: u32, - offset_x: u32, - offset_y: u32, - buffer_flags: u32, - flags: Flags, - format: u32, - mod_high: u32, - mod_low: u32, - num_objects: u32, - }, - #[doc = "an object description\n\nEvent which serves to supply the client with the file descriptors\ncontaining the data for each object.\n\nAfter receiving this event, the client must always close the file\ndescriptor as soon as they're done with it and even if the frame fails."] - Object { - index: u32, - fd: ::std::os::unix::io::RawFd, - size: u32, - offset: u32, - stride: u32, - plane_index: u32, - }, - #[doc = "indicates frame is available for reading\n\nThis event is sent as soon as the frame is presented, indicating it is\navailable for reading. This event includes the time at which\npresentation happened at.\n\nThe timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples,\neach component being an unsigned 32-bit value. Whole seconds are in\ntv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo,\nand the additional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999]. The seconds part\nmay have an arbitrary offset at start.\n\nAfter receiving this event, the client should destroy this object."] - Ready { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - }, - #[doc = "indicates the frame is no longer valid\n\nIf the capture failed or if the frame is no longer valid after the\n\"frame\" event has been emitted, this event will be used to inform the\nclient to scrap the frame.\n\nIf the failure is temporary, the client may capture again the same\nsource. If the failure is permanent, any further attempts to capture the\nsame source will fail again.\n\nAfter receiving this event, the client should destroy this object."] - Cancel { reason: CancelReason }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "frame", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "object", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fd, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "ready", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "cancel", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Frame { .. } => 0, - Event::Object { .. } => 1, - Event::Ready { .. } => 2, - Event::Cancel { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Frame { .. } => 1, - Event::Object { .. } => 1, - Event::Ready { .. } => 1, - Event::Cancel { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Frame { - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - offset_x: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - offset_y: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - buffer_flags: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Flags::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mod_high: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - mod_low: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - num_objects: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Object { - index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - fd: { - if let Some(Argument::Fd(val)) = args.next() { - val - } else { - return Err(()); - } - }, - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - offset: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - stride: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - plane_index: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ready { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Cancel { - reason: { - if let Some(Argument::Uint(val)) = args.next() { - CancelReason::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 10); - Ok(Event::Frame { - width: _args[0].u, - height: _args[1].u, - offset_x: _args[2].u, - offset_y: _args[3].u, - buffer_flags: _args[4].u, - flags: Flags::from_raw(_args[5].u).ok_or(())?, - format: _args[6].u, - mod_high: _args[7].u, - mod_low: _args[8].u, - num_objects: _args[9].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 6); - Ok(Event::Object { - index: _args[0].u, - fd: _args[1].h, - size: _args[2].u, - offset: _args[3].u, - stride: _args[4].u, - plane_index: _args[5].u, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Ready { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Cancel { - reason: CancelReason::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrExportDmabufFrameV1(Proxy); - impl AsRef> for ZwlrExportDmabufFrameV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrExportDmabufFrameV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrExportDmabufFrameV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrExportDmabufFrameV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrExportDmabufFrameV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrExportDmabufFrameV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_export_dmabuf_frame_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_export_dmabuf_frame_v1_interface } - } - } - impl ZwlrExportDmabufFrameV1 { - #[doc = "delete this object, used or not\n\nUnreferences the frame. This request must be called as soon as its no\nlonger used.\n\nIt can be called at any time by the client. The client will still have\nto close any FDs it has been given.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OBJECT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_READY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCEL_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_export_dmabuf_frame_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_export_dmabuf_frame_v1_events: [wl_message; 4] = [ - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"uuuuuuuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"object\0" as *const u8 as *const c_char, - signature: b"uhuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ready\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancel\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_export_dmabuf_frame_v1_interface: wl_interface = wl_interface { - name: b"zwlr_export_dmabuf_frame_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwlr_export_dmabuf_frame_v1_requests as *const _ }, - event_count: 4, - events: unsafe { &zwlr_export_dmabuf_frame_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs deleted file mode 100644 index 7e22741..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs +++ /dev/null @@ -1,1154 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "list and control opened apps\n\nThe purpose of this protocol is to enable the creation of taskbars\nand docks by providing them with a list of opened applications and\nletting them request certain actions on them, like maximizing, etc.\n\nAfter a client binds the zwlr_foreign_toplevel_manager_v1, each opened\ntoplevel window will be sent via the toplevel event"] -pub mod zwlr_foreign_toplevel_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for new toplevels.\nHowever the compositor may emit further toplevel_created events, until\nthe finished event is emitted.\n\nThe client must not send any more requests after this one."] - Stop, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Stop => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Stop => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Stop => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Stop => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "a toplevel has been created\n\nThis event is emitted whenever a new toplevel window is created. It\nis emitted for all toplevels, regardless of the app that has created\nthem.\n\nAll initial details of the toplevel(title, app_id, states, etc.) will\nbe sent immediately after this event via the corresponding events in\nzwlr_foreign_toplevel_handle_v1."] - Toplevel { - toplevel: Main, - }, - #[doc = "the compositor has finished with the toplevel manager\n\nThis event indicates that the compositor is done sending events to the\nzwlr_foreign_toplevel_manager_v1. The server will destroy the object\nimmediately after sending this request, so it will become invalid and\nthe client should free any resources associated with it."] - Finished, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "toplevel", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Toplevel { .. } => 0, - Event::Finished => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Toplevel { .. } => 1, - Event::Finished => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_foreign_toplevel_handle_v1::ZwlrForeignToplevelHandleV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Toplevel { - toplevel: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Finished), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Toplevel { - toplevel: Main::< - super::zwlr_foreign_toplevel_handle_v1::ZwlrForeignToplevelHandleV1, - >::from_c_ptr(_args[0].o as *mut _), - }) - } - 1 => Ok(Event::Finished), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrForeignToplevelManagerV1(Proxy); - impl AsRef> for ZwlrForeignToplevelManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrForeignToplevelManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrForeignToplevelManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrForeignToplevelManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrForeignToplevelManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrForeignToplevelManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_foreign_toplevel_manager_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_foreign_toplevel_manager_v1_interface } - } - } - impl ZwlrForeignToplevelManagerV1 { - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for new toplevels.\nHowever the compositor may emit further toplevel_created events, until\nthe finished event is emitted.\n\nThe client must not send any more requests after this one."] - pub fn stop(&self) -> () { - let msg = Request::Stop; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_manager_v1_requests: [wl_message; 1] = [wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - static mut zwlr_foreign_toplevel_manager_v1_events_toplevel_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_foreign_toplevel_handle_v1::zwlr_foreign_toplevel_handle_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_manager_v1_events: [wl_message; 2] = [ - wl_message { - name: b"toplevel\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_foreign_toplevel_manager_v1_events_toplevel_types as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_foreign_toplevel_manager_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 1, - requests: unsafe { &zwlr_foreign_toplevel_manager_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_foreign_toplevel_manager_v1_events as *const _ }, - }; -} -#[doc = "an opened toplevel\n\nA zwlr_foreign_toplevel_handle_v1 object represents an opened toplevel\nwindow. Each app may have multiple opened toplevels.\n\nEach toplevel has a list of outputs it is visible on, conveyed to the\nclient with the output_enter and output_leave events."] -pub mod zwlr_foreign_toplevel_handle_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "types of states on the toplevel\n\nThe different states that a toplevel can have. These have the same meaning\nas the states with the same names defined in xdg-toplevel"] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the toplevel is maximized"] - Maximized = 0, - #[doc = "the toplevel is minimized"] - Minimized = 1, - #[doc = "the toplevel is active"] - Activated = 2, - #[doc = "the toplevel is fullscreen"] - Fullscreen = 3, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(State::Maximized), - 1 => Some(State::Minimized), - 2 => Some(State::Activated), - 3 => Some(State::Fullscreen), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the provided rectangle is invalid"] - InvalidRectangle = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidRectangle), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "requests that the toplevel be maximized\n\nRequests that the toplevel be maximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - SetMaximized, - #[doc = "requests that the toplevel be unmaximized\n\nRequests that the toplevel be unmaximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - UnsetMaximized, - #[doc = "requests that the toplevel be minimized\n\nRequests that the toplevel be minimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - SetMinimized, - #[doc = "requests that the toplevel be unminimized\n\nRequests that the toplevel be unminimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - UnsetMinimized, - #[doc = "activate the toplevel\n\nRequest that this toplevel be activated on the given seat.\nThere is no guarantee the toplevel will be actually activated."] - Activate { seat: super::wl_seat::WlSeat }, - #[doc = "request that the toplevel be closed\n\nSend a request to the toplevel to close itself. The compositor would\ntypically use a shell-specific method to carry out this request, for\nexample by sending the xdg_toplevel.close event. However, this gives\nno guarantees the toplevel will actually be destroyed. If and when\nthis happens, the zwlr_foreign_toplevel_handle_v1.closed event will\nbe emitted."] - Close, - #[doc = "the rectangle which represents the toplevel\n\nThe rectangle of the surface specified in this request corresponds to\nthe place where the app using this protocol represents the given toplevel.\nIt can be used by the compositor as a hint for some operations, e.g\nminimizing. The client is however not required to set this, in which\ncase the compositor is free to decide some default value.\n\nIf the client specifies more than one rectangle, only the last one is\nconsidered.\n\nThe dimensions are given in surface-local coordinates.\nSetting width=height=0 removes the already-set rectangle."] - SetRectangle { - surface: super::wl_surface::WlSurface, - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "destroy the zwlr_foreign_toplevel_handle_v1 object\n\nDestroys the zwlr_foreign_toplevel_handle_v1 object.\n\nThis request should be called either when the client does not want to\nuse the toplevel anymore or after the closed event to finalize the\ndestruction of the object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "request that the toplevel be fullscreened\n\nRequests that the toplevel be fullscreened on the given output. If the\nfullscreen state and/or the outputs the toplevel is visible on actually\nchange, this will be indicated by the state and output_enter/leave\nevents.\n\nThe output parameter is only a hint to the compositor. Also, if output\nis NULL, the compositor should decide which output the toplevel will be\nfullscreened on, if at all.\n\nOnly available since version 2 of the interface"] - SetFullscreen { - output: Option, - }, - #[doc = "request that the toplevel be unfullscreened\n\nRequests that the toplevel be unfullscreened. If the fullscreen state\nactually changes, this will be indicated by the state event.\n\nOnly available since version 2 of the interface"] - UnsetFullscreen, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_minimized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "activate", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_rectangle", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 2, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetMaximized => 0, - Request::UnsetMaximized => 1, - Request::SetMinimized => 2, - Request::UnsetMinimized => 3, - Request::Activate { .. } => 4, - Request::Close => 5, - Request::SetRectangle { .. } => 6, - Request::Destroy => 7, - Request::SetFullscreen { .. } => 8, - Request::UnsetFullscreen => 9, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetMinimized => 1, - Request::UnsetMinimized => 1, - Request::Activate { .. } => 1, - Request::Close => 1, - Request::SetRectangle { .. } => 1, - Request::Destroy => 1, - Request::SetFullscreen { .. } => 2, - Request::UnsetFullscreen => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::UnsetMinimized => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::Activate { seat } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Object(seat.as_ref().id()),], - }, - Request::Close => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![], - }, - Request::SetRectangle { - surface, - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(surface.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::UnsetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::Activate { seat } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - f(4, &mut _args_array) - } - Request::Close => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(5, &mut _args_array) - } - Request::SetRectangle { - surface, - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - _args_array[1].i = x; - _args_array[2].i = y; - _args_array[3].i = width; - _args_array[4].i = height; - f(6, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(8, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "title change\n\nThis event is emitted whenever the title of the toplevel changes."] - Title { title: String }, - #[doc = "app-id change\n\nThis event is emitted whenever the app-id of the toplevel changes."] - AppId { app_id: String }, - #[doc = "toplevel entered an output\n\nThis event is emitted whenever the toplevel becomes visible on\nthe given output. A toplevel may be visible on multiple outputs."] - OutputEnter { output: super::wl_output::WlOutput }, - #[doc = "toplevel left an output\n\nThis event is emitted whenever the toplevel stops being visible on\nthe given output. It is guaranteed that an entered-output event\nwith the same output has been emitted before this event."] - OutputLeave { output: super::wl_output::WlOutput }, - #[doc = "the toplevel state changed\n\nThis event is emitted immediately after the zlw_foreign_toplevel_handle_v1\nis created and each time the toplevel state changes, either because of a\ncompositor action or because of a request in this protocol."] - State { state: Vec }, - #[doc = "all information about the toplevel has been sent\n\nThis event is sent after all changes in the toplevel state have been\nsent.\n\nThis allows changes to the zwlr_foreign_toplevel_handle_v1 properties\nto be seen as atomic, even if they happen via multiple events."] - Done, - #[doc = "this toplevel has been destroyed\n\nThis event means the toplevel has been destroyed. It is guaranteed there\nwon't be any more events for this zwlr_foreign_toplevel_handle_v1. The\ntoplevel itself becomes inert so any requests will be ignored except the\ndestroy request."] - Closed, - #[doc = "parent change\n\nThis event is emitted whenever the parent of the toplevel changes.\n\nNo event is emitted when the parent handle is destroyed by the client.\n\nOnly available since version 3 of the interface"] - Parent { - parent: Option, - }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "output_enter", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "output_leave", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "state", - since: 1, - signature: &[super::ArgumentType::Array], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "closed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "parent", - since: 3, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Title { .. } => 0, - Event::AppId { .. } => 1, - Event::OutputEnter { .. } => 2, - Event::OutputLeave { .. } => 3, - Event::State { .. } => 4, - Event::Done => 5, - Event::Closed => 6, - Event::Parent { .. } => 7, - } - } - fn since(&self) -> u32 { - match *self { - Event::Title { .. } => 1, - Event::AppId { .. } => 1, - Event::OutputEnter { .. } => 1, - Event::OutputLeave { .. } => 1, - Event::State { .. } => 1, - Event::Done => 1, - Event::Closed => 1, - Event::Parent { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Title { - title: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::AppId { - app_id: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::OutputEnter { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::OutputLeave { - output: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::State { - state: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Closed), - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::Parent { - parent: { - if let Some(Argument::Object(val)) = args.next() { - if val == 0 { - None - } else { - Some(map.get_or_dead(val).into()) - } - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Title { - title: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::AppId { - app_id: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::OutputEnter { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::OutputLeave { - output: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::State { - state: { - let array = &*_args[0].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 5 => Ok(Event::Done), - 6 => Ok(Event::Closed), - 7 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Parent { - parent: if _args[0].o.is_null() { - None - } else { - Some (Proxy :: < super :: zwlr_foreign_toplevel_handle_v1 :: ZwlrForeignToplevelHandleV1 > :: from_c_ptr (_args [0] . o as * mut _ ,) . into ()) - }, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrForeignToplevelHandleV1(Proxy); - impl AsRef> for ZwlrForeignToplevelHandleV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrForeignToplevelHandleV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrForeignToplevelHandleV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrForeignToplevelHandleV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrForeignToplevelHandleV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrForeignToplevelHandleV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_foreign_toplevel_handle_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_foreign_toplevel_handle_v1_interface } - } - } - impl ZwlrForeignToplevelHandleV1 { - #[doc = "requests that the toplevel be maximized\n\nRequests that the toplevel be maximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "requests that the toplevel be unmaximized\n\nRequests that the toplevel be unmaximized. If the maximized state actually\nchanges, this will be indicated by the state event."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "requests that the toplevel be minimized\n\nRequests that the toplevel be minimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - #[doc = "requests that the toplevel be unminimized\n\nRequests that the toplevel be unminimized. If the minimized state actually\nchanges, this will be indicated by the state event."] - pub fn unset_minimized(&self) -> () { - let msg = Request::UnsetMinimized; - self.0.send::(msg, None); - } - #[doc = "activate the toplevel\n\nRequest that this toplevel be activated on the given seat.\nThere is no guarantee the toplevel will be actually activated."] - pub fn activate(&self, seat: &super::wl_seat::WlSeat) -> () { - let msg = Request::Activate { seat: seat.clone() }; - self.0.send::(msg, None); - } - #[doc = "request that the toplevel be closed\n\nSend a request to the toplevel to close itself. The compositor would\ntypically use a shell-specific method to carry out this request, for\nexample by sending the xdg_toplevel.close event. However, this gives\nno guarantees the toplevel will actually be destroyed. If and when\nthis happens, the zwlr_foreign_toplevel_handle_v1.closed event will\nbe emitted."] - pub fn close(&self) -> () { - let msg = Request::Close; - self.0.send::(msg, None); - } - #[doc = "the rectangle which represents the toplevel\n\nThe rectangle of the surface specified in this request corresponds to\nthe place where the app using this protocol represents the given toplevel.\nIt can be used by the compositor as a hint for some operations, e.g\nminimizing. The client is however not required to set this, in which\ncase the compositor is free to decide some default value.\n\nIf the client specifies more than one rectangle, only the last one is\nconsidered.\n\nThe dimensions are given in surface-local coordinates.\nSetting width=height=0 removes the already-set rectangle."] - pub fn set_rectangle( - &self, - surface: &super::wl_surface::WlSurface, - x: i32, - y: i32, - width: i32, - height: i32, - ) -> () { - let msg = Request::SetRectangle { - surface: surface.clone(), - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the zwlr_foreign_toplevel_handle_v1 object\n\nDestroys the zwlr_foreign_toplevel_handle_v1 object.\n\nThis request should be called either when the client does not want to\nuse the toplevel anymore or after the closed event to finalize the\ndestruction of the object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "request that the toplevel be fullscreened\n\nRequests that the toplevel be fullscreened on the given output. If the\nfullscreen state and/or the outputs the toplevel is visible on actually\nchange, this will be indicated by the state and output_enter/leave\nevents.\n\nThe output parameter is only a hint to the compositor. Also, if output\nis NULL, the compositor should decide which output the toplevel will be\nfullscreened on, if at all.\n\nOnly available since version 2 of the interface."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "request that the toplevel be unfullscreened\n\nRequests that the toplevel be unfullscreened. If the fullscreen state\nactually changes, this will be indicated by the state event.\n\nOnly available since version 2 of the interface."] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACTIVATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CLOSE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_RECTANGLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OUTPUT_ENTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_OUTPUT_LEAVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_STATE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PARENT_SINCE: u32 = 3u32; - static mut zwlr_foreign_toplevel_handle_v1_requests_activate_types: [*const wl_interface; 1] = - [unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }]; - static mut zwlr_foreign_toplevel_handle_v1_requests_set_rectangle_types: [*const wl_interface; - 5] = [ - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut zwlr_foreign_toplevel_handle_v1_requests_set_fullscreen_types: - [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_handle_v1_requests: [wl_message; 10] = [ - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"activate\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_foreign_toplevel_handle_v1_requests_activate_types as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_rectangle\0" as *const u8 as *const c_char, - signature: b"oiiii\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_requests_set_rectangle_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"2?o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_requests_set_fullscreen_types as *const _ - }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"2\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwlr_foreign_toplevel_handle_v1_events_output_enter_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - static mut zwlr_foreign_toplevel_handle_v1_events_output_leave_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - static mut zwlr_foreign_toplevel_handle_v1_events_parent_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_foreign_toplevel_handle_v1::zwlr_foreign_toplevel_handle_v1_interface - as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_handle_v1_events: [wl_message; 8] = [ - wl_message { - name: b"title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"output_enter\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_events_output_enter_types as *const _ - }, - }, - wl_message { - name: b"output_leave\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_foreign_toplevel_handle_v1_events_output_leave_types as *const _ - }, - }, - wl_message { - name: b"state\0" as *const u8 as *const c_char, - signature: b"a\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"closed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"parent\0" as *const u8 as *const c_char, - signature: b"3?o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_foreign_toplevel_handle_v1_events_parent_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_foreign_toplevel_handle_v1_interface: wl_interface = wl_interface { - name: b"zwlr_foreign_toplevel_handle_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 10, - requests: unsafe { &zwlr_foreign_toplevel_handle_v1_requests as *const _ }, - event_count: 8, - events: unsafe { &zwlr_foreign_toplevel_handle_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs deleted file mode 100644 index 511fee7..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs +++ /dev/null @@ -1,545 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "manager to create per-output gamma controls\n\nThis interface is a manager that allows creating per-output gamma\ncontrols."] -pub mod zwlr_gamma_control_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get a gamma control for an output\n\nCreate a gamma control that can be used to adjust gamma tables for the\nprovided output."] - GetGammaControl { output: super::wl_output::WlOutput }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_gamma_control", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetGammaControl { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetGammaControl { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_gamma_control_v1::ZwlrGammaControlV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetGammaControl { output } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(output.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetGammaControl { output } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrGammaControlManagerV1(Proxy); - impl AsRef> for ZwlrGammaControlManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrGammaControlManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrGammaControlManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrGammaControlManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrGammaControlManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrGammaControlManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_gamma_control_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_gamma_control_manager_v1_interface } - } - } - impl ZwlrGammaControlManagerV1 { - #[doc = "get a gamma control for an output\n\nCreate a gamma control that can be used to adjust gamma tables for the\nprovided output."] - pub fn get_gamma_control( - &self, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::GetGammaControl { - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_GAMMA_CONTROL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_gamma_control_manager_v1_requests_get_gamma_control_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zwlr_gamma_control_v1::zwlr_gamma_control_v1_interface as *const wl_interface - }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_gamma_control_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_gamma_control\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_gamma_control_manager_v1_requests_get_gamma_control_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_gamma_control_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_gamma_control_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_gamma_control_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "adjust gamma tables for an output\n\nThis interface allows a client to adjust gamma tables for a particular\noutput.\n\nThe client will receive the gamma size, and will then be able to set gamma\ntables. At any time the compositor can send a failed event indicating that\nthis object is no longer valid.\n\nThere can only be at most one gamma control object per output, which\nhas exclusive access to this particular output. When the gamma control\nobject is destroyed, the gamma table is restored to its original value."] -pub mod zwlr_gamma_control_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid gamma tables"] - InvalidGamma = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::InvalidGamma), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the gamma table\n\nSet the gamma table. The file descriptor can be memory-mapped to provide\nthe raw gamma table, which contains successive gamma ramps for the red,\ngreen and blue channels. Each gamma ramp is an array of 16-byte unsigned\nintegers which has the same length as the gamma size.\n\nThe file descriptor data must have the same length as three times the\ngamma size."] - SetGamma { fd: ::std::os::unix::io::RawFd }, - #[doc = "destroy this control\n\nDestroys the gamma control object. If the object is still valid, this\nrestores the original gamma tables.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_gamma", - since: 1, - signature: &[super::ArgumentType::Fd], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetGamma { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetGamma { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetGamma { fd } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Fd(fd),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetGamma { fd } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].h = fd; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "size of gamma ramps\n\nAdvertise the size of each gamma ramp.\n\nThis event is sent immediately when the gamma control object is created."] - GammaSize { size: u32 }, - #[doc = "object no longer valid\n\nThis event indicates that the gamma control is no longer valid. This\ncan happen for a number of reasons, including:\n- The output doesn't support gamma tables\n- Setting the gamma tables failed\n- Another client already has exclusive gamma control for this output\n- The compositor has transferred gamma control to another client\n\nUpon receiving this event, the client should destroy this object."] - Failed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "gamma_size", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::GammaSize { .. } => 0, - Event::Failed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::GammaSize { .. } => 1, - Event::Failed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::GammaSize { - size: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Failed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::GammaSize { size: _args[0].u }) - } - 1 => Ok(Event::Failed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrGammaControlV1(Proxy); - impl AsRef> for ZwlrGammaControlV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrGammaControlV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrGammaControlV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrGammaControlV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrGammaControlV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrGammaControlV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_gamma_control_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_gamma_control_v1_interface } - } - } - impl ZwlrGammaControlV1 { - #[doc = "set the gamma table\n\nSet the gamma table. The file descriptor can be memory-mapped to provide\nthe raw gamma table, which contains successive gamma ramps for the red,\ngreen and blue channels. Each gamma ramp is an array of 16-byte unsigned\nintegers which has the same length as the gamma size.\n\nThe file descriptor data must have the same length as three times the\ngamma size."] - pub fn set_gamma(&self, fd: ::std::os::unix::io::RawFd) -> () { - let msg = Request::SetGamma { fd: fd }; - self.0.send::(msg, None); - } - #[doc = "destroy this control\n\nDestroys the gamma control object. If the object is still valid, this\nrestores the original gamma tables.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_GAMMA_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_GAMMA_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_gamma_control_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_gamma\0" as *const u8 as *const c_char, - signature: b"h\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_gamma_control_v1_events: [wl_message; 2] = [ - wl_message { - name: b"gamma_size\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_gamma_control_v1_interface: wl_interface = wl_interface { - name: b"zwlr_gamma_control_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_gamma_control_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_gamma_control_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs deleted file mode 100644 index 0e5e353..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs +++ /dev/null @@ -1,399 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "inhibits input events to other clients\n\nClients can use this interface to prevent input events from being sent to\nany surfaces but its own, which is useful for example in lock screen\nsoftware. It is assumed that access to this interface will be locked down\nto whitelisted clients by the compositor."] -pub mod zwlr_input_inhibit_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "an input inhibitor is already in use on the compositor"] - AlreadyInhibited = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyInhibited), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "inhibit input to other clients\n\nActivates the input inhibitor. As long as the inhibitor is active, the\ncompositor will not send input events to other clients."] - GetInhibitor {}, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "get_inhibitor", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetInhibitor { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetInhibitor { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_input_inhibitor_v1::ZwlrInputInhibitorV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetInhibitor {} => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetInhibitor {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrInputInhibitManagerV1(Proxy); - impl AsRef> for ZwlrInputInhibitManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrInputInhibitManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrInputInhibitManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrInputInhibitManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrInputInhibitManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrInputInhibitManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_input_inhibit_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_input_inhibit_manager_v1_interface } - } - } - impl ZwlrInputInhibitManagerV1 { - #[doc = "inhibit input to other clients\n\nActivates the input inhibitor. As long as the inhibitor is active, the\ncompositor will not send input events to other clients."] - pub fn get_inhibitor(&self) -> Main { - let msg = Request::GetInhibitor {}; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_INHIBITOR_SINCE: u32 = 1u32; - static mut zwlr_input_inhibit_manager_v1_requests_get_inhibitor_types: [*const wl_interface; - 1] = [unsafe { - &super::zwlr_input_inhibitor_v1::zwlr_input_inhibitor_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_input_inhibit_manager_v1_requests: [wl_message; 1] = [wl_message { - name: b"get_inhibitor\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_input_inhibit_manager_v1_requests_get_inhibitor_types as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_input_inhibit_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_input_inhibit_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwlr_input_inhibit_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "inhibits input to other clients\n\nWhile this resource exists, input to clients other than the owner of the\ninhibitor resource will not receive input events. Any client which\npreviously had focus will receive a leave event and will not be given\nfocus again. The client that owns this resource will receive all input\nevents normally. The compositor will also disable all of its own input\nprocessing (such as keyboard shortcuts) while the inhibitor is active.\n\nThe compositor may continue to send input events to selected clients,\nsuch as an on-screen keyboard (via the input-method protocol)."] -pub mod zwlr_input_inhibitor_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the input inhibitor object\n\nDestroy the inhibitor and allow other clients to receive input.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrInputInhibitorV1(Proxy); - impl AsRef> for ZwlrInputInhibitorV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrInputInhibitorV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrInputInhibitorV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrInputInhibitorV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrInputInhibitorV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrInputInhibitorV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_input_inhibitor_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_input_inhibitor_v1_interface } - } - } - impl ZwlrInputInhibitorV1 { - #[doc = "destroy the input inhibitor object\n\nDestroy the inhibitor and allow other clients to receive input.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_input_inhibitor_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_input_inhibitor_v1_interface: wl_interface = wl_interface { - name: b"zwlr_input_inhibitor_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwlr_input_inhibitor_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs deleted file mode 100644 index c08e126..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs +++ /dev/null @@ -1,985 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create surfaces that are layers of the desktop\n\nClients can use this interface to assign the surface_layer role to\nwl_surfaces. Such surfaces are assigned to a \"layer\" of the output and\nrendered with a defined z-depth respective to each other. They may also be\nanchored to the edges and corners of a screen and specify input handling\nsemantics. This interface should be suitable for the implementation of\nmany desktop shell components, and a broad number of other applications\nthat interact with the desktop."] -pub mod zwlr_layer_shell_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "wl_surface has another role"] - Role = 0, - #[doc = "layer value is invalid"] - InvalidLayer = 1, - #[doc = "wl_surface has a buffer attached or committed"] - AlreadyConstructed = 2, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::InvalidLayer), - 2 => Some(Error::AlreadyConstructed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "available layers for surfaces\n\nThese values indicate which layers a surface can be rendered in. They\nare ordered by z depth, bottom-most first. Traditional shell surfaces\nwill typically be rendered between the bottom and top layers.\nFullscreen shell surfaces are typically rendered at the top layer.\nMultiple surfaces can share a single layer, and ordering within a\nsingle layer is undefined."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Layer { - Background = 0, - Bottom = 1, - Top = 2, - Overlay = 3, - } - impl Layer { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Layer::Background), - 1 => Some(Layer::Bottom), - 2 => Some(Layer::Top), - 3 => Some(Layer::Overlay), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a layer_surface from a surface\n\nCreate a layer surface for an existing surface. This assigns the role of\nlayer_surface, or raises a protocol error if another role is already\nassigned.\n\nCreating a layer surface from a wl_surface which has a buffer attached\nor committed is a client error, and any attempts by a client to attach\nor manipulate a buffer prior to the first layer_surface.configure call\nmust also be treated as errors.\n\nAfter creating a layer_surface object and setting it up, the client\nmust perform an initial commit without any buffer attached.\nThe compositor will reply with a layer_surface.configure event.\nThe client must acknowledge it and is then allowed to attach a buffer\nto map the surface.\n\nYou may pass NULL for output to allow the compositor to decide which\noutput to use. Generally this will be the one that the user most\nrecently interacted with.\n\nClients can specify a namespace that defines the purpose of the layer\nsurface."] - GetLayerSurface { - surface: super::wl_surface::WlSurface, - output: Option, - layer: Layer, - namespace: String, - }, - #[doc = "destroy the layer_shell object\n\nThis request indicates that the client will not use the layer_shell\nobject any more. Objects that have been created through this instance\nare not affected.\n\nThis is a destructor, once sent this object cannot be used any longer.\nOnly available since version 3 of the interface"] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_layer_surface", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Str, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 3, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetLayerSurface { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetLayerSurface { .. } => 1, - Request::Destroy => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_layer_surface_v1::ZwlrLayerSurfaceV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetLayerSurface { - surface, - output, - layer, - namespace, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Uint(layer.to_raw()), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(namespace.into()) - })), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetLayerSurface { - surface, - output, - layer, - namespace, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[3].u = layer.to_raw(); - let _arg_4 = ::std::ffi::CString::new(namespace).unwrap(); - _args_array[4].s = _arg_4.as_ptr(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrLayerShellV1(Proxy); - impl AsRef> for ZwlrLayerShellV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrLayerShellV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrLayerShellV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrLayerShellV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrLayerShellV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrLayerShellV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_layer_shell_v1"; - const VERSION: u32 = 4; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_layer_shell_v1_interface } - } - } - impl ZwlrLayerShellV1 { - #[doc = "create a layer_surface from a surface\n\nCreate a layer surface for an existing surface. This assigns the role of\nlayer_surface, or raises a protocol error if another role is already\nassigned.\n\nCreating a layer surface from a wl_surface which has a buffer attached\nor committed is a client error, and any attempts by a client to attach\nor manipulate a buffer prior to the first layer_surface.configure call\nmust also be treated as errors.\n\nAfter creating a layer_surface object and setting it up, the client\nmust perform an initial commit without any buffer attached.\nThe compositor will reply with a layer_surface.configure event.\nThe client must acknowledge it and is then allowed to attach a buffer\nto map the surface.\n\nYou may pass NULL for output to allow the compositor to decide which\noutput to use. Generally this will be the one that the user most\nrecently interacted with.\n\nClients can specify a namespace that defines the purpose of the layer\nsurface."] - pub fn get_layer_surface( - &self, - surface: &super::wl_surface::WlSurface, - output: Option<&super::wl_output::WlOutput>, - layer: Layer, - namespace: String, - ) -> Main { - let msg = Request::GetLayerSurface { - surface: surface.clone(), - output: output.map(|o| o.clone()), - layer: layer, - namespace: namespace, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the layer_shell object\n\nThis request indicates that the client will not use the layer_shell\nobject any more. Objects that have been created through this instance\nare not affected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called.\nOnly available since version 3 of the interface."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_LAYER_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 3u32; - static mut zwlr_layer_shell_v1_requests_get_layer_surface_types: [*const wl_interface; 5] = [ - unsafe { - &super::zwlr_layer_surface_v1::zwlr_layer_surface_v1_interface as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_layer_shell_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_layer_surface\0" as *const u8 as *const c_char, - signature: b"no?ous\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_layer_shell_v1_requests_get_layer_surface_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_layer_shell_v1_interface: wl_interface = wl_interface { - name: b"zwlr_layer_shell_v1\0" as *const u8 as *const c_char, - version: 4, - request_count: 2, - requests: unsafe { &zwlr_layer_shell_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "layer metadata interface\n\nAn interface that may be implemented by a wl_surface, for surfaces that\nare designed to be rendered as a layer of a stacked desktop-like\nenvironment.\n\nLayer surface state (layer, size, anchor, exclusive zone,\nmargin, interactivity) is double-buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nAttaching a null buffer to a layer surface unmaps it.\n\nUnmapping a layer_surface means that the surface cannot be shown by the\ncompositor until it is explicitly mapped again. The layer_surface\nreturns to the state it had right after layer_shell.get_layer_surface.\nThe client can re-map the surface by performing a commit without any\nbuffer attached, waiting for a configure event and handling it as usual."] -pub mod zwlr_layer_surface_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "types of keyboard interaction possible for a layer shell surface\n\nTypes of keyboard interaction possible for layer shell surfaces. The\nrationale for this is twofold: (1) some applications are not interested\nin keyboard events and not allowing them to be focused can improve the\ndesktop experience; (2) some applications will want to take exclusive\nkeyboard focus."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum KeyboardInteractivity { - #[doc = "no keyboard focus is possible\n\nThis value indicates that this surface is not interested in keyboard\nevents and the compositor should never assign it the keyboard focus.\n\nThis is the default value, set for newly created layer shell surfaces.\n\nThis is useful for e.g. desktop widgets that display information or\nonly have interaction with non-keyboard input devices."] - None = 0, - #[doc = "request exclusive keyboard focus\n\nRequest exclusive keyboard focus if this surface is above the shell surface layer.\n\nFor the top and overlay layers, the seat will always give\nexclusive keyboard focus to the top-most layer which has keyboard\ninteractivity set to exclusive. If this layer contains multiple\nsurfaces with keyboard interactivity set to exclusive, the compositor\ndetermines the one receiving keyboard events in an implementation-\ndefined manner. In this case, no guarantee is made when this surface\nwill receive keyboard focus (if ever).\n\nFor the bottom and background layers, the compositor is allowed to use\nnormal focus semantics.\n\nThis setting is mainly intended for applications that need to ensure\nthey receive all keyboard events, such as a lock screen or a password\nprompt."] - Exclusive = 1, - #[doc = "request regular keyboard focus semantics\n\nThis requests the compositor to allow this surface to be focused and\nunfocused by the user in an implementation-defined manner. The user\nshould be able to unfocus this surface even regardless of the layer\nit is on.\n\nTypically, the compositor will want to use its normal mechanism to\nmanage keyboard focus between layer shell surfaces with this setting\nand regular toplevels on the desktop layer (e.g. click to focus).\nNevertheless, it is possible for a compositor to require a special\ninteraction to focus or unfocus layer shell surfaces (e.g. requiring\na click even if focus follows the mouse normally, or providing a\nkeybinding to switch focus between layers).\n\nThis setting is mainly intended for desktop shell components (e.g.\npanels) that allow keyboard interaction. Using this option can allow\nimplementing a desktop shell that can be fully usable without the\nmouse."] - OnDemand = 2, - } - impl KeyboardInteractivity { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(KeyboardInteractivity::None), - 1 => Some(KeyboardInteractivity::Exclusive), - 2 => Some(KeyboardInteractivity::OnDemand), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "provided surface state is invalid"] - InvalidSurfaceState = 0, - #[doc = "size is invalid"] - InvalidSize = 1, - #[doc = "anchor bitfield is invalid"] - InvalidAnchor = 2, - #[doc = "keyboard interactivity is invalid"] - InvalidKeyboardInteractivity = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidSurfaceState), - 1 => Some(Error::InvalidSize), - 2 => Some(Error::InvalidAnchor), - 3 => Some(Error::InvalidKeyboardInteractivity), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Anchor : u32 { # [doc = "the top edge of the anchor rectangle"] const Top = 1 ; # [doc = "the bottom edge of the anchor rectangle"] const Bottom = 2 ; # [doc = "the left edge of the anchor rectangle"] const Left = 4 ; # [doc = "the right edge of the anchor rectangle"] const Right = 8 ; } } - impl Anchor { - pub fn from_raw(n: u32) -> Option { - Some(Anchor::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "sets the size of the surface\n\nSets the size of the surface in surface-local coordinates. The\ncompositor will display the surface centered with respect to its\nanchors.\n\nIf you pass 0 for either value, the compositor will assign it and\ninform you of the assignment in the configure event. You must set your\nanchor to opposite edges in the dimensions you omit; not doing so is a\nprotocol error. Both values are 0 by default.\n\nSize is double-buffered, see wl_surface.commit."] - SetSize { width: u32, height: u32 }, - #[doc = "configures the anchor point of the surface\n\nRequests that the compositor anchor the surface to the specified edges\nand corners. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left corner of the output); otherwise the anchor point\nwill be centered on that edge, or in the center if none is specified.\n\nAnchor is double-buffered, see wl_surface.commit."] - SetAnchor { anchor: Anchor }, - #[doc = "configures the exclusive geometry of this surface\n\nRequests that the compositor avoids occluding an area with other\nsurfaces. The compositor's use of this information is\nimplementation-dependent - do not assume that this region will not\nactually be occluded.\n\nA positive value is only meaningful if the surface is anchored to one\nedge or an edge and both perpendicular edges. If the surface is not\nanchored, anchored to only two perpendicular edges (a corner), anchored\nto only two parallel edges or anchored to all edges, a positive value\nwill be treated the same as zero.\n\nA positive zone is the distance from the edge in surface-local\ncoordinates to consider exclusive.\n\nSurfaces that do not wish to have an exclusive zone may instead specify\nhow they should interact with surfaces that do. If set to zero, the\nsurface indicates that it would like to be moved to avoid occluding\nsurfaces with a positive exclusive zone. If set to -1, the surface\nindicates that it would not like to be moved to accommodate for other\nsurfaces, and the compositor should extend it all the way to the edges\nit is anchored to.\n\nFor example, a panel might set its exclusive zone to 10, so that\nmaximized shell surfaces are not shown on top of it. A notification\nmight set its exclusive zone to 0, so that it is moved to avoid\noccluding the panel, but shell surfaces are shown underneath it. A\nwallpaper or lock screen might set their exclusive zone to -1, so that\nthey stretch below or over the panel.\n\nThe default value is 0.\n\nExclusive zone is double-buffered, see wl_surface.commit."] - SetExclusiveZone { zone: i32 }, - #[doc = "sets a margin from the anchor point\n\nRequests that the surface be placed some distance away from the anchor\npoint on the output, in surface-local coordinates. Setting this value\nfor edges you are not anchored to has no effect.\n\nThe exclusive zone includes the margin.\n\nMargin is double-buffered, see wl_surface.commit."] - SetMargin { - top: i32, - right: i32, - bottom: i32, - left: i32, - }, - #[doc = "requests keyboard events\n\nSet how keyboard events are delivered to this surface. By default,\nlayer shell surfaces do not receive keyboard events; this request can\nbe used to change this.\n\nThis setting is inherited by child surfaces set by the get_popup\nrequest.\n\nLayer surfaces receive pointer, touch, and tablet events normally. If\nyou do not want to receive them, set the input region on your surface\nto an empty region.\n\nKeyboard interactivity is double-buffered, see wl_surface.commit."] - SetKeyboardInteractivity { - keyboard_interactivity: KeyboardInteractivity, - }, - #[doc = "assign this layer_surface as an xdg_popup parent\n\nThis assigns an xdg_popup's parent to this layer_surface. This popup\nshould have been created via xdg_surface::get_popup with the parent set\nto NULL, and this request must be invoked before committing the popup's\ninitial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetPopup { popup: super::xdg_popup::XdgPopup }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - AckConfigure { serial: u32 }, - #[doc = "destroy the layer_surface\n\nThis request destroys the layer surface.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "change the layer of the surface\n\nChange the layer that the surface is rendered on.\n\nLayer is double-buffered, see wl_surface.commit.\n\nOnly available since version 2 of the interface"] - SetLayer { - layer: super::zwlr_layer_shell_v1::Layer, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_size", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_exclusive_zone", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_margin", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_keyboard_interactivity", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "get_popup", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_layer", - since: 2, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetSize { .. } => 0, - Request::SetAnchor { .. } => 1, - Request::SetExclusiveZone { .. } => 2, - Request::SetMargin { .. } => 3, - Request::SetKeyboardInteractivity { .. } => 4, - Request::GetPopup { .. } => 5, - Request::AckConfigure { .. } => 6, - Request::Destroy => 7, - Request::SetLayer { .. } => 8, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetSize { .. } => 1, - Request::SetAnchor { .. } => 1, - Request::SetExclusiveZone { .. } => 1, - Request::SetMargin { .. } => 1, - Request::SetKeyboardInteractivity { .. } => 1, - Request::GetPopup { .. } => 1, - Request::AckConfigure { .. } => 1, - Request::Destroy => 1, - Request::SetLayer { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetSize { width, height } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Uint(width), Argument::Uint(height),], - }, - Request::SetAnchor { anchor } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Uint(anchor.to_raw()),], - }, - Request::SetExclusiveZone { zone } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(zone),], - }, - Request::SetMargin { - top, - right, - bottom, - left, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Int(top), - Argument::Int(right), - Argument::Int(bottom), - Argument::Int(left), - ], - }, - Request::SetKeyboardInteractivity { - keyboard_interactivity, - } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(keyboard_interactivity.to_raw()),], - }, - Request::GetPopup { popup } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(popup.as_ref().id()),], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Uint(serial),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - Request::SetLayer { layer } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Uint(layer.to_raw()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = width; - _args_array[1].u = height; - f(0, &mut _args_array) - } - Request::SetAnchor { anchor } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = anchor.to_raw(); - f(1, &mut _args_array) - } - Request::SetExclusiveZone { zone } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = zone; - f(2, &mut _args_array) - } - Request::SetMargin { - top, - right, - bottom, - left, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = top; - _args_array[1].i = right; - _args_array[2].i = bottom; - _args_array[3].i = left; - f(3, &mut _args_array) - } - Request::SetKeyboardInteractivity { - keyboard_interactivity, - } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = keyboard_interactivity.to_raw(); - f(4, &mut _args_array) - } - Request::GetPopup { popup } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = popup.as_ref().c_ptr() as *mut _; - f(5, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(6, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - Request::SetLayer { layer } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = layer.to_raw(); - f(8, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event asks the client to resize its surface.\n\nClients should arrange their surface for the new states, and then send\nan ack_configure request with the serial sent in this configure event at\nsome point before committing the new surface.\n\nThe client is free to dismiss all but the last configure event it\nreceived.\n\nThe width and height arguments specify the size of the window in\nsurface-local coordinates.\n\nThe size is a hint, in the sense that the client is free to ignore it if\nit doesn't resize, pick a smaller size (to satisfy aspect ratio or\nresize in steps of NxM pixels). If the client picks a smaller size and\nis anchored to two opposite anchors (e.g. 'top' and 'bottom'), the\nsurface will be centered on this axis.\n\nIf the width or height arguments are zero, it means the client should\ndecide its own window dimension."] - Configure { - serial: u32, - width: u32, - height: u32, - }, - #[doc = "surface should be closed\n\nThe closed event is sent by the compositor when the surface will no\nlonger be shown. The output may have been destroyed or the user may\nhave asked for it to be removed. Further changes to the surface will be\nignored. The client should destroy the resource after receiving this\nevent, and create a new surface if they so choose."] - Closed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "closed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Closed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Closed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Closed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - serial: _args[0].u, - width: _args[1].u, - height: _args[2].u, - }) - } - 1 => Ok(Event::Closed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrLayerSurfaceV1(Proxy); - impl AsRef> for ZwlrLayerSurfaceV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrLayerSurfaceV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrLayerSurfaceV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrLayerSurfaceV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrLayerSurfaceV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrLayerSurfaceV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_layer_surface_v1"; - const VERSION: u32 = 4; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_layer_surface_v1_interface } - } - } - impl ZwlrLayerSurfaceV1 { - #[doc = "sets the size of the surface\n\nSets the size of the surface in surface-local coordinates. The\ncompositor will display the surface centered with respect to its\nanchors.\n\nIf you pass 0 for either value, the compositor will assign it and\ninform you of the assignment in the configure event. You must set your\nanchor to opposite edges in the dimensions you omit; not doing so is a\nprotocol error. Both values are 0 by default.\n\nSize is double-buffered, see wl_surface.commit."] - pub fn set_size(&self, width: u32, height: u32) -> () { - let msg = Request::SetSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "configures the anchor point of the surface\n\nRequests that the compositor anchor the surface to the specified edges\nand corners. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left corner of the output); otherwise the anchor point\nwill be centered on that edge, or in the center if none is specified.\n\nAnchor is double-buffered, see wl_surface.commit."] - pub fn set_anchor(&self, anchor: Anchor) -> () { - let msg = Request::SetAnchor { anchor: anchor }; - self.0.send::(msg, None); - } - #[doc = "configures the exclusive geometry of this surface\n\nRequests that the compositor avoids occluding an area with other\nsurfaces. The compositor's use of this information is\nimplementation-dependent - do not assume that this region will not\nactually be occluded.\n\nA positive value is only meaningful if the surface is anchored to one\nedge or an edge and both perpendicular edges. If the surface is not\nanchored, anchored to only two perpendicular edges (a corner), anchored\nto only two parallel edges or anchored to all edges, a positive value\nwill be treated the same as zero.\n\nA positive zone is the distance from the edge in surface-local\ncoordinates to consider exclusive.\n\nSurfaces that do not wish to have an exclusive zone may instead specify\nhow they should interact with surfaces that do. If set to zero, the\nsurface indicates that it would like to be moved to avoid occluding\nsurfaces with a positive exclusive zone. If set to -1, the surface\nindicates that it would not like to be moved to accommodate for other\nsurfaces, and the compositor should extend it all the way to the edges\nit is anchored to.\n\nFor example, a panel might set its exclusive zone to 10, so that\nmaximized shell surfaces are not shown on top of it. A notification\nmight set its exclusive zone to 0, so that it is moved to avoid\noccluding the panel, but shell surfaces are shown underneath it. A\nwallpaper or lock screen might set their exclusive zone to -1, so that\nthey stretch below or over the panel.\n\nThe default value is 0.\n\nExclusive zone is double-buffered, see wl_surface.commit."] - pub fn set_exclusive_zone(&self, zone: i32) -> () { - let msg = Request::SetExclusiveZone { zone: zone }; - self.0.send::(msg, None); - } - #[doc = "sets a margin from the anchor point\n\nRequests that the surface be placed some distance away from the anchor\npoint on the output, in surface-local coordinates. Setting this value\nfor edges you are not anchored to has no effect.\n\nThe exclusive zone includes the margin.\n\nMargin is double-buffered, see wl_surface.commit."] - pub fn set_margin(&self, top: i32, right: i32, bottom: i32, left: i32) -> () { - let msg = Request::SetMargin { - top: top, - right: right, - bottom: bottom, - left: left, - }; - self.0.send::(msg, None); - } - #[doc = "requests keyboard events\n\nSet how keyboard events are delivered to this surface. By default,\nlayer shell surfaces do not receive keyboard events; this request can\nbe used to change this.\n\nThis setting is inherited by child surfaces set by the get_popup\nrequest.\n\nLayer surfaces receive pointer, touch, and tablet events normally. If\nyou do not want to receive them, set the input region on your surface\nto an empty region.\n\nKeyboard interactivity is double-buffered, see wl_surface.commit."] - pub fn set_keyboard_interactivity( - &self, - keyboard_interactivity: KeyboardInteractivity, - ) -> () { - let msg = Request::SetKeyboardInteractivity { - keyboard_interactivity: keyboard_interactivity, - }; - self.0.send::(msg, None); - } - #[doc = "assign this layer_surface as an xdg_popup parent\n\nThis assigns an xdg_popup's parent to this layer_surface. This popup\nshould have been created via xdg_surface::get_popup with the parent set\nto NULL, and this request must be invoked before committing the popup's\ninitial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_popup(&self, popup: &super::xdg_popup::XdgPopup) -> () { - let msg = Request::GetPopup { - popup: popup.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "destroy the layer_surface\n\nThis request destroys the layer surface.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "change the layer of the surface\n\nChange the layer that the surface is rendered on.\n\nLayer is double-buffered, see wl_surface.commit.\n\nOnly available since version 2 of the interface."] - pub fn set_layer(&self, layer: super::zwlr_layer_shell_v1::Layer) -> () { - let msg = Request::SetLayer { layer: layer }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_EXCLUSIVE_ZONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MARGIN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_KEYBOARD_INTERACTIVITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_LAYER_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSED_SINCE: u32 = 1u32; - static mut zwlr_layer_surface_v1_requests_get_popup_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_popup::xdg_popup_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_layer_surface_v1_requests: [wl_message; 9] = [ - wl_message { - name: b"set_size\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_exclusive_zone\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_margin\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_keyboard_interactivity\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_popup\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_layer_surface_v1_requests_get_popup_types as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_layer\0" as *const u8 as *const c_char, - signature: b"2u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_layer_surface_v1_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"closed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_layer_surface_v1_interface: wl_interface = wl_interface { - name: b"zwlr_layer_surface_v1\0" as *const u8 as *const c_char, - version: 4, - request_count: 9, - requests: unsafe { &zwlr_layer_surface_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_layer_surface_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs deleted file mode 100644 index 925214a..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs +++ /dev/null @@ -1,2095 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 3] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "output device configuration manager\n\nThis interface is a manager that allows reading and writing the current\noutput device configuration.\n\nOutput devices that display pixels (e.g. a physical monitor or a virtual\noutput in a window) are represented as heads. Heads cannot be created nor\ndestroyed by the client, but they can be enabled or disabled and their\nproperties can be changed. Each head may have one or more available modes.\n\nWhenever a head appears (e.g. a monitor is plugged in), it will be\nadvertised via the head event. Immediately after the output manager is\nbound, all current heads are advertised.\n\nWhenever a head's properties change, the relevant wlr_output_head events\nwill be sent. Not all head properties will be sent: only properties that\nhave changed need to.\n\nWhenever a head disappears (e.g. a monitor is unplugged), a\nwlr_output_head.finished event will be sent.\n\nAfter one or more heads appear, change or disappear, the done event will\nbe sent. It carries a serial which can be used in a create_configuration\nrequest to update heads properties.\n\nThe information obtained from this protocol should only be used for output\nconfiguration purposes. This protocol is not designed to be a generic\noutput property advertisement protocol for regular clients. Instead,\nprotocols such as xdg-output should be used."] -pub mod zwlr_output_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "create a new output configuration object\n\nCreate a new output configuration object. This allows to update head\nproperties."] - CreateConfiguration { serial: u32 }, - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for output\nconfiguration changes. However the compositor may emit further events,\nuntil the finished event is emitted.\n\nThe client must not send any more requests after this one."] - Stop, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_configuration", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "stop", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateConfiguration { .. } => 0, - Request::Stop => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateConfiguration { .. } => 1, - Request::Stop => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_configuration_v1::ZwlrOutputConfigurationV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateConfiguration { serial } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Uint(serial),], - }, - Request::Stop => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateConfiguration { serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].u = serial; - f(0, &mut _args_array) - } - Request::Stop => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "introduce a new head\n\nThis event introduces a new head. This happens whenever a new head\nappears (e.g. a monitor is plugged in) or after the output manager is\nbound."] - Head { - head: Main, - }, - #[doc = "sent all information about current configuration\n\nThis event is sent after all information has been sent after binding to\nthe output manager object and after any subsequent changes. This applies\nto child head and mode objects as well. In other words, this event is\nsent whenever a head or mode is created or destroyed and whenever one of\ntheir properties has been changed. Not all state is re-sent each time\nthe current configuration changes: only the actual changes are sent.\n\nThis allows changes to the output configuration to be seen as atomic,\neven if they happen via multiple events.\n\nA serial is sent to be used in a future create_configuration request."] - Done { serial: u32 }, - #[doc = "the compositor has finished with the manager\n\nThis event indicates that the compositor is done sending manager events.\nThe compositor will destroy the object immediately after sending this\nevent, so it will become invalid and the client should release any\nresources associated with it."] - Finished, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "head", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Head { .. } => 0, - Event::Done { .. } => 1, - Event::Finished => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Head { .. } => 1, - Event::Done { .. } => 1, - Event::Finished => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_head_v1::ZwlrOutputHeadV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Head { - head: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Done { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Finished), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Head { - head: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Done { serial: _args[0].u }) - } - 2 => Ok(Event::Finished), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputManagerV1(Proxy); - impl AsRef> for ZwlrOutputManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_manager_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_manager_v1_interface } - } - } - impl ZwlrOutputManagerV1 { - #[doc = "create a new output configuration object\n\nCreate a new output configuration object. This allows to update head\nproperties."] - pub fn create_configuration( - &self, - serial: u32, - ) -> Main { - let msg = Request::CreateConfiguration { serial: serial }; - self.0.send(msg, None).unwrap() - } - #[doc = "stop sending events\n\nIndicates the client no longer wishes to receive events for output\nconfiguration changes. However the compositor may emit further events,\nuntil the finished event is emitted.\n\nThe client must not send any more requests after this one."] - pub fn stop(&self) -> () { - let msg = Request::Stop; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_CONFIGURATION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HEAD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - static mut zwlr_output_manager_v1_requests_create_configuration_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwlr_output_configuration_v1::zwlr_output_configuration_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"create_configuration\0" as *const u8 as *const c_char, - signature: b"nu\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_output_manager_v1_requests_create_configuration_types as *const _ - }, - }, - wl_message { - name: b"stop\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - static mut zwlr_output_manager_v1_events_head_types: [*const wl_interface; 1] = [unsafe { - &super::zwlr_output_head_v1::zwlr_output_head_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_manager_v1_events: [wl_message; 3] = [ - wl_message { - name: b"head\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_manager_v1_events_head_types as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_manager_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 2, - requests: unsafe { &zwlr_output_manager_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwlr_output_manager_v1_events as *const _ }, - }; -} -#[doc = "output device\n\nA head is an output device. The difference between a wl_output object and\na head is that heads are advertised even if they are turned off. A head\nobject only advertises properties and cannot be used directly to change\nthem.\n\nA head has some read-only properties: modes, name, description and\nphysical_size. These cannot be changed by clients.\n\nOther properties can be updated via a wlr_output_configuration object.\n\nProperties sent via this interface are applied atomically via the\nwlr_output_manager.done event. No guarantees are made regarding the order\nin which properties are sent."] -pub mod zwlr_output_head_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "head name\n\nThis event describes the head name.\n\nThe naming convention is compositor defined, but limited to alphanumeric\ncharacters and dashes (-). Each name is unique among all wlr_output_head\nobjects, but if a wlr_output_head object is destroyed the same name may\nbe reused later. The names will also remain consistent across sessions\nwith the same hardware and software configuration.\n\nExamples of names include 'HDMI-A-1', 'WL-1', 'X11-1', etc. However, do\nnot assume that the name is a reflection of an underlying DRM\nconnector, X11 connection, etc.\n\nIf the compositor implements the xdg-output protocol and this head is\nenabled, the xdg_output.name event must report the same name.\n\nThe name event is sent after a wlr_output_head object is created. This\nevent is only sent once per object, and the name does not change over\nthe lifetime of the wlr_output_head object."] - Name { name: String }, - #[doc = "head description\n\nThis event describes a human-readable description of the head.\n\nThe description is a UTF-8 string with no convention defined for its\ncontents. Examples might include 'Foocorp 11\" Display' or 'Virtual X11\noutput via :1'. However, do not assume that the name is a reflection of\nthe make, model, serial of the underlying DRM connector or the display\nname of the underlying X11 connection, etc.\n\nIf the compositor implements xdg-output and this head is enabled,\nthe xdg_output.description must report the same description.\n\nThe description event is sent after a wlr_output_head object is created.\nThis event is only sent once per object, and the description does not\nchange over the lifetime of the wlr_output_head object."] - Description { description: String }, - #[doc = "head physical size\n\nThis event describes the physical size of the head. This event is only\nsent if the head has a physical size (e.g. is not a projector or a\nvirtual device)."] - PhysicalSize { width: i32, height: i32 }, - #[doc = "introduce a mode\n\nThis event introduces a mode for this head. It is sent once per\nsupported mode."] - Mode { - mode: Main, - }, - #[doc = "head is enabled or disabled\n\nThis event describes whether the head is enabled. A disabled head is not\nmapped to a region of the global compositor space.\n\nWhen a head is disabled, some properties (current_mode, position,\ntransform and scale) are irrelevant."] - Enabled { enabled: i32 }, - #[doc = "current mode\n\nThis event describes the mode currently in use for this head. It is only\nsent if the output is enabled."] - CurrentMode { - mode: super::zwlr_output_mode_v1::ZwlrOutputModeV1, - }, - #[doc = "current position\n\nThis events describes the position of the head in the global compositor\nspace. It is only sent if the output is enabled."] - Position { x: i32, y: i32 }, - #[doc = "current transformation\n\nThis event describes the transformation currently applied to the head.\nIt is only sent if the output is enabled."] - Transform { - transform: super::wl_output::Transform, - }, - #[doc = "current scale\n\nThis events describes the scale of the head in the global compositor\nspace. It is only sent if the output is enabled."] - Scale { scale: f64 }, - #[doc = "the head has been destroyed\n\nThe compositor will destroy the object immediately after sending this\nevent, so it will become invalid and the client should release any\nresources associated with it."] - Finished, - #[doc = "head manufacturer\n\nThis event describes the manufacturer of the head.\n\nThis must report the same make as the wl_output interface does in its\ngeometry event.\n\nTogether with the model and serial_number events the purpose is to\nallow clients to recognize heads from previous sessions and for example\nload head-specific configurations back.\n\nIt is not guaranteed this event will be ever sent. A reason for that\ncan be that the compositor does not have information about the make of\nthe head or the definition of a make is not sensible in the current\nsetup, for example in a virtual session. Clients can still try to\nidentify the head by available information from other events but should\nbe aware that there is an increased risk of false positives.\n\nIt is not recommended to display the make string in UI to users. For\nthat the string provided by the description event should be preferred.\n\nOnly available since version 2 of the interface"] - Make { make: String }, - #[doc = "head model\n\nThis event describes the model of the head.\n\nThis must report the same model as the wl_output interface does in its\ngeometry event.\n\nTogether with the make and serial_number events the purpose is to\nallow clients to recognize heads from previous sessions and for example\nload head-specific configurations back.\n\nIt is not guaranteed this event will be ever sent. A reason for that\ncan be that the compositor does not have information about the model of\nthe head or the definition of a model is not sensible in the current\nsetup, for example in a virtual session. Clients can still try to\nidentify the head by available information from other events but should\nbe aware that there is an increased risk of false positives.\n\nIt is not recommended to display the model string in UI to users. For\nthat the string provided by the description event should be preferred.\n\nOnly available since version 2 of the interface"] - Model { model: String }, - #[doc = "head serial number\n\nThis event describes the serial number of the head.\n\nTogether with the make and model events the purpose is to allow clients\nto recognize heads from previous sessions and for example load head-\nspecific configurations back.\n\nIt is not guaranteed this event will be ever sent. A reason for that\ncan be that the compositor does not have information about the serial\nnumber of the head or the definition of a serial number is not sensible\nin the current setup. Clients can still try to identify the head by\navailable information from other events but should be aware that there\nis an increased risk of false positives.\n\nIt is not recommended to display the serial_number string in UI to\nusers. For that the string provided by the description event should be\npreferred.\n\nOnly available since version 2 of the interface"] - SerialNumber { serial_number: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "name", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "description", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "physical_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "mode", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "enabled", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "current_mode", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "transform", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "scale", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "make", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "model", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "serial_number", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Name { .. } => 0, - Event::Description { .. } => 1, - Event::PhysicalSize { .. } => 2, - Event::Mode { .. } => 3, - Event::Enabled { .. } => 4, - Event::CurrentMode { .. } => 5, - Event::Position { .. } => 6, - Event::Transform { .. } => 7, - Event::Scale { .. } => 8, - Event::Finished => 9, - Event::Make { .. } => 10, - Event::Model { .. } => 11, - Event::SerialNumber { .. } => 12, - } - } - fn since(&self) -> u32 { - match *self { - Event::Name { .. } => 1, - Event::Description { .. } => 1, - Event::PhysicalSize { .. } => 1, - Event::Mode { .. } => 1, - Event::Enabled { .. } => 1, - Event::CurrentMode { .. } => 1, - Event::Position { .. } => 1, - Event::Transform { .. } => 1, - Event::Scale { .. } => 1, - Event::Finished => 1, - Event::Make { .. } => 2, - Event::Model { .. } => 2, - Event::SerialNumber { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 3 => Some(Object::from_interface::< - super::zwlr_output_mode_v1::ZwlrOutputModeV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Description { - description: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::PhysicalSize { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - mode: { - if let Some(Argument::NewId(val)) = args.next() { - map.get_new(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Enabled { - enabled: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::CurrentMode { - mode: { - if let Some(Argument::Object(val)) = args.next() { - map.get_or_dead(val).into() - } else { - return Err(()); - } - }, - }) - } - 6 => { - let mut args = msg.args.into_iter(); - Ok(Event::Position { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 7 => { - let mut args = msg.args.into_iter(); - Ok(Event::Transform { - transform: { - if let Some(Argument::Int(val)) = args.next() { - super::wl_output::Transform::from_raw(val as u32).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 8 => { - let mut args = msg.args.into_iter(); - Ok(Event::Scale { - scale: { - if let Some(Argument::Fixed(val)) = args.next() { - (val as f64) / 256. - } else { - return Err(()); - } - }, - }) - } - 9 => Ok(Event::Finished), - 10 => { - let mut args = msg.args.into_iter(); - Ok(Event::Make { - make: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 11 => { - let mut args = msg.args.into_iter(); - Ok(Event::Model { - model: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 12 => { - let mut args = msg.args.into_iter(); - Ok(Event::SerialNumber { - serial_number: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Description { - description: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::PhysicalSize { - width: _args[0].i, - height: _args[1].i, - }) - } - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Mode { - mode: Main::::from_c_ptr( - _args[0].o as *mut _, - ), - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Enabled { - enabled: _args[0].i, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::CurrentMode { - mode: Proxy::::from_c_ptr( - _args[0].o as *mut _, - ) - .into(), - }) - } - 6 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Position { - x: _args[0].i, - y: _args[1].i, - }) - } - 7 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Transform { - transform: super::wl_output::Transform::from_raw(_args[0].i as u32) - .ok_or(())?, - }) - } - 8 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Scale { - scale: (_args[0].f as f64) / 256., - }) - } - 9 => Ok(Event::Finished), - 10 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Make { - make: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 11 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Model { - model: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 12 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::SerialNumber { - serial_number: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputHeadV1(Proxy); - impl AsRef> for ZwlrOutputHeadV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputHeadV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputHeadV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputHeadV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputHeadV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputHeadV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_head_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_head_v1_interface } - } - } - impl ZwlrOutputHeadV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESCRIPTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PHYSICAL_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_ENABLED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CURRENT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_TRANSFORM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SCALE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MAKE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODEL_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SERIAL_NUMBER_SINCE: u32 = 2u32; - static mut zwlr_output_head_v1_events_mode_types: [*const wl_interface; 1] = [unsafe { - &super::zwlr_output_mode_v1::zwlr_output_mode_v1_interface as *const wl_interface - }]; - static mut zwlr_output_head_v1_events_current_mode_types: [*const wl_interface; 1] = [unsafe { - &super::zwlr_output_mode_v1::zwlr_output_mode_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_head_v1_events: [wl_message; 13] = [ - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"description\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"physical_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_head_v1_events_mode_types as *const _ }, - }, - wl_message { - name: b"enabled\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"current_mode\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_head_v1_events_current_mode_types as *const _ }, - }, - wl_message { - name: b"position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"transform\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"scale\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"make\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"model\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"serial_number\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_head_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_head_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 13, - events: unsafe { &zwlr_output_head_v1_events as *const _ }, - }; -} -#[doc = "output mode\n\nThis object describes an output mode.\n\nSome heads don't support output modes, in which case modes won't be\nadvertised.\n\nProperties sent via this interface are applied atomically via the\nwlr_output_manager.done event. No guarantees are made regarding the order\nin which properties are sent."] -pub mod zwlr_output_mode_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request {} - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self {} - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self {} - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "mode size\n\nThis event describes the mode size. The size is given in physical\nhardware units of the output device. This is not necessarily the same as\nthe output size in the global compositor space. For instance, the output\nmay be scaled or transformed."] - Size { width: i32, height: i32 }, - #[doc = "mode refresh rate\n\nThis event describes the mode's fixed vertical refresh rate. It is only\nsent if the mode has a fixed refresh rate."] - Refresh { refresh: i32 }, - #[doc = "mode is preferred\n\nThis event advertises this mode as preferred."] - Preferred, - #[doc = "the mode has been destroyed\n\nThe compositor will destroy the object immediately after sending this\nevent, so it will become invalid and the client should release any\nresources associated with it."] - Finished, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "refresh", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "preferred", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "finished", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Size { .. } => 0, - Event::Refresh { .. } => 1, - Event::Preferred => 2, - Event::Finished => 3, - } - } - fn since(&self) -> u32 { - match *self { - Event::Size { .. } => 1, - Event::Refresh { .. } => 1, - Event::Preferred => 1, - Event::Finished => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Size { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Refresh { - refresh: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Preferred), - 3 => Ok(Event::Finished), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::Size { - width: _args[0].i, - height: _args[1].i, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Refresh { - refresh: _args[0].i, - }) - } - 2 => Ok(Event::Preferred), - 3 => Ok(Event::Finished), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputModeV1(Proxy); - impl AsRef> for ZwlrOutputModeV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputModeV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputModeV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputModeV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputModeV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputModeV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_mode_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_mode_v1_interface } - } - } - impl ZwlrOutputModeV1 {} - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REFRESH_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PREFERRED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FINISHED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_mode_v1_events: [wl_message; 4] = [ - wl_message { - name: b"size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"refresh\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"preferred\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"finished\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_mode_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_mode_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 0, - requests: NULLPTR as *const wl_message, - event_count: 4, - events: unsafe { &zwlr_output_mode_v1_events as *const _ }, - }; -} -#[doc = "output configuration\n\nThis object is used by the client to describe a full output configuration.\n\nFirst, the client needs to setup the output configuration. Each head can\nbe either enabled (and configured) or disabled. It is a protocol error to\nsend two enable_head or disable_head requests with the same head. It is a\nprotocol error to omit a head in a configuration.\n\nThen, the client can apply or test the configuration. The compositor will\nthen reply with a succeeded, failed or cancelled event. Finally the client\nshould destroy the configuration object."] -pub mod zwlr_output_configuration_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "head has been configured twice"] - AlreadyConfiguredHead = 1, - #[doc = "head has not been configured"] - UnconfiguredHead = 2, - #[doc = "request sent after configuration has been applied or tested"] - AlreadyUsed = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::AlreadyConfiguredHead), - 2 => Some(Error::UnconfiguredHead), - 3 => Some(Error::AlreadyUsed), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "enable and configure a head\n\nEnable a head. This request creates a head configuration object that can\nbe used to change the head's properties."] - EnableHead { - head: super::zwlr_output_head_v1::ZwlrOutputHeadV1, - }, - #[doc = "disable a head\n\nDisable a head."] - DisableHead { - head: super::zwlr_output_head_v1::ZwlrOutputHeadV1, - }, - #[doc = "apply the configuration\n\nApply the new output configuration.\n\nIn case the configuration is successfully applied, there is no guarantee\nthat the new output state matches completely the requested\nconfiguration. For instance, a compositor might round the scale if it\ndoesn't support fractional scaling.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - Apply, - #[doc = "test the configuration\n\nTest the new output configuration. The configuration won't be applied,\nbut will only be validated.\n\nEven if the compositor succeeds to test a configuration, applying it may\nfail.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - Test, - #[doc = "destroy the output configuration\n\nUsing this request a client can tell the compositor that it is not going\nto use the configuration object anymore. Any changes to the outputs\nthat have not been applied will be discarded.\n\nThis request also destroys wlr_output_configuration_head objects created\nvia this object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "enable_head", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "disable_head", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "apply", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "test", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::EnableHead { .. } => 0, - Request::DisableHead { .. } => 1, - Request::Apply => 2, - Request::Test => 3, - Request::Destroy => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::EnableHead { .. } => 1, - Request::DisableHead { .. } => 1, - Request::Apply => 1, - Request::Test => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_configuration_head_v1::ZwlrOutputConfigurationHeadV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::EnableHead { head } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(head.as_ref().id()),], - }, - Request::DisableHead { head } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(head.as_ref().id()),], - }, - Request::Apply => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - Request::Test => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::EnableHead { head } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = head.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::DisableHead { head } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = head.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - Request::Apply => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - Request::Test => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(3, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "configuration changes succeeded\n\nSent after the compositor has successfully applied the changes or\ntested them.\n\nUpon receiving this event, the client should destroy this object.\n\nIf the current configuration has changed, events to describe the changes\nwill be sent followed by a wlr_output_manager.done event."] - Succeeded, - #[doc = "configuration changes failed\n\nSent if the compositor rejects the changes or failed to apply them. The\ncompositor should revert any changes made by the apply request that\ntriggered this event.\n\nUpon receiving this event, the client should destroy this object."] - Failed, - #[doc = "configuration has been cancelled\n\nSent if the compositor cancels the configuration because the state of an\noutput changed and the client has outdated information (e.g. after an\noutput has been hotplugged).\n\nThe client can create a new configuration with a newer serial and try\nagain.\n\nUpon receiving this event, the client should destroy this object."] - Cancelled, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "succeeded", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "cancelled", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Succeeded => 0, - Event::Failed => 1, - Event::Cancelled => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Succeeded => 1, - Event::Failed => 1, - Event::Cancelled => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Succeeded), - 1 => Ok(Event::Failed), - 2 => Ok(Event::Cancelled), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Succeeded), - 1 => Ok(Event::Failed), - 2 => Ok(Event::Cancelled), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputConfigurationV1(Proxy); - impl AsRef> for ZwlrOutputConfigurationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputConfigurationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputConfigurationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputConfigurationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputConfigurationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputConfigurationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_configuration_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_configuration_v1_interface } - } - } - impl ZwlrOutputConfigurationV1 { - #[doc = "enable and configure a head\n\nEnable a head. This request creates a head configuration object that can\nbe used to change the head's properties."] - pub fn enable_head( - &self, - head: &super::zwlr_output_head_v1::ZwlrOutputHeadV1, - ) -> Main { - let msg = Request::EnableHead { head: head.clone() }; - self.0.send(msg, None).unwrap() - } - #[doc = "disable a head\n\nDisable a head."] - pub fn disable_head(&self, head: &super::zwlr_output_head_v1::ZwlrOutputHeadV1) -> () { - let msg = Request::DisableHead { head: head.clone() }; - self.0.send::(msg, None); - } - #[doc = "apply the configuration\n\nApply the new output configuration.\n\nIn case the configuration is successfully applied, there is no guarantee\nthat the new output state matches completely the requested\nconfiguration. For instance, a compositor might round the scale if it\ndoesn't support fractional scaling.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - pub fn apply(&self) -> () { - let msg = Request::Apply; - self.0.send::(msg, None); - } - #[doc = "test the configuration\n\nTest the new output configuration. The configuration won't be applied,\nbut will only be validated.\n\nEven if the compositor succeeds to test a configuration, applying it may\nfail.\n\nAfter this request has been sent, the compositor must respond with an\nsucceeded, failed or cancelled event. Sending a request that isn't the\ndestructor is a protocol error."] - pub fn test(&self) -> () { - let msg = Request::Test; - self.0.send::(msg, None); - } - #[doc = "destroy the output configuration\n\nUsing this request a client can tell the compositor that it is not going\nto use the configuration object anymore. Any changes to the outputs\nthat have not been applied will be discarded.\n\nThis request also destroys wlr_output_configuration_head objects created\nvia this object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ENABLE_HEAD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DISABLE_HEAD_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_APPLY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_TEST_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_SUCCEEDED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CANCELLED_SINCE: u32 = 1u32; - static mut zwlr_output_configuration_v1_requests_enable_head_types: [*const wl_interface; 2] = [ - unsafe { - &super::zwlr_output_configuration_head_v1::zwlr_output_configuration_head_v1_interface - as *const wl_interface - }, - unsafe { - &super::zwlr_output_head_v1::zwlr_output_head_v1_interface as *const wl_interface - }, - ]; - static mut zwlr_output_configuration_v1_requests_disable_head_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_output_head_v1::zwlr_output_head_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_configuration_v1_requests: [wl_message; 5] = [ - wl_message { - name: b"enable_head\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_configuration_v1_requests_enable_head_types as *const _ }, - }, - wl_message { - name: b"disable_head\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_output_configuration_v1_requests_disable_head_types as *const _ }, - }, - wl_message { - name: b"apply\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"test\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_configuration_v1_events: [wl_message; 3] = [ - wl_message { - name: b"succeeded\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"cancelled\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_configuration_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_configuration_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 5, - requests: unsafe { &zwlr_output_configuration_v1_requests as *const _ }, - event_count: 3, - events: unsafe { &zwlr_output_configuration_v1_events as *const _ }, - }; -} -#[doc = "head configuration\n\nThis object is used by the client to update a single head's configuration.\n\nIt is a protocol error to set the same property twice."] -pub mod zwlr_output_configuration_head_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "property has already been set"] - AlreadySet = 1, - #[doc = "mode doesn't belong to head"] - InvalidMode = 2, - #[doc = "mode is invalid"] - InvalidCustomMode = 3, - #[doc = "transform value outside enum"] - InvalidTransform = 4, - #[doc = "scale negative or zero"] - InvalidScale = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::AlreadySet), - 2 => Some(Error::InvalidMode), - 3 => Some(Error::InvalidCustomMode), - 4 => Some(Error::InvalidTransform), - 5 => Some(Error::InvalidScale), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "set the mode\n\nThis request sets the head's mode."] - SetMode { - mode: super::zwlr_output_mode_v1::ZwlrOutputModeV1, - }, - #[doc = "set a custom mode\n\nThis request assigns a custom mode to the head. The size is given in\nphysical hardware units of the output device. If set to zero, the\nrefresh rate is unspecified.\n\nIt is a protocol error to set both a mode and a custom mode."] - SetCustomMode { - width: i32, - height: i32, - refresh: i32, - }, - #[doc = "set the position\n\nThis request sets the head's position in the global compositor space."] - SetPosition { x: i32, y: i32 }, - #[doc = "set the transform\n\nThis request sets the head's transform."] - SetTransform { - transform: super::wl_output::Transform, - }, - #[doc = "set the scale\n\nThis request sets the head's scale."] - SetScale { scale: f64 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_mode", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_custom_mode", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_transform", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_scale", - since: 1, - signature: &[super::ArgumentType::Fixed], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetMode { .. } => 0, - Request::SetCustomMode { .. } => 1, - Request::SetPosition { .. } => 2, - Request::SetTransform { .. } => 3, - Request::SetScale { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetMode { .. } => 1, - Request::SetCustomMode { .. } => 1, - Request::SetPosition { .. } => 1, - Request::SetTransform { .. } => 1, - Request::SetScale { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetMode { mode } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object(mode.as_ref().id()),], - }, - Request::SetCustomMode { - width, - height, - refresh, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Int(width), - Argument::Int(height), - Argument::Int(refresh), - ], - }, - Request::SetPosition { x, y } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - Request::SetTransform { transform } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Int(transform.to_raw() as i32),], - }, - Request::SetScale { scale } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Fixed((scale * 256.) as i32),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = mode.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::SetCustomMode { - width, - height, - refresh, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - _args_array[2].i = refresh; - f(1, &mut _args_array) - } - Request::SetPosition { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(2, &mut _args_array) - } - Request::SetTransform { transform } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = transform.to_raw() as i32; - f(3, &mut _args_array) - } - Request::SetScale { scale } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].f = (scale * 256.) as i32; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputConfigurationHeadV1(Proxy); - impl AsRef> for ZwlrOutputConfigurationHeadV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputConfigurationHeadV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputConfigurationHeadV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputConfigurationHeadV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputConfigurationHeadV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputConfigurationHeadV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_configuration_head_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_configuration_head_v1_interface } - } - } - impl ZwlrOutputConfigurationHeadV1 { - #[doc = "set the mode\n\nThis request sets the head's mode."] - pub fn set_mode(&self, mode: &super::zwlr_output_mode_v1::ZwlrOutputModeV1) -> () { - let msg = Request::SetMode { mode: mode.clone() }; - self.0.send::(msg, None); - } - #[doc = "set a custom mode\n\nThis request assigns a custom mode to the head. The size is given in\nphysical hardware units of the output device. If set to zero, the\nrefresh rate is unspecified.\n\nIt is a protocol error to set both a mode and a custom mode."] - pub fn set_custom_mode(&self, width: i32, height: i32, refresh: i32) -> () { - let msg = Request::SetCustomMode { - width: width, - height: height, - refresh: refresh, - }; - self.0.send::(msg, None); - } - #[doc = "set the position\n\nThis request sets the head's position in the global compositor space."] - pub fn set_position(&self, x: i32, y: i32) -> () { - let msg = Request::SetPosition { x: x, y: y }; - self.0.send::(msg, None); - } - #[doc = "set the transform\n\nThis request sets the head's transform."] - pub fn set_transform(&self, transform: super::wl_output::Transform) -> () { - let msg = Request::SetTransform { - transform: transform, - }; - self.0.send::(msg, None); - } - #[doc = "set the scale\n\nThis request sets the head's scale."] - pub fn set_scale(&self, scale: f64) -> () { - let msg = Request::SetScale { scale: scale }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CUSTOM_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TRANSFORM_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SCALE_SINCE: u32 = 1u32; - static mut zwlr_output_configuration_head_v1_requests_set_mode_types: [*const wl_interface; 1] = - [unsafe { - &super::zwlr_output_mode_v1::zwlr_output_mode_v1_interface as *const wl_interface - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_configuration_head_v1_requests: [wl_message; 5] = [ - wl_message { - name: b"set_mode\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_output_configuration_head_v1_requests_set_mode_types as *const _ - }, - }, - wl_message { - name: b"set_custom_mode\0" as *const u8 as *const c_char, - signature: b"iii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_transform\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_scale\0" as *const u8 as *const c_char, - signature: b"f\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_configuration_head_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_configuration_head_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 5, - requests: unsafe { &zwlr_output_configuration_head_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs deleted file mode 100644 index 6781a61..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs +++ /dev/null @@ -1,568 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "manager to create per-output power management\n\nThis interface is a manager that allows creating per-output power\nmanagement mode controls."] -pub mod zwlr_output_power_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "get a power management for an output\n\nCreate an output power management mode control that can be used to\nadjust the power management mode for a given output."] - GetOutputPower { output: super::wl_output::WlOutput }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "get_output_power", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::GetOutputPower { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::GetOutputPower { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_output_power_v1::ZwlrOutputPowerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::GetOutputPower { output } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::NewId(0), Argument::Object(output.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::GetOutputPower { output } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputPowerManagerV1(Proxy); - impl AsRef> for ZwlrOutputPowerManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputPowerManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputPowerManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputPowerManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputPowerManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputPowerManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_power_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_power_manager_v1_interface } - } - } - impl ZwlrOutputPowerManagerV1 { - #[doc = "get a power management for an output\n\nCreate an output power management mode control that can be used to\nadjust the power management mode for a given output."] - pub fn get_output_power( - &self, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::GetOutputPower { - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_OUTPUT_POWER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_output_power_manager_v1_requests_get_output_power_types: [*const wl_interface; - 2] = [ - unsafe { - &super::zwlr_output_power_v1::zwlr_output_power_v1_interface as *const wl_interface - }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_power_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"get_output_power\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_output_power_manager_v1_requests_get_output_power_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_power_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_power_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_output_power_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "adjust power management mode for an output\n\nThis object offers requests to set the power management mode of\nan output."] -pub mod zwlr_output_power_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "Output is turned off."] - Off = 0, - #[doc = "Output is turned on, no power saving"] - On = 1, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Mode::Off), - 1 => Some(Mode::On), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "nonexistent power save mode"] - InvalidMode = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::InvalidMode), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Set an outputs power save mode\n\nSet an output's power save mode to the given mode. The mode change\nis effective immediately. If the output does not support the given\nmode a failed event is sent."] - SetMode { mode: Mode }, - #[doc = "destroy this power management\n\nDestroys the output power management mode control object.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "set_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::SetMode { .. } => 0, - Request::Destroy => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::SetMode { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::SetMode { mode } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Uint(mode.to_raw()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::SetMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = mode.to_raw(); - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "Report a power management mode change\n\nReport the power management mode change of an output.\n\nThe mode event is sent after an output changed its power\nmanagement mode. The reason can be a client using set_mode or the\ncompositor deciding to change an output's mode.\nThis event is also sent immediately when the object is created\nso the client is informed about the current power management mode."] - Mode { mode: Mode }, - #[doc = "object no longer valid\n\nThis event indicates that the output power management mode control\nis no longer valid. This can happen for a number of reasons,\nincluding:\n- The output doesn't support power management\n- Another client already has exclusive power management mode control\nfor this output\n- The output disappeared\n\nUpon receiving this event, the client should destroy this object."] - Failed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Mode { .. } => 0, - Event::Failed => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Mode { .. } => 1, - Event::Failed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Mode { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Failed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Mode { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - 1 => Ok(Event::Failed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrOutputPowerV1(Proxy); - impl AsRef> for ZwlrOutputPowerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrOutputPowerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrOutputPowerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrOutputPowerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrOutputPowerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrOutputPowerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_output_power_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_output_power_v1_interface } - } - } - impl ZwlrOutputPowerV1 { - #[doc = "Set an outputs power save mode\n\nSet an output's power save mode to the given mode. The mode change\nis effective immediately. If the output does not support the given\nmode a failed event is sent."] - pub fn set_mode(&self, mode: Mode) -> () { - let msg = Request::SetMode { mode: mode }; - self.0.send::(msg, None); - } - #[doc = "destroy this power management\n\nDestroys the output power management mode control object.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_power_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"set_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_output_power_v1_events: [wl_message; 2] = [ - wl_message { - name: b"mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_output_power_v1_interface: wl_interface = wl_interface { - name: b"zwlr_output_power_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwlr_output_power_v1_requests as *const _ }, - event_count: 2, - events: unsafe { &zwlr_output_power_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs deleted file mode 100644 index a2c31a5..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs +++ /dev/null @@ -1,1005 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manager to inform clients and begin capturing\n\nThis object is a manager which offers requests to start capturing from a\nsource."] -pub mod zwlr_screencopy_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "capture an output\n\nCapture the next frame of an entire output."] - CaptureOutput { - overlay_cursor: i32, - output: super::wl_output::WlOutput, - }, - #[doc = "capture an output's region\n\nCapture the next frame of an output's region.\n\nThe region is given in output logical coordinates, see\nxdg_output.logical_size. The region will be clipped to the output's\nextents."] - CaptureOutputRegion { - overlay_cursor: i32, - output: super::wl_output::WlOutput, - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "capture_output", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "capture_output_region", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Int, - super::ArgumentType::Object, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CaptureOutput { .. } => 0, - Request::CaptureOutputRegion { .. } => 1, - Request::Destroy => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CaptureOutput { .. } => 1, - Request::CaptureOutputRegion { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_screencopy_frame_v1::ZwlrScreencopyFrameV1, - >(version, meta.child())), - 1 => Some(Object::from_interface::< - super::zwlr_screencopy_frame_v1::ZwlrScreencopyFrameV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::NewId(0), - Argument::Int(overlay_cursor), - Argument::Object(output.as_ref().id()), - ], - }, - Request::CaptureOutputRegion { - overlay_cursor, - output, - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Int(overlay_cursor), - Argument::Object(output.as_ref().id()), - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CaptureOutput { - overlay_cursor, - output, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = overlay_cursor; - _args_array[2].o = output.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::CaptureOutputRegion { - overlay_cursor, - output, - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 7] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].i = overlay_cursor; - _args_array[2].o = output.as_ref().c_ptr() as *mut _; - _args_array[3].i = x; - _args_array[4].i = y; - _args_array[5].i = width; - _args_array[6].i = height; - f(1, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrScreencopyManagerV1(Proxy); - impl AsRef> for ZwlrScreencopyManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrScreencopyManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrScreencopyManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrScreencopyManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrScreencopyManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrScreencopyManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_screencopy_manager_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_screencopy_manager_v1_interface } - } - } - impl ZwlrScreencopyManagerV1 { - #[doc = "capture an output\n\nCapture the next frame of an entire output."] - pub fn capture_output( - &self, - overlay_cursor: i32, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::CaptureOutput { - overlay_cursor: overlay_cursor, - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "capture an output's region\n\nCapture the next frame of an output's region.\n\nThe region is given in output logical coordinates, see\nxdg_output.logical_size. The region will be clipped to the output's\nextents."] - pub fn capture_output_region( - &self, - overlay_cursor: i32, - output: &super::wl_output::WlOutput, - x: i32, - y: i32, - width: i32, - height: i32, - ) -> Main { - let msg = Request::CaptureOutputRegion { - overlay_cursor: overlay_cursor, - output: output.clone(), - x: x, - y: y, - width: width, - height: height, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the manager\n\nAll objects created by the manager will still remain valid, until their\nappropriate destroy request has been called.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CAPTURE_OUTPUT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CAPTURE_OUTPUT_REGION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - static mut zwlr_screencopy_manager_v1_requests_capture_output_types: [*const wl_interface; 3] = [ - unsafe { - &super::zwlr_screencopy_frame_v1::zwlr_screencopy_frame_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - static mut zwlr_screencopy_manager_v1_requests_capture_output_region_types: - [*const wl_interface; 7] = [ - unsafe { - &super::zwlr_screencopy_frame_v1::zwlr_screencopy_frame_v1_interface - as *const wl_interface - }, - NULLPTR as *const wl_interface, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_screencopy_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"capture_output\0" as *const u8 as *const c_char, - signature: b"nio\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_screencopy_manager_v1_requests_capture_output_types as *const _ }, - }, - wl_message { - name: b"capture_output_region\0" as *const u8 as *const c_char, - signature: b"nioiiii\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_screencopy_manager_v1_requests_capture_output_region_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_screencopy_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_screencopy_manager_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &zwlr_screencopy_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "a frame ready for copy\n\nThis object represents a single frame.\n\nWhen created, a series of buffer events will be sent, each representing a\nsupported buffer type. The \"buffer_done\" event is sent afterwards to\nindicate that all supported buffer types have been enumerated. The client\nwill then be able to send a \"copy\" request. If the capture is successful,\nthe compositor will send a \"flags\" followed by a \"ready\" event.\n\nFor objects version 2 or lower, wl_shm buffers are always supported, ie.\nthe \"buffer\" event is guaranteed to be sent.\n\nIf the capture failed, the \"failed\" event is sent. This can happen anytime\nbefore the \"ready\" event.\n\nOnce either a \"ready\" or a \"failed\" event is received, the client should\ndestroy the frame."] -pub mod zwlr_screencopy_frame_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "the object has already been used to copy a wl_buffer"] - AlreadyUsed = 0, - #[doc = "buffer attributes are invalid"] - InvalidBuffer = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::AlreadyUsed), - 1 => Some(Error::InvalidBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Flags : u32 { # [doc = "contents are y-inverted"] const YInvert = 1 ; } } - impl Flags { - pub fn from_raw(n: u32) -> Option { - Some(Flags::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "copy the frame\n\nCopy the frame to the supplied buffer. The buffer must have a the\ncorrect size, see zwlr_screencopy_frame_v1.buffer and\nzwlr_screencopy_frame_v1.linux_dmabuf. The buffer needs to have a\nsupported format.\n\nIf the frame is successfully copied, a \"flags\" and a \"ready\" events are\nsent. Otherwise, a \"failed\" event is sent."] - Copy { buffer: super::wl_buffer::WlBuffer }, - #[doc = "delete this object, used or not\n\nDestroys the frame. This request can be sent at any time by the client.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "copy the frame when it's damaged\n\nSame as copy, except it waits until there is damage to copy.\n\nOnly available since version 2 of the interface"] - CopyWithDamage { buffer: super::wl_buffer::WlBuffer }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "copy", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "copy_with_damage", - since: 2, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Copy { .. } => 0, - Request::Destroy => 1, - Request::CopyWithDamage { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Copy { .. } => 1, - Request::Destroy => 1, - Request::CopyWithDamage { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Copy { buffer } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![Argument::Object(buffer.as_ref().id()),], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::CopyWithDamage { buffer } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Object(buffer.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Copy { buffer } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = buffer.as_ref().c_ptr() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::CopyWithDamage { buffer } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = buffer.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "wl_shm buffer information\n\nProvides information about wl_shm buffer parameters that need to be\nused for this frame. This event is sent once after the frame is created\nif wl_shm buffers are supported."] - Buffer { - format: super::wl_shm::Format, - width: u32, - height: u32, - stride: u32, - }, - #[doc = "frame flags\n\nProvides flags about the frame. This event is sent once before the\n\"ready\" event."] - Flags { flags: Flags }, - #[doc = "indicates frame is available for reading\n\nCalled as soon as the frame is copied, indicating it is available\nfor reading. This event includes the time at which presentation happened\nat.\n\nThe timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples,\neach component being an unsigned 32-bit value. Whole seconds are in\ntv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo,\nand the additional fractional part in tv_nsec as nanoseconds. Hence,\nfor valid timestamps tv_nsec must be in [0, 999999999]. The seconds part\nmay have an arbitrary offset at start.\n\nAfter receiving this event, the client should destroy the object."] - Ready { - tv_sec_hi: u32, - tv_sec_lo: u32, - tv_nsec: u32, - }, - #[doc = "frame copy failed\n\nThis event indicates that the attempted frame copy has failed.\n\nAfter receiving this event, the client should destroy the object."] - Failed, - #[doc = "carries the coordinates of the damaged region\n\nThis event is sent right before the ready event when copy_with_damage is\nrequested. It may be generated multiple times for each copy_with_damage\nrequest.\n\nThe arguments describe a box around an area that has changed since the\nlast copy request that was derived from the current screencopy manager\ninstance.\n\nThe union of all regions received between the call to copy_with_damage\nand a ready event is the total damage since the prior ready event.\n\nOnly available since version 2 of the interface"] - Damage { - x: u32, - y: u32, - width: u32, - height: u32, - }, - #[doc = "linux-dmabuf buffer information\n\nProvides information about linux-dmabuf buffer parameters that need to\nbe used for this frame. This event is sent once after the frame is\ncreated if linux-dmabuf buffers are supported.\n\nOnly available since version 3 of the interface"] - LinuxDmabuf { - format: u32, - width: u32, - height: u32, - }, - #[doc = "all buffer types reported\n\nThis event is sent once after all buffer events have been sent.\n\nThe client should proceed to create a buffer of one of the supported\ntypes, and send a \"copy\" request.\n\nOnly available since version 3 of the interface"] - BufferDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "buffer", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "flags", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "ready", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "failed", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "damage", - since: 2, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "linux_dmabuf", - since: 3, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "buffer_done", - since: 3, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Buffer { .. } => 0, - Event::Flags { .. } => 1, - Event::Ready { .. } => 2, - Event::Failed => 3, - Event::Damage { .. } => 4, - Event::LinuxDmabuf { .. } => 5, - Event::BufferDone => 6, - } - } - fn since(&self) -> u32 { - match *self { - Event::Buffer { .. } => 1, - Event::Flags { .. } => 1, - Event::Ready { .. } => 1, - Event::Failed => 1, - Event::Damage { .. } => 2, - Event::LinuxDmabuf { .. } => 3, - Event::BufferDone => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Buffer { - format: { - if let Some(Argument::Uint(val)) = args.next() { - super::wl_shm::Format::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - stride: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::Flags { - flags: { - if let Some(Argument::Uint(val)) = args.next() { - Flags::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ready { - tv_sec_hi: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_sec_lo: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - tv_nsec: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 3 => Ok(Event::Failed), - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Damage { - x: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 5 => { - let mut args = msg.args.into_iter(); - Ok(Event::LinuxDmabuf { - format: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 6 => Ok(Event::BufferDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Buffer { - format: super::wl_shm::Format::from_raw(_args[0].u).ok_or(())?, - width: _args[1].u, - height: _args[2].u, - stride: _args[3].u, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Flags { - flags: Flags::from_raw(_args[0].u).ok_or(())?, - }) - } - 2 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Ready { - tv_sec_hi: _args[0].u, - tv_sec_lo: _args[1].u, - tv_nsec: _args[2].u, - }) - } - 3 => Ok(Event::Failed), - 4 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Damage { - x: _args[0].u, - y: _args[1].u, - width: _args[2].u, - height: _args[3].u, - }) - } - 5 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::LinuxDmabuf { - format: _args[0].u, - width: _args[1].u, - height: _args[2].u, - }) - } - 6 => Ok(Event::BufferDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrScreencopyFrameV1(Proxy); - impl AsRef> for ZwlrScreencopyFrameV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrScreencopyFrameV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrScreencopyFrameV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrScreencopyFrameV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrScreencopyFrameV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrScreencopyFrameV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_screencopy_frame_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_screencopy_frame_v1_interface } - } - } - impl ZwlrScreencopyFrameV1 { - #[doc = "copy the frame\n\nCopy the frame to the supplied buffer. The buffer must have a the\ncorrect size, see zwlr_screencopy_frame_v1.buffer and\nzwlr_screencopy_frame_v1.linux_dmabuf. The buffer needs to have a\nsupported format.\n\nIf the frame is successfully copied, a \"flags\" and a \"ready\" events are\nsent. Otherwise, a \"failed\" event is sent."] - pub fn copy(&self, buffer: &super::wl_buffer::WlBuffer) -> () { - let msg = Request::Copy { - buffer: buffer.clone(), - }; - self.0.send::(msg, None); - } - #[doc = "delete this object, used or not\n\nDestroys the frame. This request can be sent at any time by the client.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "copy the frame when it's damaged\n\nSame as copy, except it waits until there is damage to copy.\n\nOnly available since version 2 of the interface."] - pub fn copy_with_damage(&self, buffer: &super::wl_buffer::WlBuffer) -> () { - let msg = Request::CopyWithDamage { - buffer: buffer.clone(), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COPY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_COPY_WITH_DAMAGE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUFFER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FLAGS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_READY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_FAILED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DAMAGE_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LINUX_DMABUF_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_BUFFER_DONE_SINCE: u32 = 3u32; - static mut zwlr_screencopy_frame_v1_requests_copy_types: [*const wl_interface; 1] = - [unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }]; - static mut zwlr_screencopy_frame_v1_requests_copy_with_damage_types: [*const wl_interface; 1] = - [unsafe { &super::wl_buffer::wl_buffer_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_screencopy_frame_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"copy\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_screencopy_frame_v1_requests_copy_types as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"copy_with_damage\0" as *const u8 as *const c_char, - signature: b"2o\0" as *const u8 as *const c_char, - types: unsafe { &zwlr_screencopy_frame_v1_requests_copy_with_damage_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_screencopy_frame_v1_events: [wl_message; 7] = [ - wl_message { - name: b"buffer\0" as *const u8 as *const c_char, - signature: b"uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"flags\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ready\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"failed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"damage\0" as *const u8 as *const c_char, - signature: b"2uuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"linux_dmabuf\0" as *const u8 as *const c_char, - signature: b"3uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"buffer_done\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_screencopy_frame_v1_interface: wl_interface = wl_interface { - name: b"zwlr_screencopy_frame_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &zwlr_screencopy_frame_v1_requests as *const _ }, - event_count: 7, - events: unsafe { &zwlr_screencopy_frame_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs deleted file mode 100644 index a80b45e..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs +++ /dev/null @@ -1,949 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 5] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "virtual pointer\n\nThis protocol allows clients to emulate a physical pointer device. The\nrequests are mostly mirror opposites of those specified in wl_pointer."] -pub mod zwlr_virtual_pointer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "client sent invalid axis enumeration value"] - InvalidAxis = 0, - #[doc = "client sent invalid axis source enumeration value"] - InvalidAxisSource = 1, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidAxis), - 1 => Some(Error::InvalidAxisSource), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "pointer relative motion event\n\nThe pointer has moved by a relative amount to the previous request.\n\nValues are in the global compositor space."] - Motion { time: u32, dx: f64, dy: f64 }, - #[doc = "pointer absolute motion event\n\nThe pointer has moved in an absolute coordinate frame.\n\nValue of x can range from 0 to x_extent, value of y can range from 0\nto y_extent."] - MotionAbsolute { - time: u32, - x: u32, - y: u32, - x_extent: u32, - y_extent: u32, - }, - #[doc = "button event\n\nA button was pressed or released."] - Button { - time: u32, - button: u32, - state: super::wl_pointer::ButtonState, - }, - #[doc = "axis event\n\nScroll and other axis requests."] - Axis { - time: u32, - axis: super::wl_pointer::Axis, - value: f64, - }, - #[doc = "end of a pointer event sequence\n\nIndicates the set of events that logically belong together."] - Frame, - #[doc = "axis source event\n\nSource information for scroll and other axis."] - AxisSource { - axis_source: super::wl_pointer::AxisSource, - }, - #[doc = "axis stop event\n\nStop notification for scroll and other axes."] - AxisStop { - time: u32, - axis: super::wl_pointer::Axis, - }, - #[doc = "axis click event\n\nDiscrete step information for scroll and other axes.\n\nThis event allows the client to extend data normally sent using the axis\nevent with discrete value."] - AxisDiscrete { - time: u32, - axis: super::wl_pointer::Axis, - value: f64, - discrete: i32, - }, - #[doc = "destroy the virtual pointer object\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "motion", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "motion_absolute", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "button", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "axis", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - ], - destructor: false, - }, - super::MessageDesc { - name: "frame", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "axis_source", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_stop", - since: 1, - signature: &[super::ArgumentType::Uint, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "axis_discrete", - since: 1, - signature: &[ - super::ArgumentType::Uint, - super::ArgumentType::Uint, - super::ArgumentType::Fixed, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Motion { .. } => 0, - Request::MotionAbsolute { .. } => 1, - Request::Button { .. } => 2, - Request::Axis { .. } => 3, - Request::Frame => 4, - Request::AxisSource { .. } => 5, - Request::AxisStop { .. } => 6, - Request::AxisDiscrete { .. } => 7, - Request::Destroy => 8, - } - } - fn since(&self) -> u32 { - match *self { - Request::Motion { .. } => 1, - Request::MotionAbsolute { .. } => 1, - Request::Button { .. } => 1, - Request::Axis { .. } => 1, - Request::Frame => 1, - Request::AxisSource { .. } => 1, - Request::AxisStop { .. } => 1, - Request::AxisDiscrete { .. } => 1, - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Motion { time, dx, dy } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Uint(time), - Argument::Fixed((dx * 256.) as i32), - Argument::Fixed((dy * 256.) as i32), - ], - }, - Request::MotionAbsolute { - time, - x, - y, - x_extent, - y_extent, - } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(x), - Argument::Uint(y), - Argument::Uint(x_extent), - Argument::Uint(y_extent), - ], - }, - Request::Button { - time, - button, - state, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(button), - Argument::Uint(state.to_raw()), - ], - }, - Request::Axis { time, axis, value } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(axis.to_raw()), - Argument::Fixed((value * 256.) as i32), - ], - }, - Request::Frame => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![], - }, - Request::AxisSource { axis_source } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Uint(axis_source.to_raw()),], - }, - Request::AxisStop { time, axis } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Uint(time), Argument::Uint(axis.to_raw()),], - }, - Request::AxisDiscrete { - time, - axis, - value, - discrete, - } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![ - Argument::Uint(time), - Argument::Uint(axis.to_raw()), - Argument::Fixed((value * 256.) as i32), - Argument::Int(discrete), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Motion { time, dx, dy } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].f = (dx * 256.) as i32; - _args_array[2].f = (dy * 256.) as i32; - f(0, &mut _args_array) - } - Request::MotionAbsolute { - time, - x, - y, - x_extent, - y_extent, - } => { - let mut _args_array: [wl_argument; 5] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = x; - _args_array[2].u = y; - _args_array[3].u = x_extent; - _args_array[4].u = y_extent; - f(1, &mut _args_array) - } - Request::Button { - time, - button, - state, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = button; - _args_array[2].u = state.to_raw(); - f(2, &mut _args_array) - } - Request::Axis { time, axis, value } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = axis.to_raw(); - _args_array[2].f = (value * 256.) as i32; - f(3, &mut _args_array) - } - Request::Frame => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(4, &mut _args_array) - } - Request::AxisSource { axis_source } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = axis_source.to_raw(); - f(5, &mut _args_array) - } - Request::AxisStop { time, axis } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = axis.to_raw(); - f(6, &mut _args_array) - } - Request::AxisDiscrete { - time, - axis, - value, - discrete, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = time; - _args_array[1].u = axis.to_raw(); - _args_array[2].f = (value * 256.) as i32; - _args_array[3].i = discrete; - f(7, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(8, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrVirtualPointerV1(Proxy); - impl AsRef> for ZwlrVirtualPointerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrVirtualPointerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrVirtualPointerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrVirtualPointerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrVirtualPointerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrVirtualPointerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_virtual_pointer_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_virtual_pointer_v1_interface } - } - } - impl ZwlrVirtualPointerV1 { - #[doc = "pointer relative motion event\n\nThe pointer has moved by a relative amount to the previous request.\n\nValues are in the global compositor space."] - pub fn motion(&self, time: u32, dx: f64, dy: f64) -> () { - let msg = Request::Motion { - time: time, - dx: dx, - dy: dy, - }; - self.0.send::(msg, None); - } - #[doc = "pointer absolute motion event\n\nThe pointer has moved in an absolute coordinate frame.\n\nValue of x can range from 0 to x_extent, value of y can range from 0\nto y_extent."] - pub fn motion_absolute( - &self, - time: u32, - x: u32, - y: u32, - x_extent: u32, - y_extent: u32, - ) -> () { - let msg = Request::MotionAbsolute { - time: time, - x: x, - y: y, - x_extent: x_extent, - y_extent: y_extent, - }; - self.0.send::(msg, None); - } - #[doc = "button event\n\nA button was pressed or released."] - pub fn button(&self, time: u32, button: u32, state: super::wl_pointer::ButtonState) -> () { - let msg = Request::Button { - time: time, - button: button, - state: state, - }; - self.0.send::(msg, None); - } - #[doc = "axis event\n\nScroll and other axis requests."] - pub fn axis(&self, time: u32, axis: super::wl_pointer::Axis, value: f64) -> () { - let msg = Request::Axis { - time: time, - axis: axis, - value: value, - }; - self.0.send::(msg, None); - } - #[doc = "end of a pointer event sequence\n\nIndicates the set of events that logically belong together."] - pub fn frame(&self) -> () { - let msg = Request::Frame; - self.0.send::(msg, None); - } - #[doc = "axis source event\n\nSource information for scroll and other axis."] - pub fn axis_source(&self, axis_source: super::wl_pointer::AxisSource) -> () { - let msg = Request::AxisSource { - axis_source: axis_source, - }; - self.0.send::(msg, None); - } - #[doc = "axis stop event\n\nStop notification for scroll and other axes."] - pub fn axis_stop(&self, time: u32, axis: super::wl_pointer::Axis) -> () { - let msg = Request::AxisStop { - time: time, - axis: axis, - }; - self.0.send::(msg, None); - } - #[doc = "axis click event\n\nDiscrete step information for scroll and other axes.\n\nThis event allows the client to extend data normally sent using the axis\nevent with discrete value."] - pub fn axis_discrete( - &self, - time: u32, - axis: super::wl_pointer::Axis, - value: f64, - discrete: i32, - ) -> () { - let msg = Request::AxisDiscrete { - time: time, - axis: axis, - value: value, - discrete: discrete, - }; - self.0.send::(msg, None); - } - #[doc = "destroy the virtual pointer object\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOTION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOTION_ABSOLUTE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_BUTTON_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_FRAME_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_SOURCE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_STOP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_AXIS_DISCRETE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_virtual_pointer_v1_requests: [wl_message; 9] = [ - wl_message { - name: b"motion\0" as *const u8 as *const c_char, - signature: b"uff\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"motion_absolute\0" as *const u8 as *const c_char, - signature: b"uuuuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"button\0" as *const u8 as *const c_char, - signature: b"uuu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis\0" as *const u8 as *const c_char, - signature: b"uuf\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"frame\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_source\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_stop\0" as *const u8 as *const c_char, - signature: b"uu\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"axis_discrete\0" as *const u8 as *const c_char, - signature: b"uufi\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_virtual_pointer_v1_interface: wl_interface = wl_interface { - name: b"zwlr_virtual_pointer_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 9, - requests: unsafe { &zwlr_virtual_pointer_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "virtual pointer manager\n\nThis object allows clients to create individual virtual pointer objects."] -pub mod zwlr_virtual_pointer_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The optional seat is a suggestion to the\ncompositor."] - CreateVirtualPointer { - seat: Option, - }, - #[doc = "destroy the virtual pointer manager\n\n\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The seat and the output arguments are\noptional. If the seat argument is set, the compositor should assign the\ninput device to the requested seat. If the output argument is set, the\ncompositor should map the input device to the requested output.\n\nOnly available since version 2 of the interface"] - CreateVirtualPointerWithOutput { - seat: Option, - output: Option, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "create_virtual_pointer", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_virtual_pointer_with_output", - since: 2, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::NewId, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::CreateVirtualPointer { .. } => 0, - Request::Destroy => 1, - Request::CreateVirtualPointerWithOutput { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::CreateVirtualPointer { .. } => 1, - Request::Destroy => 1, - Request::CreateVirtualPointerWithOutput { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 0 => Some(Object::from_interface::< - super::zwlr_virtual_pointer_v1::ZwlrVirtualPointerV1, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zwlr_virtual_pointer_v1::ZwlrVirtualPointerV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::CreateVirtualPointer { seat } => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![ - Argument::Object(seat.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::NewId(0), - ], - }, - Request::Destroy => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![], - }, - Request::CreateVirtualPointerWithOutput { seat, output } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(seat.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Object(output.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::NewId(0), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::CreateVirtualPointer { seat } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].o = ::std::ptr::null_mut() as *mut _; - f(0, &mut _args_array) - } - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(1, &mut _args_array) - } - Request::CreateVirtualPointerWithOutput { seat, output } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[1].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].o = ::std::ptr::null_mut() as *mut _; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwlrVirtualPointerManagerV1(Proxy); - impl AsRef> for ZwlrVirtualPointerManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwlrVirtualPointerManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwlrVirtualPointerManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwlrVirtualPointerManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwlrVirtualPointerManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwlrVirtualPointerManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwlr_virtual_pointer_manager_v1"; - const VERSION: u32 = 2; - fn c_interface() -> *const wl_interface { - unsafe { &zwlr_virtual_pointer_manager_v1_interface } - } - } - impl ZwlrVirtualPointerManagerV1 { - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The optional seat is a suggestion to the\ncompositor."] - pub fn create_virtual_pointer( - &self, - seat: Option<&super::wl_seat::WlSeat>, - ) -> Main { - let msg = Request::CreateVirtualPointer { - seat: seat.map(|o| o.clone()), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "destroy the virtual pointer manager\n\n\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "Create a new virtual pointer\n\nCreates a new virtual pointer. The seat and the output arguments are\noptional. If the seat argument is set, the compositor should assign the\ninput device to the requested seat. If the output argument is set, the\ncompositor should map the input device to the requested output.\n\nOnly available since version 2 of the interface."] - pub fn create_virtual_pointer_with_output( - &self, - seat: Option<&super::wl_seat::WlSeat>, - output: Option<&super::wl_output::WlOutput>, - ) -> Main { - let msg = Request::CreateVirtualPointerWithOutput { - seat: seat.map(|o| o.clone()), - output: output.map(|o| o.clone()), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_VIRTUAL_POINTER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_VIRTUAL_POINTER_WITH_OUTPUT_SINCE: u32 = 2u32; - static mut zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_types: - [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { - &super::zwlr_virtual_pointer_v1::zwlr_virtual_pointer_v1_interface - as *const wl_interface - }, - ]; - static mut zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_with_output_types: - [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - unsafe { - &super::zwlr_virtual_pointer_v1::zwlr_virtual_pointer_v1_interface - as *const wl_interface - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwlr_virtual_pointer_manager_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"create_virtual_pointer\0" as *const u8 as *const c_char, - signature: b"?on\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_types as *const _ - }, - }, - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_virtual_pointer_with_output\0" as *const u8 as *const c_char, - signature: b"2?o?on\0" as *const u8 as *const c_char, - types: unsafe { - &zwlr_virtual_pointer_manager_v1_requests_create_virtual_pointer_with_output_types - as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwlr_virtual_pointer_manager_v1_interface: wl_interface = wl_interface { - name: b"zwlr_virtual_pointer_manager_v1\0" as *const u8 as *const c_char, - version: 2, - request_count: 3, - requests: unsafe { &zwlr_virtual_pointer_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs deleted file mode 100644 index cd30b1c..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs +++ /dev/null @@ -1,586 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "window decoration manager\n\nThis interface allows a compositor to announce support for server-side\ndecorations.\n\nA window decoration is a set of window controls as deemed appropriate by\nthe party managing them, such as user interface components used to move,\nresize and change a window's state.\n\nA client can use this protocol to request being decorated by a supporting\ncompositor.\n\nIf compositor and client do not negotiate the use of a server-side\ndecoration using this protocol, clients continue to self-decorate as they\nsee fit.\n\nWarning! The protocol described in this file is experimental and\nbackward incompatible changes may be made. Backward compatible changes\nmay be added together with the corresponding interface version bump.\nBackward incompatible changes are done by bumping the version number in\nthe protocol and interface names and resetting the interface version.\nOnce the protocol is to be declared stable, the 'z' prefix and the\nversion number in the protocol and interface names are removed and the\ninterface version number is reset."] -pub mod zxdg_decoration_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the decoration manager object\n\nDestroy the decoration manager. This doesn't destroy objects created\nwith the manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a new toplevel decoration object\n\nCreate a new decoration object associated with the given toplevel.\n\nCreating an xdg_toplevel_decoration from an xdg_toplevel which has a\nbuffer attached or committed is a client error, and any attempts by a\nclient to attach or manipulate a buffer prior to the first\nxdg_toplevel_decoration.configure event must also be treated as\nerrors."] - GetToplevelDecoration { - toplevel: super::xdg_toplevel::XdgToplevel, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_toplevel_decoration", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetToplevelDecoration { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetToplevelDecoration { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_toplevel_decoration_v1::ZxdgToplevelDecorationV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetToplevelDecoration { toplevel } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(toplevel.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetToplevelDecoration { toplevel } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = toplevel.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgDecorationManagerV1(Proxy); - impl AsRef> for ZxdgDecorationManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgDecorationManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgDecorationManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgDecorationManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgDecorationManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgDecorationManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_decoration_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_decoration_manager_v1_interface } - } - } - impl ZxdgDecorationManagerV1 { - #[doc = "destroy the decoration manager object\n\nDestroy the decoration manager. This doesn't destroy objects created\nwith the manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a new toplevel decoration object\n\nCreate a new decoration object associated with the given toplevel.\n\nCreating an xdg_toplevel_decoration from an xdg_toplevel which has a\nbuffer attached or committed is a client error, and any attempts by a\nclient to attach or manipulate a buffer prior to the first\nxdg_toplevel_decoration.configure event must also be treated as\nerrors."] - pub fn get_toplevel_decoration( - &self, - toplevel: &super::xdg_toplevel::XdgToplevel, - ) -> Main { - let msg = Request::GetToplevelDecoration { - toplevel: toplevel.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOPLEVEL_DECORATION_SINCE: u32 = 1u32; - static mut zxdg_decoration_manager_v1_requests_get_toplevel_decoration_types: - [*const wl_interface; 2] = [ - unsafe { - &super::zxdg_toplevel_decoration_v1::zxdg_toplevel_decoration_v1_interface - as *const wl_interface - }, - unsafe { &super::xdg_toplevel::xdg_toplevel_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_decoration_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_toplevel_decoration\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { - &zxdg_decoration_manager_v1_requests_get_toplevel_decoration_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_decoration_manager_v1_interface: wl_interface = wl_interface { - name: b"zxdg_decoration_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_decoration_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "decoration object for a toplevel surface\n\nThe decoration object allows the compositor to toggle server-side window\ndecorations for a toplevel surface. The client can request to switch to\nanother mode.\n\nThe xdg_toplevel_decoration object must be destroyed before its\nxdg_toplevel."] -pub mod zxdg_toplevel_decoration_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "xdg_toplevel has a buffer attached before configure"] - UnconfiguredBuffer = 0, - #[doc = "xdg_toplevel already has a decoration object"] - AlreadyConstructed = 1, - #[doc = "xdg_toplevel destroyed before the decoration object"] - Orphaned = 2, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::UnconfiguredBuffer), - 1 => Some(Error::AlreadyConstructed), - 2 => Some(Error::Orphaned), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "window decoration modes\n\nThese values describe window decoration modes."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Mode { - #[doc = "no server-side window decoration"] - ClientSide = 1, - #[doc = "server-side window decoration"] - ServerSide = 2, - } - impl Mode { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Mode::ClientSide), - 2 => Some(Mode::ServerSide), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the decoration object\n\nSwitch back to a mode without any server-side decorations at the next\ncommit.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the decoration mode\n\nSet the toplevel surface decoration mode. This informs the compositor\nthat the client prefers the provided decoration mode.\n\nAfter requesting a decoration mode, the compositor will respond by\nemitting an xdg_surface.configure event. The client should then update\nits content, drawing it without decorations if the received mode is\nserver-side decorations. The client must also acknowledge the configure\nwhen committing the new content (see xdg_surface.ack_configure).\n\nThe compositor can decide not to use the client's mode and enforce a\ndifferent mode instead.\n\nClients whose decoration mode depend on the xdg_toplevel state may send\na set_mode request in response to an xdg_surface.configure event and wait\nfor the next xdg_surface.configure event to prevent unwanted state.\nSuch clients are responsible for preventing configure loops and must\nmake sure not to send multiple successive set_mode requests with the\nsame decoration mode."] - SetMode { mode: Mode }, - #[doc = "unset the decoration mode\n\nUnset the toplevel surface decoration mode. This informs the compositor\nthat the client doesn't prefer a particular decoration mode.\n\nThis request has the same semantics as set_mode."] - UnsetMode, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_mode", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "unset_mode", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetMode { .. } => 1, - Request::UnsetMode => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetMode { .. } => 1, - Request::UnsetMode => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetMode { mode } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Uint(mode.to_raw()),], - }, - Request::UnsetMode => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetMode { mode } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = mode.to_raw(); - f(1, &mut _args_array) - } - Request::UnsetMode => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event asks the client to change its decoration mode. The\nconfigured state should not be applied immediately. Clients must send an\nack_configure in response to this event. See xdg_surface.configure and\nxdg_surface.ack_configure for details.\n\nA configure event can be sent at any time. The specified mode must be\nobeyed by the client."] - Configure { mode: Mode }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - mode: { - if let Some(Argument::Uint(val)) = args.next() { - Mode::from_raw(val).ok_or(())? - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Configure { - mode: Mode::from_raw(_args[0].u).ok_or(())?, - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgToplevelDecorationV1(Proxy); - impl AsRef> for ZxdgToplevelDecorationV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgToplevelDecorationV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgToplevelDecorationV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgToplevelDecorationV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgToplevelDecorationV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgToplevelDecorationV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_toplevel_decoration_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_toplevel_decoration_v1_interface } - } - } - impl ZxdgToplevelDecorationV1 { - #[doc = "destroy the decoration object\n\nSwitch back to a mode without any server-side decorations at the next\ncommit.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the decoration mode\n\nSet the toplevel surface decoration mode. This informs the compositor\nthat the client prefers the provided decoration mode.\n\nAfter requesting a decoration mode, the compositor will respond by\nemitting an xdg_surface.configure event. The client should then update\nits content, drawing it without decorations if the received mode is\nserver-side decorations. The client must also acknowledge the configure\nwhen committing the new content (see xdg_surface.ack_configure).\n\nThe compositor can decide not to use the client's mode and enforce a\ndifferent mode instead.\n\nClients whose decoration mode depend on the xdg_toplevel state may send\na set_mode request in response to an xdg_surface.configure event and wait\nfor the next xdg_surface.configure event to prevent unwanted state.\nSuch clients are responsible for preventing configure loops and must\nmake sure not to send multiple successive set_mode requests with the\nsame decoration mode."] - pub fn set_mode(&self, mode: Mode) -> () { - let msg = Request::SetMode { mode: mode }; - self.0.send::(msg, None); - } - #[doc = "unset the decoration mode\n\nUnset the toplevel surface decoration mode. This informs the compositor\nthat the client doesn't prefer a particular decoration mode.\n\nThis request has the same semantics as set_mode."] - pub fn unset_mode(&self) -> () { - let msg = Request::UnsetMode; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MODE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_decoration_v1_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_mode\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_mode\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_decoration_v1_events: [wl_message; 1] = [wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_toplevel_decoration_v1_interface: wl_interface = wl_interface { - name: b"zxdg_toplevel_decoration_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 3, - requests: unsafe { &zxdg_toplevel_decoration_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_toplevel_decoration_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs deleted file mode 100644 index 30c89ae..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs +++ /dev/null @@ -1,959 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "interface for exporting surfaces\n\nA global interface used for exporting surfaces that can later be imported\nusing xdg_importer."] -pub mod zxdg_exporter_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "export a surface\n\nThe export request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_surface\nsurfaces may be exported."] - Export { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "export", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Export { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Export { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_exported_v1::ZxdgExportedV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Export { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Export { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExporterV1(Proxy); - impl AsRef> for ZxdgExporterV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExporterV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExporterV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExporterV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExporterV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExporterV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exporter_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exporter_v1_interface } - } - } - impl ZxdgExporterV1 { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "export a surface\n\nThe export request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_surface\nsurfaces may be exported."] - pub fn export( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::Export { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_EXPORT_SINCE: u32 = 1u32; - static mut zxdg_exporter_v1_requests_export_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_exported_v1::zxdg_exported_v1_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exporter_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"export\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_exporter_v1_requests_export_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exporter_v1_interface: wl_interface = wl_interface { - name: b"zxdg_exporter_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_exporter_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "interface for importing surfaces\n\nA global interface used for importing surfaces exported by xdg_exporter.\nWith this interface, a client can create a reference to a surface of\nanother client."] -pub mod zxdg_importer_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "import a surface\n\nThe import request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export. When\ncalled, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - Import { handle: String }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "import", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Import { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Import { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_imported_v1::ZxdgImportedV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Import { handle } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(handle.into()) - })), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Import { handle } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - let _arg_1 = ::std::ffi::CString::new(handle).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImporterV1(Proxy); - impl AsRef> for ZxdgImporterV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImporterV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImporterV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImporterV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImporterV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImporterV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_importer_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_importer_v1_interface } - } - } - impl ZxdgImporterV1 { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "import a surface\n\nThe import request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export. When\ncalled, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - pub fn import(&self, handle: String) -> Main { - let msg = Request::Import { handle: handle }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_IMPORT_SINCE: u32 = 1u32; - static mut zxdg_importer_v1_requests_import_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_imported_v1::zxdg_imported_v1_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_importer_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"import\0" as *const u8 as *const c_char, - signature: b"ns\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_importer_v1_requests_import_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_importer_v1_interface: wl_interface = wl_interface { - name: b"zxdg_importer_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_importer_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "an exported surface handle\n\nAn xdg_exported object represents an exported reference to a surface. The\nexported surface may be referenced as long as the xdg_exported object not\ndestroyed. Destroying the xdg_exported invalidates any relationship the\nimporter may have established using xdg_imported."] -pub mod zxdg_exported_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the exported surface handle\n\nThe handle event contains the unique handle of this exported surface\nreference. It may be shared with any client, which then can use it to\nimport the surface by calling xdg_importer.import. A handle may be\nused to import the surface multiple times."] - Handle { handle: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "handle", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Handle { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Handle { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Handle { - handle: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Handle { - handle: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExportedV1(Proxy); - impl AsRef> for ZxdgExportedV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExportedV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExportedV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExportedV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExportedV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExportedV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exported_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exported_v1_interface } - } - } - impl ZxdgExportedV1 { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HANDLE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v1_events: [wl_message; 1] = [wl_message { - name: b"handle\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exported_v1_interface: wl_interface = wl_interface { - name: b"zxdg_exported_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zxdg_exported_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_exported_v1_events as *const _ }, - }; -} -#[doc = "an imported surface handle\n\nAn xdg_imported object represents an imported reference to surface exported\nby some client. A client can use this interface to manipulate\nrelationships between its own surfaces and the imported surface."] -pub mod zxdg_imported_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be a toplevel xdg_surface. Calling this function\nsets up a surface to surface relation with the same stacking and positioning\nsemantics as xdg_surface.set_parent."] - SetParentOf { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent_of", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParentOf { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParentOf { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParentOf { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParentOf { surface } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the imported surface handle has been destroyed\n\nThe imported surface handle has been destroyed and any relationship set\nup has been invalidated. This may happen for various reasons, for\nexample if the exported surface or the exported surface handle has been\ndestroyed, if the handle used for importing was invalid."] - Destroyed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroyed", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Destroyed => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Destroyed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Destroyed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Destroyed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImportedV1(Proxy); - impl AsRef> for ZxdgImportedV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImportedV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImportedV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImportedV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImportedV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImportedV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_imported_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_imported_v1_interface } - } - } - impl ZxdgImportedV1 { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be a toplevel xdg_surface. Calling this function\nsets up a surface to surface relation with the same stacking and positioning\nsemantics as xdg_surface.set_parent."] - pub fn set_parent_of(&self, surface: &super::wl_surface::WlSurface) -> () { - let msg = Request::SetParentOf { - surface: surface.clone(), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_OF_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESTROYED_SINCE: u32 = 1u32; - static mut zxdg_imported_v1_requests_set_parent_of_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_of\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_imported_v1_requests_set_parent_of_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v1_events: [wl_message; 1] = [wl_message { - name: b"destroyed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_imported_v1_interface: wl_interface = wl_interface { - name: b"zxdg_imported_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_imported_v1_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_imported_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs deleted file mode 100644 index b86e210..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs +++ /dev/null @@ -1,1000 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 1] = - [NULLPTR as *const sys::common::wl_interface]; -#[doc = "interface for exporting surfaces\n\nA global interface used for exporting surfaces that can later be imported\nusing xdg_importer."] -pub mod zxdg_exporter_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "error values\n\nThese errors can be emitted in response to invalid xdg_exporter\nrequests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "surface is not an xdg_toplevel"] - InvalidSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "export a toplevel surface\n\nThe export_toplevel request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_toplevel\nequivalent surfaces may be exported, otherwise an invalid_surface\nprotocol error is sent."] - ExportToplevel { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "export_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::ExportToplevel { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::ExportToplevel { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_exported_v2::ZxdgExportedV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::ExportToplevel { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::ExportToplevel { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExporterV2(Proxy); - impl AsRef> for ZxdgExporterV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExporterV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExporterV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExporterV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExporterV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExporterV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exporter_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exporter_v2_interface } - } - } - impl ZxdgExporterV2 { - #[doc = "destroy the xdg_exporter object\n\nNotify the compositor that the xdg_exporter object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "export a toplevel surface\n\nThe export_toplevel request exports the passed surface so that it can later be\nimported via xdg_importer. When called, a new xdg_exported object will\nbe created and xdg_exported.handle will be sent immediately. See the\ncorresponding interface and event for details.\n\nA surface may be exported multiple times, and each exported handle may\nbe used to create an xdg_imported multiple times. Only xdg_toplevel\nequivalent surfaces may be exported, otherwise an invalid_surface\nprotocol error is sent."] - pub fn export_toplevel( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::ExportToplevel { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_EXPORT_TOPLEVEL_SINCE: u32 = 1u32; - static mut zxdg_exporter_v2_requests_export_toplevel_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_exported_v2::zxdg_exported_v2_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exporter_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"export_toplevel\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_exporter_v2_requests_export_toplevel_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exporter_v2_interface: wl_interface = wl_interface { - name: b"zxdg_exporter_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_exporter_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "interface for importing surfaces\n\nA global interface used for importing surfaces exported by xdg_exporter.\nWith this interface, a client can create a reference to a surface of\nanother client."] -pub mod zxdg_importer_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "import a toplevel surface\n\nThe import_toplevel request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export_toplevel.\nWhen called, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - ImportToplevel { handle: String }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "import_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::ImportToplevel { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::ImportToplevel { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_imported_v2::ZxdgImportedV2, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::ImportToplevel { handle } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(handle.into()) - })), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::ImportToplevel { handle } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - let _arg_1 = ::std::ffi::CString::new(handle).unwrap(); - _args_array[1].s = _arg_1.as_ptr(); - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImporterV2(Proxy); - impl AsRef> for ZxdgImporterV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImporterV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImporterV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImporterV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImporterV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImporterV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_importer_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_importer_v2_interface } - } - } - impl ZxdgImporterV2 { - #[doc = "destroy the xdg_importer object\n\nNotify the compositor that the xdg_importer object will no longer be\nused.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "import a toplevel surface\n\nThe import_toplevel request imports a surface from any client given a handle\nretrieved by exporting said surface using xdg_exporter.export_toplevel.\nWhen called, a new xdg_imported object will be created. This new object\nrepresents the imported surface, and the importing client can\nmanipulate its relationship using it. See xdg_imported for details."] - pub fn import_toplevel( - &self, - handle: String, - ) -> Main { - let msg = Request::ImportToplevel { handle: handle }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_IMPORT_TOPLEVEL_SINCE: u32 = 1u32; - static mut zxdg_importer_v2_requests_import_toplevel_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_imported_v2::zxdg_imported_v2_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_importer_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"import_toplevel\0" as *const u8 as *const c_char, - signature: b"ns\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_importer_v2_requests_import_toplevel_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_importer_v2_interface: wl_interface = wl_interface { - name: b"zxdg_importer_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_importer_v2_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "an exported surface handle\n\nAn xdg_exported object represents an exported reference to a surface. The\nexported surface may be referenced as long as the xdg_exported object not\ndestroyed. Destroying the xdg_exported invalidates any relationship the\nimporter may have established using xdg_imported."] -pub mod zxdg_exported_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the exported surface handle\n\nThe handle event contains the unique handle of this exported surface\nreference. It may be shared with any client, which then can use it to\nimport the surface by calling xdg_importer.import_toplevel. A handle\nmay be used to import the surface multiple times."] - Handle { handle: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "handle", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Handle { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Handle { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Handle { - handle: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Handle { - handle: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgExportedV2(Proxy); - impl AsRef> for ZxdgExportedV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgExportedV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgExportedV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgExportedV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgExportedV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgExportedV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_exported_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_exported_v2_interface } - } - } - impl ZxdgExportedV2 { - #[doc = "unexport the exported surface\n\nRevoke the previously exported surface. This invalidates any\nrelationship the importer may have set up using the xdg_imported created\ngiven the handle sent via xdg_exported.handle.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_HANDLE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v2_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_exported_v2_events: [wl_message; 1] = [wl_message { - name: b"handle\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_exported_v2_interface: wl_interface = wl_interface { - name: b"zxdg_exported_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zxdg_exported_v2_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_exported_v2_events as *const _ }, - }; -} -#[doc = "an imported surface handle\n\nAn xdg_imported object represents an imported reference to surface exported\nby some client. A client can use this interface to manipulate\nrelationships between its own surfaces and the imported surface."] -pub mod zxdg_imported_v2 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "error values\n\nThese errors can be emitted in response to invalid xdg_imported\nrequests."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "surface is not an xdg_toplevel"] - InvalidSurface = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidSurface), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be an xdg_toplevel equivalent, otherwise an\ninvalid_surface protocol error is sent. Calling this function sets up\na surface to surface relation with the same stacking and positioning\nsemantics as xdg_toplevel.set_parent."] - SetParentOf { - surface: super::wl_surface::WlSurface, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent_of", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParentOf { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParentOf { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParentOf { surface } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(surface.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParentOf { surface } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = surface.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "the imported surface handle has been destroyed\n\nThe imported surface handle has been destroyed and any relationship set\nup has been invalidated. This may happen for various reasons, for\nexample if the exported surface or the exported surface handle has been\ndestroyed, if the handle used for importing was invalid."] - Destroyed, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroyed", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Destroyed => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Destroyed => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::Destroyed), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::Destroyed), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgImportedV2(Proxy); - impl AsRef> for ZxdgImportedV2 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgImportedV2 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgImportedV2(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgImportedV2) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgImportedV2 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgImportedV2 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_imported_v2"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_imported_v2_interface } - } - } - impl ZxdgImportedV2 { - #[doc = "destroy the xdg_imported object\n\nNotify the compositor that it will no longer use the xdg_imported\nobject. Any relationship that may have been set up will at this point\nbe invalidated.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set as the parent of some surface\n\nSet the imported surface as the parent of some surface of the client.\nThe passed surface must be an xdg_toplevel equivalent, otherwise an\ninvalid_surface protocol error is sent. Calling this function sets up\na surface to surface relation with the same stacking and positioning\nsemantics as xdg_toplevel.set_parent."] - pub fn set_parent_of(&self, surface: &super::wl_surface::WlSurface) -> () { - let msg = Request::SetParentOf { - surface: surface.clone(), - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_OF_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESTROYED_SINCE: u32 = 1u32; - static mut zxdg_imported_v2_requests_set_parent_of_types: [*const wl_interface; 1] = - [unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v2_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_of\0" as *const u8 as *const c_char, - signature: b"o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_imported_v2_requests_set_parent_of_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_imported_v2_events: [wl_message; 1] = [wl_message { - name: b"destroyed\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_imported_v2_interface: wl_interface = wl_interface { - name: b"zxdg_imported_v2\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_imported_v2_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_imported_v2_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs deleted file mode 100644 index 00c609c..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs +++ /dev/null @@ -1,623 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 2] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "manage xdg_output objects\n\nA global factory interface for xdg_output objects."] -pub mod zxdg_output_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_output_manager object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output_manager object anymore.\n\nAny objects already created through this instance are not affected.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create an xdg output from a wl_output\n\nThis creates a new xdg_output object for the given wl_output."] - GetXdgOutput { output: super::wl_output::WlOutput }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_xdg_output", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetXdgOutput { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetXdgOutput { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetXdgOutput { output } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0), Argument::Object(output.as_ref().id()),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetXdgOutput { output } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = output.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgOutputManagerV1(Proxy); - impl AsRef> for ZxdgOutputManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgOutputManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgOutputManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgOutputManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgOutputManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgOutputManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_output_manager_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_output_manager_v1_interface } - } - } - impl ZxdgOutputManagerV1 { - #[doc = "destroy the xdg_output_manager object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output_manager object anymore.\n\nAny objects already created through this instance are not affected.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create an xdg output from a wl_output\n\nThis creates a new xdg_output object for the given wl_output."] - pub fn get_xdg_output( - &self, - output: &super::wl_output::WlOutput, - ) -> Main { - let msg = Request::GetXdgOutput { - output: output.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_OUTPUT_SINCE: u32 = 1u32; - static mut zxdg_output_manager_v1_requests_get_xdg_output_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_output_v1::zxdg_output_v1_interface as *const wl_interface }, - unsafe { &super::wl_output::wl_output_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_output_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_xdg_output\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_output_manager_v1_requests_get_xdg_output_types as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_output_manager_v1_interface: wl_interface = wl_interface { - name: b"zxdg_output_manager_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 2, - requests: unsafe { &zxdg_output_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "compositor logical output region\n\nAn xdg_output describes part of the compositor geometry.\n\nThis typically corresponds to a monitor that displays part of the\ncompositor space.\n\nFor objects version 3 onwards, after all xdg_output properties have been\nsent (when the object is created and when properties are updated), a\nwl_output.done event is sent. This allows changes to the output\nproperties to be seen as atomic, even if they happen via multiple events."] -pub mod zxdg_output_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_output object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output object anymore.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "position of the output within the global compositor space\n\nThe position event describes the location of the wl_output within\nthe global compositor space.\n\nThe logical_position event is sent after creating an xdg_output\n(see xdg_output_manager.get_xdg_output) and whenever the location\nof the output changes within the global compositor space."] - LogicalPosition { x: i32, y: i32 }, - #[doc = "size of the output in the global compositor space\n\nThe logical_size event describes the size of the output in the\nglobal compositor space.\n\nFor example, a surface without any buffer scale, transformation\nnor rotation set, with the size matching the logical_size will\nhave the same size as the corresponding output when displayed.\n\nMost regular Wayland clients should not pay attention to the\nlogical size and would rather rely on xdg_shell interfaces.\n\nSome clients such as Xwayland, however, need this to configure\ntheir surfaces in the global compositor space as the compositor\nmay apply a different scale from what is advertised by the output\nscaling property (to achieve fractional scaling, for example).\n\nFor example, for a wl_output mode 3840×2160 and a scale factor 2:\n\n- A compositor not scaling the surface buffers will advertise a\nlogical size of 3840×2160,\n\n- A compositor automatically scaling the surface buffers will\nadvertise a logical size of 1920×1080,\n\n- A compositor using a fractional scale of 1.5 will advertise a\nlogical size to 2560×1620.\n\nFor example, for a wl_output mode 1920×1080 and a 90 degree rotation,\nthe compositor will advertise a logical size of 1080x1920.\n\nThe logical_size event is sent after creating an xdg_output\n(see xdg_output_manager.get_xdg_output) and whenever the logical\nsize of the output changes, either as a result of a change in the\napplied scale or because of a change in the corresponding output\nmode(see wl_output.mode) or transform (see wl_output.transform)."] - LogicalSize { width: i32, height: i32 }, - #[doc = "all information about the output have been sent\n\nThis event is sent after all other properties of an xdg_output\nhave been sent.\n\nThis allows changes to the xdg_output properties to be seen as\natomic, even if they happen via multiple events.\n\nFor objects version 3 onwards, this event is deprecated. Compositors\nare not required to send it anymore and must send wl_output.done\ninstead."] - Done, - #[doc = "name of this output\n\nMany compositors will assign names to their outputs, show them to the\nuser, allow them to be configured by name, etc. The client may wish to\nknow this name as well to offer the user similar behaviors.\n\nThe naming convention is compositor defined, but limited to\nalphanumeric characters and dashes (-). Each name is unique among all\nwl_output globals, but if a wl_output global is destroyed the same name\nmay be reused later. The names will also remain consistent across\nsessions with the same hardware and software configuration.\n\nExamples of names include 'HDMI-A-1', 'WL-1', 'X11-1', etc. However, do\nnot assume that the name is a reflection of an underlying DRM\nconnector, X11 connection, etc.\n\nThe name event is sent after creating an xdg_output (see\nxdg_output_manager.get_xdg_output). This event is only sent once per\nxdg_output, and the name does not change over the lifetime of the\nwl_output global.\n\nOnly available since version 2 of the interface"] - Name { name: String }, - #[doc = "human-readable description of this output\n\nMany compositors can produce human-readable descriptions of their\noutputs. The client may wish to know this description as well, to\ncommunicate the user for various purposes.\n\nThe description is a UTF-8 string with no convention defined for its\ncontents. Examples might include 'Foocorp 11\" Display' or 'Virtual X11\noutput via :1'.\n\nThe description event is sent after creating an xdg_output (see\nxdg_output_manager.get_xdg_output) and whenever the description\nchanges. The description is optional, and may not be sent at all.\n\nFor objects of version 2 and lower, this event is only sent once per\nxdg_output, and the description does not change over the lifetime of\nthe wl_output global.\n\nOnly available since version 2 of the interface"] - Description { description: String }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "logical_position", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "logical_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "name", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "description", - since: 2, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::LogicalPosition { .. } => 0, - Event::LogicalSize { .. } => 1, - Event::Done => 2, - Event::Name { .. } => 3, - Event::Description { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Event::LogicalPosition { .. } => 1, - Event::LogicalSize { .. } => 1, - Event::Done => 1, - Event::Name { .. } => 2, - Event::Description { .. } => 2, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::LogicalPosition { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => { - let mut args = msg.args.into_iter(); - Ok(Event::LogicalSize { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 2 => Ok(Event::Done), - 3 => { - let mut args = msg.args.into_iter(); - Ok(Event::Name { - name: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - 4 => { - let mut args = msg.args.into_iter(); - Ok(Event::Description { - description: { - if let Some(Argument::Str(val)) = args.next() { - let s = String::from_utf8(val.into_bytes()).unwrap_or_else(|e| { - String::from_utf8_lossy(&e.into_bytes()).into() - }); - s - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::LogicalPosition { - x: _args[0].i, - y: _args[1].i, - }) - } - 1 => { - let _args = ::std::slice::from_raw_parts(args, 2); - Ok(Event::LogicalSize { - width: _args[0].i, - height: _args[1].i, - }) - } - 2 => Ok(Event::Done), - 3 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Name { - name: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - 4 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Description { - description: ::std::ffi::CStr::from_ptr(_args[0].s) - .to_string_lossy() - .into_owned(), - }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgOutputV1(Proxy); - impl AsRef> for ZxdgOutputV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgOutputV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgOutputV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgOutputV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgOutputV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgOutputV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_output_v1"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_output_v1_interface } - } - } - impl ZxdgOutputV1 { - #[doc = "destroy the xdg_output object\n\nUsing this request a client can tell the server that it is not\ngoing to use the xdg_output object anymore.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LOGICAL_POSITION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_LOGICAL_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_NAME_SINCE: u32 = 2u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_DESCRIPTION_SINCE: u32 = 2u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_output_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_output_v1_events: [wl_message; 5] = [ - wl_message { - name: b"logical_position\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"logical_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"name\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"description\0" as *const u8 as *const c_char, - signature: b"2s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_output_v1_interface: wl_interface = wl_interface { - name: b"zxdg_output_v1\0" as *const u8 as *const c_char, - version: 3, - request_count: 1, - requests: unsafe { &zxdg_output_v1_requests as *const _ }, - event_count: 5, - events: unsafe { &zxdg_output_v1_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs deleted file mode 100644 index 5cccd07..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs +++ /dev/null @@ -1,1607 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create desktop-style surfaces\n\nxdg_shell allows clients to turn a wl_surface into a \"real window\"\nwhich can be dragged, resized, stacked, and moved around by the\nuser. Everything about this interface is suited towards traditional\ndesktop environments."] -pub mod xdg_shell { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "latest protocol version\n\nThe 'current' member of this enum gives the version of the\nprotocol. Implementations can compare this to the version\nthey implement using static_assert to ensure the protocol and\nimplementation versions match."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Version { - #[doc = "Always the latest version"] - Current = 5, - } - impl Version { - pub fn from_raw(n: u32) -> Option { - match n { - 5 => Some(Version::Current), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - #[doc = "xdg_shell was destroyed before children"] - DefunctSurfaces = 1, - #[doc = "the client tried to map or destroy a non-topmost popup"] - NotTheTopmostPopup = 2, - #[doc = "the client specified an invalid popup parent surface"] - InvalidPopupParent = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::DefunctSurfaces), - 2 => Some(Error::NotTheTopmostPopup), - 3 => Some(Error::InvalidPopupParent), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "enable use of this unstable version\n\nNegotiate the unstable version of the interface. This\nmechanism is in place to ensure client and server agree on the\nunstable versions of the protocol that they speak or exit\ncleanly if they don't agree. This request will go away once\nthe xdg-shell protocol is stable."] - UseUnstableVersion { version: i32 }, - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface and gives it the\nxdg_surface role. A wl_surface can only be given an xdg_surface role\nonce. If get_xdg_surface is called with a wl_surface that already has\nan active xdg_surface associated with it, or if it had any other role,\nan error is raised.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - GetXdgSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "create a popup for a surface\n\nThis creates an xdg_popup for the given surface and gives it the\nxdg_popup role. A wl_surface can only be given an xdg_popup role\nonce. If get_xdg_popup is called with a wl_surface that already has\nan active xdg_popup associated with it, or if it had any other role,\nan error is raised.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetXdgPopup { - surface: super::wl_surface::WlSurface, - parent: super::wl_surface::WlSurface, - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - Pong { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "use_unstable_version", - since: 1, - signature: &[super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_popup", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::UseUnstableVersion { .. } => 1, - Request::GetXdgSurface { .. } => 2, - Request::GetXdgPopup { .. } => 3, - Request::Pong { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::UseUnstableVersion { .. } => 1, - Request::GetXdgSurface { .. } => 1, - Request::GetXdgPopup { .. } => 1, - Request::Pong { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - 3 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::UseUnstableVersion { version } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(version),], - }, - Request::GetXdgSurface { surface } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::GetXdgPopup { - surface, - parent, - seat, - serial, - x, - y, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(parent.as_ref().id()), - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::UseUnstableVersion { version } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = version; - f(1, &mut _args_array) - } - Request::GetXdgSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::GetXdgPopup { - surface, - parent, - seat, - serial, - x, - y, - } => { - let mut _args_array: [wl_argument; 7] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = parent.as_ref().c_ptr() as *mut _; - _args_array[3].o = seat.as_ref().c_ptr() as *mut _; - _args_array[4].u = serial; - _args_array[5].i = x; - _args_array[6].i = y; - f(3, &mut _args_array) - } - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "check if the client is alive\n\nThe ping event asks the client if it's still alive. Pass the\nserial specified in the event back to the compositor by sending\na \"pong\" request back with the specified serial.\n\nCompositors can use this to determine if the client is still\nalive. It's unspecified what will happen if the client doesn't\nrespond to the ping request, or in what timeframe. Clients should\ntry to respond in a reasonable amount of time.\n\nA compositor is free to ping in any way it wants, but a client must\nalways respond to any xdg_shell object it created."] - Ping { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgShell(Proxy); - impl AsRef> for XdgShell { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgShell { - #[inline] - fn from(value: Proxy) -> Self { - XdgShell(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgShell) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgShell { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgShell { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_shell"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_shell_interface } - } - } - impl XdgShell { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "enable use of this unstable version\n\nNegotiate the unstable version of the interface. This\nmechanism is in place to ensure client and server agree on the\nunstable versions of the protocol that they speak or exit\ncleanly if they don't agree. This request will go away once\nthe xdg-shell protocol is stable."] - pub fn use_unstable_version(&self, version: i32) -> () { - let msg = Request::UseUnstableVersion { version: version }; - self.0.send::(msg, None); - } - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface and gives it the\nxdg_surface role. A wl_surface can only be given an xdg_surface role\nonce. If get_xdg_surface is called with a wl_surface that already has\nan active xdg_surface associated with it, or if it had any other role,\nan error is raised.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - pub fn get_xdg_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetXdgSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "create a popup for a surface\n\nThis creates an xdg_popup for the given surface and gives it the\nxdg_popup role. A wl_surface can only be given an xdg_popup role\nonce. If get_xdg_popup is called with a wl_surface that already has\nan active xdg_popup associated with it, or if it had any other role,\nan error is raised.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_xdg_popup( - &self, - surface: &super::wl_surface::WlSurface, - parent: &super::wl_surface::WlSurface, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> Main { - let msg = Request::GetXdgPopup { - surface: surface.clone(), - parent: parent.clone(), - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send(msg, None).unwrap() - } - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_USE_UNSTABLE_VERSION_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - static mut xdg_shell_requests_get_xdg_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - static mut xdg_shell_requests_get_xdg_popup_types: [*const wl_interface; 7] = [ - unsafe { &super::xdg_popup::xdg_popup_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_shell_requests: [wl_message; 5] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"use_unstable_version\0" as *const u8 as *const c_char, - signature: b"i\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_xdg_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &xdg_shell_requests_get_xdg_surface_types as *const _ }, - }, - wl_message { - name: b"get_xdg_popup\0" as *const u8 as *const c_char, - signature: b"nooouii\0" as *const u8 as *const c_char, - types: unsafe { &xdg_shell_requests_get_xdg_popup_types as *const _ }, - }, - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_shell_events: [wl_message; 1] = [wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_shell_interface: wl_interface = wl_interface { - name: b"xdg_shell\0" as *const u8 as *const c_char, - version: 1, - request_count: 5, - requests: unsafe { &xdg_shell_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_shell_events as *const _ }, - }; -} -#[doc = "A desktop window\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides requests to treat surfaces like windows, allowing to set\nproperties like maximized, fullscreen, minimized, and to move and resize\nthem, and associate metadata like title and app id.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_surface state to take effect. Prior to committing the new\nstate, it can set up initial configuration, such as maximizing or setting\na window geometry.\n\nEven without attaching a buffer the compositor must respond to initial\ncommitted configuration, for instance sending a configure event with\nexpected window geometry if the client maximized its surface during\ninitialization.\n\nFor a surface to be mapped by the compositor the client must have\ncommitted both an xdg_surface state and a buffer."] -pub mod xdg_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ResizeEdge { - None = 0, - Top = 1, - Bottom = 2, - Left = 4, - TopLeft = 5, - BottomLeft = 6, - Right = 8, - TopRight = 9, - BottomRight = 10, - } - impl ResizeEdge { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ResizeEdge::None), - 1 => Some(ResizeEdge::Top), - 2 => Some(ResizeEdge::Bottom), - 4 => Some(ResizeEdge::Left), - 5 => Some(ResizeEdge::TopLeft), - 6 => Some(ResizeEdge::BottomLeft), - 8 => Some(ResizeEdge::Right), - 9 => Some(ResizeEdge::TopRight), - 10 => Some(ResizeEdge::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "types of state on the surface\n\nThe different state values used on the surface. This is designed for\nstate values like maximized, fullscreen. It is paired with the\nconfigure event to ensure that both the client and the compositor\nsetting the state can be synchronized.\n\nStates set in this way are double-buffered. They will get applied on\nthe next commit.\n\nDesktop environments may extend this enum by taking up a range of\nvalues and documenting the range they chose in this description.\nThey are not required to document the values for the range that they\nchose. Ideally, any good extensions from a desktop environment should\nmake its way into standardization into this enum.\n\nThe current reserved ranges are:\n\n0x0000 - 0x0FFF: xdg-shell core values, documented below.\n0x1000 - 0x1FFF: GNOME\n0x2000 - 0x2FFF: EFL"] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the surface is maximized\n\nThe surface is maximized. The window geometry specified in the configure\nevent must be obeyed by the client."] - Maximized = 1, - #[doc = "the surface is fullscreen\n\nThe surface is fullscreen. The window geometry specified in the configure\nevent must be obeyed by the client."] - Fullscreen = 2, - #[doc = "the surface is being resized\n\nThe surface is being resized. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it.\nClients that have aspect ratio or cell sizing configuration can use\na smaller size, however."] - Resizing = 3, - #[doc = "the surface is now activated\n\nClient window decorations should be painted as if the window is\nactive. Do not assume this means that the window actually has\nkeyboard or pointer focus."] - Activated = 4, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(State::Maximized), - 2 => Some(State::Fullscreen), - 3 => Some(State::Resizing), - 4 => Some(State::Activated), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "Destroy the xdg_surface\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - SetParent { - parent: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - SetAppId { app_id: String }, - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - ShowWindowMenu { - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: u32, - }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, the compositor might use this information to move\na surface to the top left only when the client has drawn itself\nfor the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nThe compositor expects that the most recently received\nack_configure request at the time of a commit indicates which\nconfigure event the client is responding to."] - AckConfigure { serial: u32 }, - #[doc = "set the new window geometry\n\nThe window geometry of a window is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set once, it is not\npossible to unset it, and it will remain the same until\nset_window_geometry is called again, even if a new subsurface or\nbuffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset mode is meant for extremely simple clients.\n\nIf responding to a configure event, the window geometry in here\nmust respect the sizing negotiations specified by the states in\nthe configure event.\n\nThe arguments are given in the surface local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero."] - SetWindowGeometry { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - SetMaximized, - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - UnsetMaximized, - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - SetFullscreen { - output: Option, - }, - #[doc = ""] - UnsetFullscreen, - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - SetMinimized, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "show_window_menu", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_window_geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 2, - Request::SetAppId { .. } => 3, - Request::ShowWindowMenu { .. } => 4, - Request::Move { .. } => 5, - Request::Resize { .. } => 6, - Request::AckConfigure { .. } => 7, - Request::SetWindowGeometry { .. } => 8, - Request::SetMaximized => 9, - Request::UnsetMaximized => 10, - Request::SetFullscreen { .. } => 11, - Request::UnsetFullscreen => 12, - Request::SetMinimized => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetAppId { .. } => 1, - Request::ShowWindowMenu { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::AckConfigure { .. } => 1, - Request::SetWindowGeometry { .. } => 1, - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetFullscreen { .. } => 1, - Request::UnsetFullscreen => 1, - Request::SetMinimized => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParent { parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - parent.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetAppId { app_id } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(app_id.into()) - })),], - }, - Request::ShowWindowMenu { seat, serial, x, y } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges), - ], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Uint(serial),], - }, - Request::SetWindowGeometry { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParent { parent } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(2, &mut _args_array) - } - Request::SetAppId { app_id } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(app_id).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(3, &mut _args_array) - } - Request::ShowWindowMenu { seat, serial, x, y } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].i = x; - _args_array[3].i = y; - f(4, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(5, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges; - f(6, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(7, &mut _args_array) - } - Request::SetWindowGeometry { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(8, &mut _args_array) - } - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(10, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(11, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(12, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event asks the client to resize its surface or to\nchange its state.\n\nThe width and height arguments specify a hint to the window\nabout how its surface should be resized in window geometry\ncoordinates. See set_window_geometry.\n\nIf the width or height arguments are zero, it means the client\nshould decide its own window dimension. This may happen when the\ncompositor need to configure the state of the surface but doesn't\nhave any information about any previous or expected dimension.\n\nThe states listed in the event specify how the width/height\narguments should be interpreted, and possibly how it should be\ndrawn.\n\nClients should arrange their surface for the new size and\nstates, and then send a ack_configure request with the serial\nsent in this configure event at some point before committing\nthe new surface.\n\nIf the client receives multiple configure events before it\ncan respond to one, it is free to discard all but the last\nevent it received."] - Configure { - width: i32, - height: i32, - states: Vec, - serial: u32, - }, - #[doc = "surface wants to be closed\n\nThe close event is sent by the compositor when the user\nwants the surface to be closed. This should be equivalent to\nthe user clicking the close button in client-side decorations,\nif your application has any...\n\nThis is only a request that the user intends to close your\nwindow. The client may choose to ignore this request, or show\na dialog to ask the user to save their data..."] - Close, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Array, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Close => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Close => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - states: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Close), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Configure { - width: _args[0].i, - height: _args[1].i, - states: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - serial: _args[3].u, - }) - } - 1 => Ok(Event::Close), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgSurface(Proxy); - impl AsRef> for XdgSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgSurface { - #[inline] - fn from(value: Proxy) -> Self { - XdgSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_surface"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_surface_interface } - } - } - impl XdgSurface { - #[doc = "Destroy the xdg_surface\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - pub fn set_parent(&self, parent: Option<&super::xdg_surface::XdgSurface>) -> () { - let msg = Request::SetParent { - parent: parent.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - pub fn set_app_id(&self, app_id: String) -> () { - let msg = Request::SetAppId { app_id: app_id }; - self.0.send::(msg, None); - } - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - pub fn show_window_menu( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> () { - let msg = Request::ShowWindowMenu { - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: u32) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, the compositor might use this information to move\na surface to the top left only when the client has drawn itself\nfor the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nThe compositor expects that the most recently received\nack_configure request at the time of a commit indicates which\nconfigure event the client is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - #[doc = "set the new window geometry\n\nThe window geometry of a window is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set once, it is not\npossible to unset it, and it will remain the same until\nset_window_geometry is called again, even if a new subsurface or\nbuffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset mode is meant for extremely simple clients.\n\nIf responding to a configure event, the window geometry in here\nmust respect the sizing negotiations specified by the states in\nthe configure event.\n\nThe arguments are given in the surface local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero."] - pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetWindowGeometry { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_WINDOW_MENU_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_WINDOW_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSE_SINCE: u32 = 1u32; - static mut xdg_surface_requests_set_parent_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }]; - static mut xdg_surface_requests_show_window_menu_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_surface_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut xdg_surface_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_surface_requests_set_fullscreen_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_set_parent_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"show_window_menu\0" as *const u8 as *const c_char, - signature: b"ouii\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_show_window_menu_types as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_resize_types as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_window_geometry\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iiau\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_surface_interface: wl_interface = wl_interface { - name: b"xdg_surface\0" as *const u8 as *const c_char, - version: 1, - request_count: 14, - requests: unsafe { &xdg_surface_requests as *const _ }, - event_count: 2, - events: unsafe { &xdg_surface_events as *const _ }, - }; -} -#[doc = "short-lived, popup surfaces for menus\n\nA popup surface is a short-lived, temporary surface that can be\nused to implement menus. It takes an explicit grab on the surface\nthat will be dismissed when the user dismisses the popup. This can\nbe done by the user clicking outside the surface, using the keyboard,\nor even locking the screen through closing the lid or a timeout.\n\nWhen the popup is dismissed, a popup_done event will be sent out,\nand at the same time the surface will be unmapped. The xdg_popup\nobject is now inert and cannot be reactivated, so clients should\ndestroy it. Explicitly destroying the xdg_popup object will also\ndismiss the popup and unmap the surface.\n\nClients will receive events for all their surfaces during this\ngrab (which is an \"owner-events\" grab in X11 parlance). This is\ndone so that users can navigate through submenus and other\n\"nested\" popup windows without having to dismiss the topmost\npopup.\n\nClients that want to dismiss the popup when another surface of\ntheir own is clicked should dismiss the popup using the destroy\nrequest.\n\nThe parent surface must have either an xdg_surface or xdg_popup\nrole.\n\nSpecifying an xdg_popup for the parent means that the popups are\nnested, with this popup now being the topmost popup. Nested\npopups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times\nis the topmost one.\n\nIf there is an existing popup when creating a new popup, the\nparent must be the current topmost popup.\n\nA parent surface must be mapped before the new popup is mapped.\n\nWhen compositors choose to dismiss a popup, they will likely\ndismiss every nested popup as well. When a compositor dismisses\npopups, it will follow the same dismissing order as required\nfrom the client.\n\nThe x and y arguments passed when creating the popup object specify\nwhere the top left of the popup should be placed, relative to the\nlocal surface coordinates of the parent surface. See\nxdg_shell.get_xdg_popup.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_popup state to take effect.\n\nFor a surface to be mapped by the compositor the client must have\ncommitted both the xdg_popup state and a buffer."] -pub mod xdg_popup { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup is dismissed by the\ncompositor. The client should destroy the xdg_popup object at this\npoint."] - PopupDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::PopupDone => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::PopupDone => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => Ok(Event::PopupDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => Ok(Event::PopupDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgPopup(Proxy); - impl AsRef> for XdgPopup { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgPopup { - #[inline] - fn from(value: Proxy) -> Self { - XdgPopup(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgPopup) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgPopup { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgPopup { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_popup"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_popup_interface } - } - } - impl XdgPopup { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_events: [wl_message; 1] = [wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_popup_interface: wl_interface = wl_interface { - name: b"xdg_popup\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &xdg_popup_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_popup_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs deleted file mode 100644 index fe23d3f..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs +++ /dev/null @@ -1,2516 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create desktop-style surfaces\n\nxdg_shell allows clients to turn a wl_surface into a \"real window\"\nwhich can be dragged, resized, stacked, and moved around by the\nuser. Everything about this interface is suited towards traditional\ndesktop environments."] -pub mod zxdg_shell_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - #[doc = "xdg_shell was destroyed before children"] - DefunctSurfaces = 1, - #[doc = "the client tried to map or destroy a non-topmost popup"] - NotTheTopmostPopup = 2, - #[doc = "the client specified an invalid popup parent surface"] - InvalidPopupParent = 3, - #[doc = "the client provided an invalid surface state"] - InvalidSurfaceState = 4, - #[doc = "the client provided an invalid positioner"] - InvalidPositioner = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::DefunctSurfaces), - 2 => Some(Error::NotTheTopmostPopup), - 3 => Some(Error::InvalidPopupParent), - 4 => Some(Error::InvalidSurfaceState), - 5 => Some(Error::InvalidPositioner), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - CreatePositioner {}, - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - GetXdgSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_shell.ping."] - Pong { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_positioner", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 2, - Request::Pong { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 1, - Request::Pong { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_positioner_v6::ZxdgPositionerV6, - >(version, meta.child())), - 2 => Some(Object::from_interface::< - super::zxdg_surface_v6::ZxdgSurfaceV6, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreatePositioner {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetXdgSurface { surface } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreatePositioner {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetXdgSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "check if the client is alive\n\nThe ping event asks the client if it's still alive. Pass the\nserial specified in the event back to the compositor by sending\na \"pong\" request back with the specified serial. See xdg_shell.ping.\n\nCompositors can use this to determine if the client is still\nalive. It's unspecified what will happen if the client doesn't\nrespond to the ping request, or in what timeframe. Clients should\ntry to respond in a reasonable amount of time.\n\nA compositor is free to ping in any way it wants, but a client must\nalways respond to any xdg_shell object it created."] - Ping { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgShellV6(Proxy); - impl AsRef> for ZxdgShellV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgShellV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgShellV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgShellV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgShellV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgShellV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_shell_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_shell_v6_interface } - } - } - impl ZxdgShellV6 { - #[doc = "destroy xdg_shell\n\nDestroy this xdg_shell object.\n\nDestroying a bound xdg_shell object while there are surfaces\nstill alive created by this xdg_shell object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - pub fn create_positioner(&self) -> Main { - let msg = Request::CreatePositioner {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - pub fn get_xdg_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetXdgSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_shell.ping."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_POSITIONER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - static mut zxdg_shell_v6_requests_create_positioner_types: [*const wl_interface; 1] = - [unsafe { - &super::zxdg_positioner_v6::zxdg_positioner_v6_interface as *const wl_interface - }]; - static mut zxdg_shell_v6_requests_get_xdg_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::zxdg_surface_v6::zxdg_surface_v6_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_shell_v6_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_positioner\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_shell_v6_requests_create_positioner_types as *const _ }, - }, - wl_message { - name: b"get_xdg_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_shell_v6_requests_get_xdg_surface_types as *const _ }, - }, - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_shell_v6_events: [wl_message; 1] = [wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_shell_v6_interface: wl_interface = wl_interface { - name: b"zxdg_shell_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 4, - requests: unsafe { &zxdg_shell_v6_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_shell_v6_events as *const _ }, - }; -} -#[doc = "child surface positioner\n\nThe xdg_positioner provides a collection of rules for the placement of a\nchild surface relative to a parent surface. Rules can be defined to ensure\nthe child surface remains within the visible area's borders, and to\nspecify how the child surface changes its position, such as sliding along\nan axis, or flipping around a rectangle. These positioner-created rules are\nconstrained by the requirement that a child surface must intersect with or\nbe at least partially adjacent to its parent surface.\n\nSee the various requests for details about possible rules.\n\nAt the time of the request, the compositor makes a copy of the rules\nspecified by the xdg_positioner. Thus, after the request is complete the\nxdg_positioner object can be destroyed or reused; further changes to the\nobject will have no effect on previous usages.\n\nFor an xdg_positioner object to be considered complete, it must have a\nnon-zero size set by set_size, and a non-zero anchor rectangle set by\nset_anchor_rect. Passing an incomplete xdg_positioner object when\npositioning a surface raises an error."] -pub mod zxdg_positioner_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid input provided"] - InvalidInput = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidInput), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { pub struct Anchor : u32 { # [doc = "the center of the anchor rectangle"] const None = 0 ; # [doc = "the top edge of the anchor rectangle"] const Top = 1 ; # [doc = "the bottom edge of the anchor rectangle"] const Bottom = 2 ; # [doc = "the left edge of the anchor rectangle"] const Left = 4 ; # [doc = "the right edge of the anchor rectangle"] const Right = 8 ; } } - impl Anchor { - pub fn from_raw(n: u32) -> Option { - Some(Anchor::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - bitflags! { pub struct Gravity : u32 { # [doc = "center over the anchor edge"] const None = 0 ; # [doc = "position above the anchor edge"] const Top = 1 ; # [doc = "position below the anchor edge"] const Bottom = 2 ; # [doc = "position to the left of the anchor edge"] const Left = 4 ; # [doc = "position to the right of the anchor edge"] const Right = 8 ; } } - impl Gravity { - pub fn from_raw(n: u32) -> Option { - Some(Gravity::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - bitflags! { # [doc = "constraint adjustments\n\nThe constraint adjustment value define ways the compositor will adjust\nthe position of the surface, if the unadjusted position would result\nin the surface being partly constrained.\n\nWhether a surface is considered 'constrained' is left to the compositor\nto determine. For example, the surface may be partly outside the\ncompositor's defined 'work area', thus necessitating the child surface's\nposition be adjusted until it is entirely inside the work area.\n\nThe adjustments can be combined, according to a defined precedence: 1)\nFlip, 2) Slide, 3) Resize."] pub struct ConstraintAdjustment : u32 { # [doc = "don't move the child surface when constrained\n\nDon't alter the surface position even if it is constrained on some\naxis, for example partially outside the edge of a monitor."] const None = 0 ; # [doc = "move along the x axis until unconstrained\n\nSlide the surface along the x axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the x axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\nx axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideX = 1 ; # [doc = "move along the y axis until unconstrained\n\nSlide the surface along the y axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the y axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\ny axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideY = 2 ; # [doc = "invert the anchor and gravity on the x axis\n\nInvert the anchor and gravity on the x axis if the surface is\nconstrained on the x axis. For example, if the left edge of the\nsurface is constrained, the gravity is 'left' and the anchor is\n'left', change the gravity to 'right' and the anchor to 'right'.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_x adjustment will be the one before the\nadjustment."] const FlipX = 4 ; # [doc = "invert the anchor and gravity on the y axis\n\nInvert the anchor and gravity on the y axis if the surface is\nconstrained on the y axis. For example, if the bottom edge of the\nsurface is constrained, the gravity is 'bottom' and the anchor is\n'bottom', change the gravity to 'top' and the anchor to 'top'.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_y adjustment will be the one before the\nadjustment."] const FlipY = 8 ; # [doc = "horizontally resize the surface\n\nResize the surface horizontally so that it is completely\nunconstrained."] const ResizeX = 16 ; # [doc = "vertically resize the surface\n\nResize the surface vertically so that it is completely unconstrained."] const ResizeY = 32 ; } } - impl ConstraintAdjustment { - pub fn from_raw(n: u32) -> Option { - Some(ConstraintAdjustment::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - SetSize { width: i32, height: i32 }, - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface. The rectangle must be at least 1x1 large.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a zero or negative size is set the invalid_input error is raised."] - SetAnchorRect { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "set anchor rectangle anchor edges\n\nDefines a set of edges for the anchor rectangle. These are used to\nderive an anchor point that the child surface will be positioned\nrelative to. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left position of the rectangle); otherwise, the derived\nanchor point will be centered on the specified edge, or in the center of\nthe anchor rectangle if no edge is specified.\n\nIf two parallel anchor edges are specified (e.g. 'left' and 'right'),\nthe invalid_input error is raised."] - SetAnchor { anchor: Anchor }, - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If two orthogonal gravities are\nspecified (e.g. 'bottom' and 'right'), then the child surface will be\nplaced in the specified direction; otherwise, the child surface will be\ncentered over the anchor point on any axis that had no gravity\nspecified.\n\nIf two parallel gravities are specified (e.g. 'left' and 'right'), the\ninvalid_input error is raised."] - SetGravity { gravity: Gravity }, - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - SetConstraintAdjustment { constraint_adjustment: u32 }, - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - SetOffset { x: i32, y: i32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor_rect", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_gravity", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_constraint_adjustment", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_offset", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 2, - Request::SetAnchor { .. } => 3, - Request::SetGravity { .. } => 4, - Request::SetConstraintAdjustment { .. } => 5, - Request::SetOffset { .. } => 6, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 1, - Request::SetAnchor { .. } => 1, - Request::SetGravity { .. } => 1, - Request::SetConstraintAdjustment { .. } => 1, - Request::SetOffset { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetSize { width, height } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetAnchorRect { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetAnchor { anchor } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(anchor.to_raw()),], - }, - Request::SetGravity { gravity } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(gravity.to_raw()),], - }, - Request::SetConstraintAdjustment { - constraint_adjustment, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Uint(constraint_adjustment),], - }, - Request::SetOffset { x, y } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(1, &mut _args_array) - } - Request::SetAnchorRect { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - Request::SetAnchor { anchor } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = anchor.to_raw(); - f(3, &mut _args_array) - } - Request::SetGravity { gravity } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = gravity.to_raw(); - f(4, &mut _args_array) - } - Request::SetConstraintAdjustment { - constraint_adjustment, - } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = constraint_adjustment; - f(5, &mut _args_array) - } - Request::SetOffset { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(6, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgPositionerV6(Proxy); - impl AsRef> for ZxdgPositionerV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgPositionerV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgPositionerV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgPositionerV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgPositionerV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgPositionerV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_positioner_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_positioner_v6_interface } - } - } - impl ZxdgPositionerV6 { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - pub fn set_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface. The rectangle must be at least 1x1 large.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a zero or negative size is set the invalid_input error is raised."] - pub fn set_anchor_rect(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetAnchorRect { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set anchor rectangle anchor edges\n\nDefines a set of edges for the anchor rectangle. These are used to\nderive an anchor point that the child surface will be positioned\nrelative to. If two orthogonal edges are specified (e.g. 'top' and\n'left'), then the anchor point will be the intersection of the edges\n(e.g. the top left position of the rectangle); otherwise, the derived\nanchor point will be centered on the specified edge, or in the center of\nthe anchor rectangle if no edge is specified.\n\nIf two parallel anchor edges are specified (e.g. 'left' and 'right'),\nthe invalid_input error is raised."] - pub fn set_anchor(&self, anchor: Anchor) -> () { - let msg = Request::SetAnchor { anchor: anchor }; - self.0.send::(msg, None); - } - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If two orthogonal gravities are\nspecified (e.g. 'bottom' and 'right'), then the child surface will be\nplaced in the specified direction; otherwise, the child surface will be\ncentered over the anchor point on any axis that had no gravity\nspecified.\n\nIf two parallel gravities are specified (e.g. 'left' and 'right'), the\ninvalid_input error is raised."] - pub fn set_gravity(&self, gravity: Gravity) -> () { - let msg = Request::SetGravity { gravity: gravity }; - self.0.send::(msg, None); - } - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - pub fn set_constraint_adjustment(&self, constraint_adjustment: u32) -> () { - let msg = Request::SetConstraintAdjustment { - constraint_adjustment: constraint_adjustment, - }; - self.0.send::(msg, None); - } - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - pub fn set_offset(&self, x: i32, y: i32) -> () { - let msg = Request::SetOffset { x: x, y: y }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_RECT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_GRAVITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONSTRAINT_ADJUSTMENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OFFSET_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_positioner_v6_requests: [wl_message; 7] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor_rect\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_gravity\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_constraint_adjustment\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_offset\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_positioner_v6_interface: wl_interface = wl_interface { - name: b"zxdg_positioner_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 7, - requests: unsafe { &zxdg_positioner_v6_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "desktop user interface surface base interface\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides a base set of functionality required to construct user\ninterface elements requiring management by the compositor, such as\ntoplevel windows, menus, etc. The types of functionality are split into\nxdg_surface roles.\n\nCreating an xdg_surface does not set the role for a wl_surface. In order\nto map an xdg_surface, the client must create a role-specific object\nusing, e.g., get_toplevel, get_popup. The wl_surface for any given\nxdg_surface can have at most one role, and may not be assigned any role\nnot based on xdg_surface.\n\nA role must be assigned before any other requests are made to the\nxdg_surface object.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_surface state to take effect.\n\nCreating an xdg_surface from a wl_surface which has a buffer attached or\ncommitted is a client error, and any attempts by a client to attach or\nmanipulate a buffer prior to the first xdg_surface.configure call must\nalso be treated as errors.\n\nFor a surface to be mapped by the compositor, the following conditions\nmust be met: (1) the client has assigned an xdg_surface based role to the\nsurface, (2) the client has set and committed the xdg_surface state and\nthe role dependent state to the surface and (3) the client has committed a\nbuffer to the surface."] -pub mod zxdg_surface_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - NotConstructed = 1, - AlreadyConstructed = 2, - UnconfiguredBuffer = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::NotConstructed), - 2 => Some(Error::AlreadyConstructed), - 3 => Some(Error::UnconfiguredBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - GetToplevel {}, - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives the\nassociated wl_surface the xdg_popup role.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetPopup { - parent: super::zxdg_surface_v6::ZxdgSurfaceV6, - positioner: super::zxdg_positioner_v6::ZxdgPositionerV6, - }, - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - SetWindowGeometry { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - AckConfigure { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_popup", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_window_geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 2, - Request::SetWindowGeometry { .. } => 3, - Request::AckConfigure { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 1, - Request::SetWindowGeometry { .. } => 1, - Request::AckConfigure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zxdg_toplevel_v6::ZxdgToplevelV6, - >(version, meta.child())), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetToplevel {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetPopup { parent, positioner } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::NewId(0), - Argument::Object(parent.as_ref().id()), - Argument::Object(positioner.as_ref().id()), - ], - }, - Request::SetWindowGeometry { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetToplevel {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetPopup { parent, positioner } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = parent.as_ref().c_ptr() as *mut _; - _args_array[2].o = positioner.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::SetWindowGeometry { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(3, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event marks the end of a configure sequence. A configure\nsequence is a set of one or more events configuring the state of the\nxdg_surface, including the final xdg_surface.configure event.\n\nWhere applicable, xdg_surface surface roles will during a configure\nsequence extend this event as a latched state sent as events before the\nxdg_surface.configure event. Such events should be considered to make up\na set of atomically applied configuration states, where the\nxdg_surface.configure commits the accumulated state.\n\nClients should arrange their surface for the new states, and then send\nan ack_configure request with the serial sent in this configure event at\nsome point before committing the new surface.\n\nIf the client receives multiple configure events before it can respond\nto one, it is free to discard all but the last event it received."] - Configure { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Configure { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgSurfaceV6(Proxy); - impl AsRef> for ZxdgSurfaceV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgSurfaceV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgSurfaceV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgSurfaceV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgSurfaceV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgSurfaceV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_surface_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_surface_v6_interface } - } - } - impl ZxdgSurfaceV6 { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - pub fn get_toplevel(&self) -> Main { - let msg = Request::GetToplevel {}; - self.0.send(msg, None).unwrap() - } - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives the\nassociated wl_surface the xdg_popup role.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_popup( - &self, - parent: &super::zxdg_surface_v6::ZxdgSurfaceV6, - positioner: &super::zxdg_positioner_v6::ZxdgPositionerV6, - ) -> Main { - let msg = Request::GetPopup { - parent: parent.clone(), - positioner: positioner.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetWindowGeometry { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_WINDOW_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - static mut zxdg_surface_v6_requests_get_toplevel_types: [*const wl_interface; 1] = - [unsafe { &super::zxdg_toplevel_v6::zxdg_toplevel_v6_interface as *const wl_interface }]; - static mut zxdg_surface_v6_requests_get_popup_types: [*const wl_interface; 3] = [ - unsafe { &super::zxdg_popup_v6::zxdg_popup_v6_interface as *const wl_interface }, - unsafe { &super::zxdg_surface_v6::zxdg_surface_v6_interface as *const wl_interface }, - unsafe { &super::zxdg_positioner_v6::zxdg_positioner_v6_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_surface_v6_requests: [wl_message; 5] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_toplevel\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_surface_v6_requests_get_toplevel_types as *const _ }, - }, - wl_message { - name: b"get_popup\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_surface_v6_requests_get_popup_types as *const _ }, - }, - wl_message { - name: b"set_window_geometry\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_surface_v6_events: [wl_message; 1] = [wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_surface_v6_interface: wl_interface = wl_interface { - name: b"zxdg_surface_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 5, - requests: unsafe { &zxdg_surface_v6_requests as *const _ }, - event_count: 1, - events: unsafe { &zxdg_surface_v6_events as *const _ }, - }; -} -#[doc = "toplevel surface\n\nThis interface defines an xdg_surface role which allows a surface to,\namong other things, set window-like properties such as maximize,\nfullscreen, and minimize, set application-specific metadata like title and\nid, and well as trigger user interactive operations such as interactive\nresize and move."] -pub mod zxdg_toplevel_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ResizeEdge { - None = 0, - Top = 1, - Bottom = 2, - Left = 4, - TopLeft = 5, - BottomLeft = 6, - Right = 8, - TopRight = 9, - BottomRight = 10, - } - impl ResizeEdge { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ResizeEdge::None), - 1 => Some(ResizeEdge::Top), - 2 => Some(ResizeEdge::Bottom), - 4 => Some(ResizeEdge::Left), - 5 => Some(ResizeEdge::TopLeft), - 6 => Some(ResizeEdge::BottomLeft), - 8 => Some(ResizeEdge::Right), - 9 => Some(ResizeEdge::TopRight), - 10 => Some(ResizeEdge::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "types of state on the surface\n\nThe different state values used on the surface. This is designed for\nstate values like maximized, fullscreen. It is paired with the\nconfigure event to ensure that both the client and the compositor\nsetting the state can be synchronized.\n\nStates set in this way are double-buffered. They will get applied on\nthe next commit."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the surface is maximized\n\nThe surface is maximized. The window geometry specified in the configure\nevent must be obeyed by the client."] - Maximized = 1, - #[doc = "the surface is fullscreen\n\nThe surface is fullscreen. The window geometry specified in the configure\nevent must be obeyed by the client."] - Fullscreen = 2, - #[doc = "the surface is being resized\n\nThe surface is being resized. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it.\nClients that have aspect ratio or cell sizing configuration can use\na smaller size, however."] - Resizing = 3, - #[doc = "the surface is now activated\n\nClient window decorations should be painted as if the window is\nactive. Do not assume this means that the window actually has\nkeyboard or pointer focus."] - Activated = 4, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(State::Maximized), - 2 => Some(State::Fullscreen), - 3 => Some(State::Resizing), - 4 => Some(State::Activated), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_toplevel\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - SetParent { - parent: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - SetAppId { app_id: String }, - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - ShowWindowMenu { - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: u32, - }, - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMaxSize { width: i32, height: i32 }, - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMinSize { width: i32, height: i32 }, - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - SetMaximized, - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - UnsetMaximized, - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - SetFullscreen { - output: Option, - }, - #[doc = ""] - UnsetFullscreen, - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - SetMinimized, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "show_window_menu", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_max_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_min_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 2, - Request::SetAppId { .. } => 3, - Request::ShowWindowMenu { .. } => 4, - Request::Move { .. } => 5, - Request::Resize { .. } => 6, - Request::SetMaxSize { .. } => 7, - Request::SetMinSize { .. } => 8, - Request::SetMaximized => 9, - Request::UnsetMaximized => 10, - Request::SetFullscreen { .. } => 11, - Request::UnsetFullscreen => 12, - Request::SetMinimized => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetAppId { .. } => 1, - Request::ShowWindowMenu { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::SetMaxSize { .. } => 1, - Request::SetMinSize { .. } => 1, - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetFullscreen { .. } => 1, - Request::UnsetFullscreen => 1, - Request::SetMinimized => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParent { parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - parent.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetAppId { app_id } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(app_id.into()) - })),], - }, - Request::ShowWindowMenu { seat, serial, x, y } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges), - ], - }, - Request::SetMaxSize { width, height } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMinSize { width, height } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParent { parent } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(2, &mut _args_array) - } - Request::SetAppId { app_id } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(app_id).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(3, &mut _args_array) - } - Request::ShowWindowMenu { seat, serial, x, y } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].i = x; - _args_array[3].i = y; - f(4, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(5, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges; - f(6, &mut _args_array) - } - Request::SetMaxSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(7, &mut _args_array) - } - Request::SetMinSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(8, &mut _args_array) - } - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(10, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(11, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(12, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThis configure event asks the client to resize its toplevel surface or\nto change its state. The configured state should not be applied\nimmediately. See xdg_surface.configure for details.\n\nThe width and height arguments specify a hint to the window\nabout how its surface should be resized in window geometry\ncoordinates. See set_window_geometry.\n\nIf the width or height arguments are zero, it means the client\nshould decide its own window dimension. This may happen when the\ncompositor needs to configure the state of the surface but doesn't\nhave any information about any previous or expected dimension.\n\nThe states listed in the event specify how the width/height\narguments should be interpreted, and possibly how it should be\ndrawn.\n\nClients must send an ack_configure in response to this event. See\nxdg_surface.configure and xdg_surface.ack_configure for details."] - Configure { - width: i32, - height: i32, - states: Vec, - }, - #[doc = "surface wants to be closed\n\nThe close event is sent by the compositor when the user\nwants the surface to be closed. This should be equivalent to\nthe user clicking the close button in client-side decorations,\nif your application has any.\n\nThis is only a request that the user intends to close the\nwindow. The client may choose to ignore this request, or show\na dialog to ask the user to save their data, etc."] - Close, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Array, - ], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Close => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Close => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - states: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Close), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - width: _args[0].i, - height: _args[1].i, - states: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 1 => Ok(Event::Close), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgToplevelV6(Proxy); - impl AsRef> for ZxdgToplevelV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgToplevelV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgToplevelV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgToplevelV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgToplevelV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgToplevelV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_toplevel_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_toplevel_v6_interface } - } - } - impl ZxdgToplevelV6 { - #[doc = "destroy the xdg_toplevel\n\nUnmap and destroy the window. The window will be effectively\nhidden from the user's point of view, and all state like\nmaximization, fullscreen, and so on, will be lost.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This window should be stacked\nabove a parent. The parent surface must be mapped as long as this\nsurface is mapped.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised."] - pub fn set_parent(&self, parent: Option<&super::zxdg_toplevel_v6::ZxdgToplevelV6>) -> () { - let msg = Request::SetParent { - parent: parent.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - pub fn set_app_id(&self, app_id: String) -> () { - let msg = Request::SetAppId { app_id: app_id }; - self.0.send::(msg, None); - } - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - pub fn show_window_menu( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> () { - let msg = Request::ShowWindowMenu { - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: u32) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_max_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMaxSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_min_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMinSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event with the \"maximized\" state\nand the required window geometry. The client should then update its\ncontent, drawing it in a maximized state, i.e. without shadow or other\ndecoration outside of the window geometry. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event without the \"maximized\"\nstate. If available, the compositor will include the window geometry\ndimensions the window had prior to being maximized in the configure\nrequest. The client must then update its content, drawing it in a\nregular state, i.e. potentially with shadow, etc. The client must also\nacknowledge the configure when committing the new content (see\nack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "set the window as fullscreen on a monitor\n\nMake the surface fullscreen.\n\nYou can specify an output that you would prefer to be fullscreen.\nIf this value is NULL, it's up to the compositor to choose which\ndisplay will be used to map this surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nblack borders filling the rest of the output."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = ""] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_WINDOW_MENU_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAX_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MIN_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSE_SINCE: u32 = 1u32; - static mut zxdg_toplevel_v6_requests_set_parent_types: [*const wl_interface; 1] = - [unsafe { &super::zxdg_toplevel_v6::zxdg_toplevel_v6_interface as *const wl_interface }]; - static mut zxdg_toplevel_v6_requests_show_window_menu_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut zxdg_toplevel_v6_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut zxdg_toplevel_v6_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut zxdg_toplevel_v6_requests_set_fullscreen_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_v6_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_set_parent_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"show_window_menu\0" as *const u8 as *const c_char, - signature: b"ouii\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_show_window_menu_types as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_resize_types as *const _ }, - }, - wl_message { - name: b"set_max_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_min_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_toplevel_v6_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_toplevel_v6_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iia\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_toplevel_v6_interface: wl_interface = wl_interface { - name: b"zxdg_toplevel_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 14, - requests: unsafe { &zxdg_toplevel_v6_requests as *const _ }, - event_count: 2, - events: unsafe { &zxdg_toplevel_v6_events as *const _ }, - }; -} -#[doc = "short-lived, popup surfaces for menus\n\nA popup surface is a short-lived, temporary surface. It can be used to\nimplement for example menus, popovers, tooltips and other similar user\ninterface concepts.\n\nA popup can be made to take an explicit grab. See xdg_popup.grab for\ndetails.\n\nWhen the popup is dismissed, a popup_done event will be sent out, and at\nthe same time the surface will be unmapped. See the xdg_popup.popup_done\nevent for details.\n\nExplicitly destroying the xdg_popup object will also dismiss the popup and\nunmap the surface. Clients that want to dismiss the popup when another\nsurface of their own is clicked should dismiss the popup using the destroy\nrequest.\n\nThe parent surface must have either the xdg_toplevel or xdg_popup surface\nrole.\n\nA newly created xdg_popup will be stacked on top of all previously created\nxdg_popup surfaces associated with the same xdg_toplevel.\n\nThe parent of an xdg_popup must be mapped (see the xdg_surface\ndescription) before the xdg_popup itself.\n\nThe x and y arguments passed when creating the popup object specify\nwhere the top left of the popup should be placed, relative to the\nlocal surface coordinates of the parent surface. See\nxdg_surface.get_popup. An xdg_popup must intersect with or be at least\npartially adjacent to its parent surface.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_popup state to take effect."] -pub mod zxdg_popup_v6 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "tried to grab after being mapped"] - InvalidGrab = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidGrab), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - Grab { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "grab", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Grab { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Grab { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Grab { seat, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Grab { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "configure the popup surface\n\nThis event asks the popup surface to configure itself given the\nconfiguration. The configured state should not be applied immediately.\nSee xdg_surface.configure for details.\n\nThe x and y arguments represent the position the popup was placed at\ngiven the xdg_positioner rule, relative to the upper left corner of the\nwindow geometry of the parent surface."] - Configure { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup is dismissed by the\ncompositor. The client should destroy the xdg_popup object at this\npoint."] - PopupDone, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::PopupDone => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::PopupDone => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::PopupDone), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Configure { - x: _args[0].i, - y: _args[1].i, - width: _args[2].i, - height: _args[3].i, - }) - } - 1 => Ok(Event::PopupDone), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZxdgPopupV6(Proxy); - impl AsRef> for ZxdgPopupV6 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZxdgPopupV6 { - #[inline] - fn from(value: Proxy) -> Self { - ZxdgPopupV6(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZxdgPopupV6) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZxdgPopupV6 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZxdgPopupV6 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zxdg_popup_v6"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zxdg_popup_v6_interface } - } - } - impl ZxdgPopupV6 { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - pub fn grab(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Grab { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - static mut zxdg_popup_v6_requests_grab_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_popup_v6_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &zxdg_popup_v6_requests_grab_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zxdg_popup_v6_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zxdg_popup_v6_interface: wl_interface = wl_interface { - name: b"zxdg_popup_v6\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zxdg_popup_v6_requests as *const _ }, - event_count: 2, - events: unsafe { &zxdg_popup_v6_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs deleted file mode 100644 index 368dc0a..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs +++ /dev/null @@ -1,2772 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 4] = [ - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, - NULLPTR as *const sys::common::wl_interface, -]; -#[doc = "create desktop-style surfaces\n\nThe xdg_wm_base interface is exposed as a global object enabling clients\nto turn their wl_surfaces into windows in a desktop environment. It\ndefines the basic functionality needed for clients and the compositor to\ncreate windows that can be dragged, resized, maximized, etc, as well as\ncreating transient windows such as popup menus."] -pub mod xdg_wm_base { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "given wl_surface has another role"] - Role = 0, - #[doc = "xdg_wm_base was destroyed before children"] - DefunctSurfaces = 1, - #[doc = "the client tried to map or destroy a non-topmost popup"] - NotTheTopmostPopup = 2, - #[doc = "the client specified an invalid popup parent surface"] - InvalidPopupParent = 3, - #[doc = "the client provided an invalid surface state"] - InvalidSurfaceState = 4, - #[doc = "the client provided an invalid positioner"] - InvalidPositioner = 5, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::Role), - 1 => Some(Error::DefunctSurfaces), - 2 => Some(Error::NotTheTopmostPopup), - 3 => Some(Error::InvalidPopupParent), - 4 => Some(Error::InvalidSurfaceState), - 5 => Some(Error::InvalidPositioner), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy xdg_wm_base\n\nDestroy this xdg_wm_base object.\n\nDestroying a bound xdg_wm_base object while there are surfaces\nstill alive created by this xdg_wm_base object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - CreatePositioner {}, - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - GetXdgSurface { - surface: super::wl_surface::WlSurface, - }, - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_wm_base.ping."] - Pong { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "create_positioner", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_xdg_surface", - since: 1, - signature: &[super::ArgumentType::NewId, super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "pong", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 2, - Request::Pong { .. } => 3, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::CreatePositioner { .. } => 1, - Request::GetXdgSurface { .. } => 1, - Request::Pong { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some( - Object::from_interface::( - version, - meta.child(), - ), - ), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::CreatePositioner {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetXdgSurface { surface } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::NewId(0), Argument::Object(surface.as_ref().id()),], - }, - Request::Pong { serial } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::CreatePositioner {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetXdgSurface { surface } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::Pong { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(3, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "check if the client is alive\n\nThe ping event asks the client if it's still alive. Pass the\nserial specified in the event back to the compositor by sending\na \"pong\" request back with the specified serial. See xdg_wm_base.pong.\n\nCompositors can use this to determine if the client is still\nalive. It's unspecified what will happen if the client doesn't\nrespond to the ping request, or in what timeframe. Clients should\ntry to respond in a reasonable amount of time.\n\nA compositor is free to ping in any way it wants, but a client must\nalways respond to any xdg_wm_base object it created."] - Ping { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "ping", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Ping { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Ping { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Ping { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Ping { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgWmBase(Proxy); - impl AsRef> for XdgWmBase { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgWmBase { - #[inline] - fn from(value: Proxy) -> Self { - XdgWmBase(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgWmBase) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgWmBase { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgWmBase { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_wm_base"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_wm_base_interface } - } - } - impl XdgWmBase { - #[doc = "destroy xdg_wm_base\n\nDestroy this xdg_wm_base object.\n\nDestroying a bound xdg_wm_base object while there are surfaces\nstill alive created by this xdg_wm_base object instance is illegal\nand will result in a protocol error.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "create a positioner object\n\nCreate a positioner object. A positioner object is used to position\nsurfaces relative to some parent surface. See the interface description\nand xdg_surface.get_popup for details."] - pub fn create_positioner(&self) -> Main { - let msg = Request::CreatePositioner {}; - self.0.send(msg, None).unwrap() - } - #[doc = "create a shell surface from a surface\n\nThis creates an xdg_surface for the given surface. While xdg_surface\nitself is not a role, the corresponding surface may only be assigned\na role extending xdg_surface, such as xdg_toplevel or xdg_popup.\n\nThis creates an xdg_surface for the given surface. An xdg_surface is\nused as basis to define a role to a given surface, such as xdg_toplevel\nor xdg_popup. It also manages functionality shared between xdg_surface\nbased surface roles.\n\nSee the documentation of xdg_surface for more details about what an\nxdg_surface is and how it is used."] - pub fn get_xdg_surface( - &self, - surface: &super::wl_surface::WlSurface, - ) -> Main { - let msg = Request::GetXdgSurface { - surface: surface.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "respond to a ping event\n\nA client must respond to a ping event with a pong request or\nthe client may be deemed unresponsive. See xdg_wm_base.ping."] - pub fn pong(&self, serial: u32) -> () { - let msg = Request::Pong { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_CREATE_POSITIONER_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_XDG_SURFACE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_PONG_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_PING_SINCE: u32 = 1u32; - static mut xdg_wm_base_requests_create_positioner_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_positioner::xdg_positioner_interface as *const wl_interface }]; - static mut xdg_wm_base_requests_get_xdg_surface_types: [*const wl_interface; 2] = [ - unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_wm_base_requests: [wl_message; 4] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"create_positioner\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &xdg_wm_base_requests_create_positioner_types as *const _ }, - }, - wl_message { - name: b"get_xdg_surface\0" as *const u8 as *const c_char, - signature: b"no\0" as *const u8 as *const c_char, - types: unsafe { &xdg_wm_base_requests_get_xdg_surface_types as *const _ }, - }, - wl_message { - name: b"pong\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_wm_base_events: [wl_message; 1] = [wl_message { - name: b"ping\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_wm_base_interface: wl_interface = wl_interface { - name: b"xdg_wm_base\0" as *const u8 as *const c_char, - version: 3, - request_count: 4, - requests: unsafe { &xdg_wm_base_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_wm_base_events as *const _ }, - }; -} -#[doc = "child surface positioner\n\nThe xdg_positioner provides a collection of rules for the placement of a\nchild surface relative to a parent surface. Rules can be defined to ensure\nthe child surface remains within the visible area's borders, and to\nspecify how the child surface changes its position, such as sliding along\nan axis, or flipping around a rectangle. These positioner-created rules are\nconstrained by the requirement that a child surface must intersect with or\nbe at least partially adjacent to its parent surface.\n\nSee the various requests for details about possible rules.\n\nAt the time of the request, the compositor makes a copy of the rules\nspecified by the xdg_positioner. Thus, after the request is complete the\nxdg_positioner object can be destroyed or reused; further changes to the\nobject will have no effect on previous usages.\n\nFor an xdg_positioner object to be considered complete, it must have a\nnon-zero size set by set_size, and a non-zero anchor rectangle set by\nset_anchor_rect. Passing an incomplete xdg_positioner object when\npositioning a surface raises an error."] -pub mod xdg_positioner { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "invalid input provided"] - InvalidInput = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidInput), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Anchor { - None = 0, - Top = 1, - Bottom = 2, - Left = 3, - Right = 4, - TopLeft = 5, - BottomLeft = 6, - TopRight = 7, - BottomRight = 8, - } - impl Anchor { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Anchor::None), - 1 => Some(Anchor::Top), - 2 => Some(Anchor::Bottom), - 3 => Some(Anchor::Left), - 4 => Some(Anchor::Right), - 5 => Some(Anchor::TopLeft), - 6 => Some(Anchor::BottomLeft), - 7 => Some(Anchor::TopRight), - 8 => Some(Anchor::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Gravity { - None = 0, - Top = 1, - Bottom = 2, - Left = 3, - Right = 4, - TopLeft = 5, - BottomLeft = 6, - TopRight = 7, - BottomRight = 8, - } - impl Gravity { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Gravity::None), - 1 => Some(Gravity::Top), - 2 => Some(Gravity::Bottom), - 3 => Some(Gravity::Left), - 4 => Some(Gravity::Right), - 5 => Some(Gravity::TopLeft), - 6 => Some(Gravity::BottomLeft), - 7 => Some(Gravity::TopRight), - 8 => Some(Gravity::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - bitflags! { # [doc = "constraint adjustments\n\nThe constraint adjustment value define ways the compositor will adjust\nthe position of the surface, if the unadjusted position would result\nin the surface being partly constrained.\n\nWhether a surface is considered 'constrained' is left to the compositor\nto determine. For example, the surface may be partly outside the\ncompositor's defined 'work area', thus necessitating the child surface's\nposition be adjusted until it is entirely inside the work area.\n\nThe adjustments can be combined, according to a defined precedence: 1)\nFlip, 2) Slide, 3) Resize."] pub struct ConstraintAdjustment : u32 { # [doc = "don't move the child surface when constrained\n\nDon't alter the surface position even if it is constrained on some\naxis, for example partially outside the edge of an output."] const None = 0 ; # [doc = "move along the x axis until unconstrained\n\nSlide the surface along the x axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the x axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\nx axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideX = 1 ; # [doc = "move along the y axis until unconstrained\n\nSlide the surface along the y axis until it is no longer constrained.\n\nFirst try to slide towards the direction of the gravity on the y axis\nuntil either the edge in the opposite direction of the gravity is\nunconstrained or the edge in the direction of the gravity is\nconstrained.\n\nThen try to slide towards the opposite direction of the gravity on the\ny axis until either the edge in the direction of the gravity is\nunconstrained or the edge in the opposite direction of the gravity is\nconstrained."] const SlideY = 2 ; # [doc = "invert the anchor and gravity on the x axis\n\nInvert the anchor and gravity on the x axis if the surface is\nconstrained on the x axis. For example, if the left edge of the\nsurface is constrained, the gravity is 'left' and the anchor is\n'left', change the gravity to 'right' and the anchor to 'right'.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_x adjustment will be the one before the\nadjustment."] const FlipX = 4 ; # [doc = "invert the anchor and gravity on the y axis\n\nInvert the anchor and gravity on the y axis if the surface is\nconstrained on the y axis. For example, if the bottom edge of the\nsurface is constrained, the gravity is 'bottom' and the anchor is\n'bottom', change the gravity to 'top' and the anchor to 'top'.\n\nThe adjusted position is calculated given the original anchor\nrectangle and offset, but with the new flipped anchor and gravity\nvalues.\n\nIf the adjusted position also ends up being constrained, the resulting\nposition of the flip_y adjustment will be the one before the\nadjustment."] const FlipY = 8 ; # [doc = "horizontally resize the surface\n\nResize the surface horizontally so that it is completely\nunconstrained."] const ResizeX = 16 ; # [doc = "vertically resize the surface\n\nResize the surface vertically so that it is completely unconstrained."] const ResizeY = 32 ; } } - impl ConstraintAdjustment { - pub fn from_raw(n: u32) -> Option { - Some(ConstraintAdjustment::from_bits_truncate(n)) - } - pub fn to_raw(&self) -> u32 { - self.bits() - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - SetSize { width: i32, height: i32 }, - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a negative size is set the invalid_input error is raised."] - SetAnchorRect { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "set anchor rectangle anchor\n\nDefines the anchor point for the anchor rectangle. The specified anchor\nis used derive an anchor point that the child surface will be\npositioned relative to. If a corner anchor is set (e.g. 'top_left' or\n'bottom_right'), the anchor point will be at the specified corner;\notherwise, the derived anchor point will be centered on the specified\nedge, or in the center of the anchor rectangle if no edge is specified."] - SetAnchor { anchor: Anchor }, - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If a corner gravity is\nspecified (e.g. 'bottom_right' or 'top_left'), then the child surface\nwill be placed towards the specified gravity; otherwise, the child\nsurface will be centered over the anchor point on any axis that had no\ngravity specified."] - SetGravity { gravity: Gravity }, - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - SetConstraintAdjustment { constraint_adjustment: u32 }, - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - SetOffset { x: i32, y: i32 }, - #[doc = "continuously reconstrain the surface\n\nWhen set reactive, the surface is reconstrained if the conditions used\nfor constraining changed, e.g. the parent window moved.\n\nIf the conditions changed and the popup was reconstrained, an\nxdg_popup.configure event is sent with updated geometry, followed by an\nxdg_surface.configure event.\n\nOnly available since version 3 of the interface"] - SetReactive, - #[doc = "Set the parent window geometry the compositor should use when\npositioning the popup. The compositor may use this information to\ndetermine the future state the popup should be constrained using. If\nthis doesn't match the dimension of the parent the popup is eventually\npositioned against, the behavior is undefined.\n\nThe arguments are given in the surface-local coordinate space.\n\nOnly available since version 3 of the interface"] - SetParentSize { - parent_width: i32, - parent_height: i32, - }, - #[doc = "set parent configure this is a response to\n\nSet the serial of an xdg_surface.configure event this positioner will be\nused in response to. The compositor may use this information together\nwith set_parent_size to determine what future state the popup should be\nconstrained using.\n\nOnly available since version 3 of the interface"] - SetParentConfigure { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor_rect", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_anchor", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_gravity", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_constraint_adjustment", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "set_offset", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_reactive", - since: 3, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_parent_size", - since: 3, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_parent_configure", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 2, - Request::SetAnchor { .. } => 3, - Request::SetGravity { .. } => 4, - Request::SetConstraintAdjustment { .. } => 5, - Request::SetOffset { .. } => 6, - Request::SetReactive => 7, - Request::SetParentSize { .. } => 8, - Request::SetParentConfigure { .. } => 9, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetSize { .. } => 1, - Request::SetAnchorRect { .. } => 1, - Request::SetAnchor { .. } => 1, - Request::SetGravity { .. } => 1, - Request::SetConstraintAdjustment { .. } => 1, - Request::SetOffset { .. } => 1, - Request::SetReactive => 3, - Request::SetParentSize { .. } => 3, - Request::SetParentConfigure { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetSize { width, height } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetAnchorRect { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::SetAnchor { anchor } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Uint(anchor.to_raw()),], - }, - Request::SetGravity { gravity } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(gravity.to_raw()),], - }, - Request::SetConstraintAdjustment { - constraint_adjustment, - } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Uint(constraint_adjustment),], - }, - Request::SetOffset { x, y } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![Argument::Int(x), Argument::Int(y),], - }, - Request::SetReactive => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![], - }, - Request::SetParentSize { - parent_width, - parent_height, - } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(parent_width), Argument::Int(parent_height),], - }, - Request::SetParentConfigure { serial } => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(1, &mut _args_array) - } - Request::SetAnchorRect { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(2, &mut _args_array) - } - Request::SetAnchor { anchor } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = anchor.to_raw(); - f(3, &mut _args_array) - } - Request::SetGravity { gravity } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = gravity.to_raw(); - f(4, &mut _args_array) - } - Request::SetConstraintAdjustment { - constraint_adjustment, - } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = constraint_adjustment; - f(5, &mut _args_array) - } - Request::SetOffset { x, y } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - f(6, &mut _args_array) - } - Request::SetReactive => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(7, &mut _args_array) - } - Request::SetParentSize { - parent_width, - parent_height, - } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = parent_width; - _args_array[1].i = parent_height; - f(8, &mut _args_array) - } - Request::SetParentConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(9, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgPositioner(Proxy); - impl AsRef> for XdgPositioner { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgPositioner { - #[inline] - fn from(value: Proxy) -> Self { - XdgPositioner(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgPositioner) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgPositioner { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgPositioner { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_positioner"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_positioner_interface } - } - } - impl XdgPositioner { - #[doc = "destroy the xdg_positioner object\n\nNotify the compositor that the xdg_positioner will no longer be used.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the size of the to-be positioned rectangle\n\nSet the size of the surface that is to be positioned with the positioner\nobject. The size is in surface-local coordinates and corresponds to the\nwindow geometry. See xdg_surface.set_window_geometry.\n\nIf a zero or negative size is set the invalid_input error is raised."] - pub fn set_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the anchor rectangle within the parent surface\n\nSpecify the anchor rectangle within the parent surface that the child\nsurface will be placed relative to. The rectangle is relative to the\nwindow geometry as defined by xdg_surface.set_window_geometry of the\nparent surface.\n\nWhen the xdg_positioner object is used to position a child surface, the\nanchor rectangle may not extend outside the window geometry of the\npositioned child's parent surface.\n\nIf a negative size is set the invalid_input error is raised."] - pub fn set_anchor_rect(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetAnchorRect { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set anchor rectangle anchor\n\nDefines the anchor point for the anchor rectangle. The specified anchor\nis used derive an anchor point that the child surface will be\npositioned relative to. If a corner anchor is set (e.g. 'top_left' or\n'bottom_right'), the anchor point will be at the specified corner;\notherwise, the derived anchor point will be centered on the specified\nedge, or in the center of the anchor rectangle if no edge is specified."] - pub fn set_anchor(&self, anchor: Anchor) -> () { - let msg = Request::SetAnchor { anchor: anchor }; - self.0.send::(msg, None); - } - #[doc = "set child surface gravity\n\nDefines in what direction a surface should be positioned, relative to\nthe anchor point of the parent surface. If a corner gravity is\nspecified (e.g. 'bottom_right' or 'top_left'), then the child surface\nwill be placed towards the specified gravity; otherwise, the child\nsurface will be centered over the anchor point on any axis that had no\ngravity specified."] - pub fn set_gravity(&self, gravity: Gravity) -> () { - let msg = Request::SetGravity { gravity: gravity }; - self.0.send::(msg, None); - } - #[doc = "set the adjustment to be done when constrained\n\nSpecify how the window should be positioned if the originally intended\nposition caused the surface to be constrained, meaning at least\npartially outside positioning boundaries set by the compositor. The\nadjustment is set by constructing a bitmask describing the adjustment to\nbe made when the surface is constrained on that axis.\n\nIf no bit for one axis is set, the compositor will assume that the child\nsurface should not change its position on that axis when constrained.\n\nIf more than one bit for one axis is set, the order of how adjustments\nare applied is specified in the corresponding adjustment descriptions.\n\nThe default adjustment is none."] - pub fn set_constraint_adjustment(&self, constraint_adjustment: u32) -> () { - let msg = Request::SetConstraintAdjustment { - constraint_adjustment: constraint_adjustment, - }; - self.0.send::(msg, None); - } - #[doc = "set surface position offset\n\nSpecify the surface position offset relative to the position of the\nanchor on the anchor rectangle and the anchor on the surface. For\nexample if the anchor of the anchor rectangle is at (x, y), the surface\nhas the gravity bottom|right, and the offset is (ox, oy), the calculated\nsurface position will be (x + ox, y + oy). The offset position of the\nsurface is the one used for constraint testing. See\nset_constraint_adjustment.\n\nAn example use case is placing a popup menu on top of a user interface\nelement, while aligning the user interface element of the parent surface\nwith some user interface element placed somewhere in the popup surface."] - pub fn set_offset(&self, x: i32, y: i32) -> () { - let msg = Request::SetOffset { x: x, y: y }; - self.0.send::(msg, None); - } - #[doc = "continuously reconstrain the surface\n\nWhen set reactive, the surface is reconstrained if the conditions used\nfor constraining changed, e.g. the parent window moved.\n\nIf the conditions changed and the popup was reconstrained, an\nxdg_popup.configure event is sent with updated geometry, followed by an\nxdg_surface.configure event.\n\nOnly available since version 3 of the interface."] - pub fn set_reactive(&self) -> () { - let msg = Request::SetReactive; - self.0.send::(msg, None); - } - #[doc = "Set the parent window geometry the compositor should use when\npositioning the popup. The compositor may use this information to\ndetermine the future state the popup should be constrained using. If\nthis doesn't match the dimension of the parent the popup is eventually\npositioned against, the behavior is undefined.\n\nThe arguments are given in the surface-local coordinate space.\n\nOnly available since version 3 of the interface."] - pub fn set_parent_size(&self, parent_width: i32, parent_height: i32) -> () { - let msg = Request::SetParentSize { - parent_width: parent_width, - parent_height: parent_height, - }; - self.0.send::(msg, None); - } - #[doc = "set parent configure this is a response to\n\nSet the serial of an xdg_surface.configure event this positioner will be\nused in response to. The compositor may use this information together\nwith set_parent_size to determine what future state the popup should be\nconstrained using.\n\nOnly available since version 3 of the interface."] - pub fn set_parent_configure(&self, serial: u32) -> () { - let msg = Request::SetParentConfigure { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_RECT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_ANCHOR_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_GRAVITY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_CONSTRAINT_ADJUSTMENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_OFFSET_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_REACTIVE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SIZE_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_CONFIGURE_SINCE: u32 = 3u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_positioner_requests: [wl_message; 10] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor_rect\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_anchor\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_gravity\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_constraint_adjustment\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_offset\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_reactive\0" as *const u8 as *const c_char, - signature: b"3\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_size\0" as *const u8 as *const c_char, - signature: b"3ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent_configure\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_positioner_interface: wl_interface = wl_interface { - name: b"xdg_positioner\0" as *const u8 as *const c_char, - version: 3, - request_count: 10, - requests: unsafe { &xdg_positioner_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "desktop user interface surface base interface\n\nAn interface that may be implemented by a wl_surface, for\nimplementations that provide a desktop-style user interface.\n\nIt provides a base set of functionality required to construct user\ninterface elements requiring management by the compositor, such as\ntoplevel windows, menus, etc. The types of functionality are split into\nxdg_surface roles.\n\nCreating an xdg_surface does not set the role for a wl_surface. In order\nto map an xdg_surface, the client must create a role-specific object\nusing, e.g., get_toplevel, get_popup. The wl_surface for any given\nxdg_surface can have at most one role, and may not be assigned any role\nnot based on xdg_surface.\n\nA role must be assigned before any other requests are made to the\nxdg_surface object.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_surface state to take effect.\n\nCreating an xdg_surface from a wl_surface which has a buffer attached or\ncommitted is a client error, and any attempts by a client to attach or\nmanipulate a buffer prior to the first xdg_surface.configure call must\nalso be treated as errors.\n\nAfter creating a role-specific object and setting it up, the client must\nperform an initial commit without any buffer attached. The compositor\nwill reply with an xdg_surface.configure event. The client must\nacknowledge it and is then allowed to attach a buffer to map the surface.\n\nMapping an xdg_surface-based role surface is defined as making it\npossible for the surface to be shown by the compositor. Note that\na mapped surface is not guaranteed to be visible once it is mapped.\n\nFor an xdg_surface to be mapped by the compositor, the following\nconditions must be met:\n(1) the client has assigned an xdg_surface-based role to the surface\n(2) the client has set and committed the xdg_surface state and the\nrole-dependent state to the surface\n(3) the client has committed a buffer to the surface\n\nA newly-unmapped surface is considered to have met condition (1) out\nof the 3 required conditions for mapping a surface if its role surface\nhas not been destroyed."] -pub mod xdg_surface { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - NotConstructed = 1, - AlreadyConstructed = 2, - UnconfiguredBuffer = 3, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(Error::NotConstructed), - 2 => Some(Error::AlreadyConstructed), - 3 => Some(Error::UnconfiguredBuffer), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - GetToplevel {}, - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives\nthe associated wl_surface the xdg_popup role.\n\nIf null is passed as a parent, a parent surface must be specified using\nsome other protocol, before committing the initial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - GetPopup { - parent: Option, - positioner: super::xdg_positioner::XdgPositioner, - }, - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nWhen maintaining a position, the compositor should treat the (x, y)\ncoordinate of the window geometry as the top left corner of the window.\nA client changing the (x, y) window geometry coordinate should in\ngeneral not alter the position of the window.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - SetWindowGeometry { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - AckConfigure { serial: u32 }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "get_toplevel", - since: 1, - signature: &[super::ArgumentType::NewId], - destructor: false, - }, - super::MessageDesc { - name: "get_popup", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_window_geometry", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "ack_configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 2, - Request::SetWindowGeometry { .. } => 3, - Request::AckConfigure { .. } => 4, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GetToplevel { .. } => 1, - Request::GetPopup { .. } => 1, - Request::SetWindowGeometry { .. } => 1, - Request::AckConfigure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::( - version, - meta.child(), - )), - 2 => Some(Object::from_interface::( - version, - meta.child(), - )), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GetToplevel {} => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::NewId(0),], - }, - Request::GetPopup { parent, positioner } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::NewId(0), - Argument::Object(parent.map(|o| o.as_ref().id()).unwrap_or(0)), - Argument::Object(positioner.as_ref().id()), - ], - }, - Request::SetWindowGeometry { - x, - y, - width, - height, - } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![ - Argument::Int(x), - Argument::Int(y), - Argument::Int(width), - Argument::Int(height), - ], - }, - Request::AckConfigure { serial } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![Argument::Uint(serial),], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GetToplevel {} => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - f(1, &mut _args_array) - } - Request::GetPopup { parent, positioner } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - _args_array[2].o = positioner.as_ref().c_ptr() as *mut _; - f(2, &mut _args_array) - } - Request::SetWindowGeometry { - x, - y, - width, - height, - } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = x; - _args_array[1].i = y; - _args_array[2].i = width; - _args_array[3].i = height; - f(3, &mut _args_array) - } - Request::AckConfigure { serial } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].u = serial; - f(4, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThe configure event marks the end of a configure sequence. A configure\nsequence is a set of one or more events configuring the state of the\nxdg_surface, including the final xdg_surface.configure event.\n\nWhere applicable, xdg_surface surface roles will during a configure\nsequence extend this event as a latched state sent as events before the\nxdg_surface.configure event. Such events should be considered to make up\na set of atomically applied configuration states, where the\nxdg_surface.configure commits the accumulated state.\n\nClients should arrange their surface for the new states, and then send\nan ack_configure request with the serial sent in this configure event at\nsome point before committing the new surface.\n\nIf the client receives multiple configure events before it can respond\nto one, it is free to discard all but the last event it received."] - Configure { serial: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "configure", - since: 1, - signature: &[super::ArgumentType::Uint], - destructor: false, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - serial: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Configure { serial: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgSurface(Proxy); - impl AsRef> for XdgSurface { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgSurface { - #[inline] - fn from(value: Proxy) -> Self { - XdgSurface(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgSurface) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgSurface { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgSurface { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_surface"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_surface_interface } - } - } - impl XdgSurface { - #[doc = "destroy the xdg_surface\n\nDestroy the xdg_surface object. An xdg_surface must only be destroyed\nafter its role object has been destroyed.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "assign the xdg_toplevel surface role\n\nThis creates an xdg_toplevel object for the given xdg_surface and gives\nthe associated wl_surface the xdg_toplevel role.\n\nSee the documentation of xdg_toplevel for more details about what an\nxdg_toplevel is and how it is used."] - pub fn get_toplevel(&self) -> Main { - let msg = Request::GetToplevel {}; - self.0.send(msg, None).unwrap() - } - #[doc = "assign the xdg_popup surface role\n\nThis creates an xdg_popup object for the given xdg_surface and gives\nthe associated wl_surface the xdg_popup role.\n\nIf null is passed as a parent, a parent surface must be specified using\nsome other protocol, before committing the initial state.\n\nSee the documentation of xdg_popup for more details about what an\nxdg_popup is and how it is used."] - pub fn get_popup( - &self, - parent: Option<&super::xdg_surface::XdgSurface>, - positioner: &super::xdg_positioner::XdgPositioner, - ) -> Main { - let msg = Request::GetPopup { - parent: parent.map(|o| o.clone()), - positioner: positioner.clone(), - }; - self.0.send(msg, None).unwrap() - } - #[doc = "set the new window geometry\n\nThe window geometry of a surface is its \"visible bounds\" from the\nuser's perspective. Client-side decorations often have invisible\nportions like drop-shadows which should be ignored for the\npurposes of aligning, placing and constraining windows.\n\nThe window geometry is double buffered, and will be applied at the\ntime wl_surface.commit of the corresponding wl_surface is called.\n\nWhen maintaining a position, the compositor should treat the (x, y)\ncoordinate of the window geometry as the top left corner of the window.\nA client changing the (x, y) window geometry coordinate should in\ngeneral not alter the position of the window.\n\nOnce the window geometry of the surface is set, it is not possible to\nunset it, and it will remain the same until set_window_geometry is\ncalled again, even if a new subsurface or buffer is attached.\n\nIf never set, the value is the full bounds of the surface,\nincluding any subsurfaces. This updates dynamically on every\ncommit. This unset is meant for extremely simple clients.\n\nThe arguments are given in the surface-local coordinate space of\nthe wl_surface associated with this xdg_surface.\n\nThe width and height must be greater than zero. Setting an invalid size\nwill raise an error. When applied, the effective window geometry will be\nthe set window geometry clamped to the bounding rectangle of the\ncombined geometry of the surface of the xdg_surface and the associated\nsubsurfaces."] - pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32) -> () { - let msg = Request::SetWindowGeometry { - x: x, - y: y, - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "ack a configure event\n\nWhen a configure event is received, if a client commits the\nsurface in response to the configure event, then the client\nmust make an ack_configure request sometime before the commit\nrequest, passing along the serial of the configure event.\n\nFor instance, for toplevel surfaces the compositor might use this\ninformation to move a surface to the top left only when the client has\ndrawn itself for the maximized or fullscreen state.\n\nIf the client receives multiple configure events before it\ncan respond to one, it only has to ack the last configure event.\n\nA client is not required to commit immediately after sending\nan ack_configure request - it may even ack_configure several times\nbefore its next surface commit.\n\nA client may send multiple ack_configure requests before committing, but\nonly the last request sent before a commit indicates which configure\nevent the client really is responding to."] - pub fn ack_configure(&self, serial: u32) -> () { - let msg = Request::AckConfigure { serial: serial }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_TOPLEVEL_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GET_POPUP_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_WINDOW_GEOMETRY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_ACK_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - static mut xdg_surface_requests_get_toplevel_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_toplevel::xdg_toplevel_interface as *const wl_interface }]; - static mut xdg_surface_requests_get_popup_types: [*const wl_interface; 3] = [ - unsafe { &super::xdg_popup::xdg_popup_interface as *const wl_interface }, - unsafe { &super::xdg_surface::xdg_surface_interface as *const wl_interface }, - unsafe { &super::xdg_positioner::xdg_positioner_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_requests: [wl_message; 5] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"get_toplevel\0" as *const u8 as *const c_char, - signature: b"n\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_get_toplevel_types as *const _ }, - }, - wl_message { - name: b"get_popup\0" as *const u8 as *const c_char, - signature: b"n?oo\0" as *const u8 as *const c_char, - types: unsafe { &xdg_surface_requests_get_popup_types as *const _ }, - }, - wl_message { - name: b"set_window_geometry\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"ack_configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_surface_events: [wl_message; 1] = [wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_surface_interface: wl_interface = wl_interface { - name: b"xdg_surface\0" as *const u8 as *const c_char, - version: 3, - request_count: 5, - requests: unsafe { &xdg_surface_requests as *const _ }, - event_count: 1, - events: unsafe { &xdg_surface_events as *const _ }, - }; -} -#[doc = "toplevel surface\n\nThis interface defines an xdg_surface role which allows a surface to,\namong other things, set window-like properties such as maximize,\nfullscreen, and minimize, set application-specific metadata like title and\nid, and well as trigger user interactive operations such as interactive\nresize and move.\n\nUnmapping an xdg_toplevel means that the surface cannot be shown\nby the compositor until it is explicitly mapped again.\nAll active operations (e.g., move, resize) are canceled and all\nattributes (e.g. title, state, stacking, ...) are discarded for\nan xdg_toplevel surface when it is unmapped. The xdg_toplevel returns to\nthe state it had right after xdg_surface.get_toplevel. The client\ncan re-map the toplevel by perfoming a commit without any buffer\nattached, waiting for a configure event and handling it as usual (see\nxdg_surface description).\n\nAttaching a null buffer to a toplevel unmaps the surface."] -pub mod xdg_toplevel { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[doc = "edge values for resizing\n\nThese values are used to indicate which edge of a surface\nis being dragged in a resize operation."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum ResizeEdge { - None = 0, - Top = 1, - Bottom = 2, - Left = 4, - TopLeft = 5, - BottomLeft = 6, - Right = 8, - TopRight = 9, - BottomRight = 10, - } - impl ResizeEdge { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(ResizeEdge::None), - 1 => Some(ResizeEdge::Top), - 2 => Some(ResizeEdge::Bottom), - 4 => Some(ResizeEdge::Left), - 5 => Some(ResizeEdge::TopLeft), - 6 => Some(ResizeEdge::BottomLeft), - 8 => Some(ResizeEdge::Right), - 9 => Some(ResizeEdge::TopRight), - 10 => Some(ResizeEdge::BottomRight), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[doc = "types of state on the surface\n\nThe different state values used on the surface. This is designed for\nstate values like maximized, fullscreen. It is paired with the\nconfigure event to ensure that both the client and the compositor\nsetting the state can be synchronized.\n\nStates set in this way are double-buffered. They will get applied on\nthe next commit."] - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum State { - #[doc = "the surface is maximized\n\nThe surface is maximized. The window geometry specified in the configure\nevent must be obeyed by the client.\n\nThe client should draw without shadow or other\ndecoration outside of the window geometry."] - Maximized = 1, - #[doc = "the surface is fullscreen\n\nThe surface is fullscreen. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it. For\na surface to cover the whole fullscreened area, the geometry\ndimensions must be obeyed by the client. For more details, see\nxdg_toplevel.set_fullscreen."] - Fullscreen = 2, - #[doc = "the surface is being resized\n\nThe surface is being resized. The window geometry specified in the\nconfigure event is a maximum; the client cannot resize beyond it.\nClients that have aspect ratio or cell sizing configuration can use\na smaller size, however."] - Resizing = 3, - #[doc = "the surface is now activated\n\nClient window decorations should be painted as if the window is\nactive. Do not assume this means that the window actually has\nkeyboard or pointer focus."] - Activated = 4, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the left edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledLeft = 5, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the right edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledRight = 6, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the top edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledTop = 7, - #[doc = "the surface is tiled\n\nThe window is currently in a tiled layout and the bottom edge is\nconsidered to be adjacent to another part of the tiling grid."] - TiledBottom = 8, - } - impl State { - pub fn from_raw(n: u32) -> Option { - match n { - 1 => Some(State::Maximized), - 2 => Some(State::Fullscreen), - 3 => Some(State::Resizing), - 4 => Some(State::Activated), - 5 => Some(State::TiledLeft), - 6 => Some(State::TiledRight), - 7 => Some(State::TiledTop), - 8 => Some(State::TiledBottom), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the xdg_toplevel\n\nThis request destroys the role surface and unmaps the surface;\nsee \"Unmapping\" behavior in interface section for details.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This surface should be stacked\nabove the parent surface and all other ancestor surfaces.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised.\n\nSetting a null parent for a child window removes any parent-child\nrelationship for the child. Setting a null parent for a window which\ncurrently has no parent is a no-op.\n\nIf the parent is unmapped then its children are managed as\nthough the parent of the now-unmapped parent has become the\nparent of this surface. If no parent exists for the now-unmapped\nparent then the children are managed as though they have no\nparent surface."] - SetParent { - parent: Option, - }, - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - SetTitle { title: String }, - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nLike other properties, a set_app_id request can be sent after the\nxdg_toplevel has been mapped to update the property.\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - SetAppId { app_id: String }, - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - ShowWindowMenu { - seat: super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - }, - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - Move { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - Resize { - seat: super::wl_seat::WlSeat, - serial: u32, - edges: ResizeEdge, - }, - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMaxSize { width: i32, height: i32 }, - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - SetMinSize { width: i32, height: i32 }, - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event. Whether this configure\nactually sets the window maximized is subject to compositor policies.\nThe client must then update its content, drawing in the configured\nstate. The client must also acknowledge the configure when committing\nthe new content (see ack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - SetMaximized, - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event. Whether this actually\nun-maximizes the window is subject to compositor policies.\nIf available and applicable, the compositor will include the window\ngeometry dimensions the window had prior to being maximized in the\nconfigure event. The client must then update its content, drawing it in\nthe configured state. The client must also acknowledge the configure\nwhen committing the new content (see ack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - UnsetMaximized, - #[doc = "set the window as fullscreen on an output\n\nMake the surface fullscreen.\n\nAfter requesting that the surface should be fullscreened, the\ncompositor will respond by emitting a configure event. Whether the\nclient is actually put into a fullscreen state is subject to compositor\npolicies. The client must also acknowledge the configure when\ncommitting the new content (see ack_configure).\n\nThe output passed by the request indicates the client's preference as\nto which display it should be set fullscreen on. If this value is NULL,\nit's up to the compositor to choose which display will be used to map\nthis surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nwith border fill covering the rest of the output. The content of the\nborder fill is undefined, but should be assumed to be in some way that\nattempts to blend into the surrounding area (e.g. solid black).\n\nIf the fullscreened surface is not opaque, the compositor must make\nsure that other screen content not part of the same surface tree (made\nup of subsurfaces, popups or similarly coupled surfaces) are not\nvisible below the fullscreened surface."] - SetFullscreen { - output: Option, - }, - #[doc = "unset the window as fullscreen\n\nMake the surface no longer fullscreen.\n\nAfter requesting that the surface should be unfullscreened, the\ncompositor will respond by emitting a configure event.\nWhether this actually removes the fullscreen state of the client is\nsubject to compositor policies.\n\nMaking a surface unfullscreen sets states for the surface based on the following:\n* the state(s) it may have had before becoming fullscreen\n* any state(s) decided by the compositor\n* any state(s) requested by the client while the surface was fullscreen\n\nThe compositor may include the previous window geometry dimensions in\nthe configure event, if applicable.\n\nThe client must also acknowledge the configure when committing the new\ncontent (see ack_configure)."] - UnsetFullscreen, - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - SetMinimized, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "set_parent", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "set_title", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "set_app_id", - since: 1, - signature: &[super::ArgumentType::Str], - destructor: false, - }, - super::MessageDesc { - name: "show_window_menu", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "move", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "resize", - since: 1, - signature: &[ - super::ArgumentType::Object, - super::ArgumentType::Uint, - super::ArgumentType::Uint, - ], - destructor: false, - }, - super::MessageDesc { - name: "set_max_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_min_size", - since: 1, - signature: &[super::ArgumentType::Int, super::ArgumentType::Int], - destructor: false, - }, - super::MessageDesc { - name: "set_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "unset_maximized", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_fullscreen", - since: 1, - signature: &[super::ArgumentType::Object], - destructor: false, - }, - super::MessageDesc { - name: "unset_fullscreen", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "set_minimized", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 2, - Request::SetAppId { .. } => 3, - Request::ShowWindowMenu { .. } => 4, - Request::Move { .. } => 5, - Request::Resize { .. } => 6, - Request::SetMaxSize { .. } => 7, - Request::SetMinSize { .. } => 8, - Request::SetMaximized => 9, - Request::UnsetMaximized => 10, - Request::SetFullscreen { .. } => 11, - Request::UnsetFullscreen => 12, - Request::SetMinimized => 13, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::SetParent { .. } => 1, - Request::SetTitle { .. } => 1, - Request::SetAppId { .. } => 1, - Request::ShowWindowMenu { .. } => 1, - Request::Move { .. } => 1, - Request::Resize { .. } => 1, - Request::SetMaxSize { .. } => 1, - Request::SetMinSize { .. } => 1, - Request::SetMaximized => 1, - Request::UnsetMaximized => 1, - Request::SetFullscreen { .. } => 1, - Request::UnsetFullscreen => 1, - Request::SetMinimized => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::SetParent { parent } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object( - parent.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::SetTitle { title } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(title.into()) - })),], - }, - Request::SetAppId { app_id } => Message { - sender_id: sender_id, - opcode: 3, - args: smallvec![Argument::Str(Box::new(unsafe { - ::std::ffi::CString::from_vec_unchecked(app_id.into()) - })),], - }, - Request::ShowWindowMenu { seat, serial, x, y } => Message { - sender_id: sender_id, - opcode: 4, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Int(x), - Argument::Int(y), - ], - }, - Request::Move { seat, serial } => Message { - sender_id: sender_id, - opcode: 5, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Resize { - seat, - serial, - edges, - } => Message { - sender_id: sender_id, - opcode: 6, - args: smallvec![ - Argument::Object(seat.as_ref().id()), - Argument::Uint(serial), - Argument::Uint(edges.to_raw()), - ], - }, - Request::SetMaxSize { width, height } => Message { - sender_id: sender_id, - opcode: 7, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMinSize { width, height } => Message { - sender_id: sender_id, - opcode: 8, - args: smallvec![Argument::Int(width), Argument::Int(height),], - }, - Request::SetMaximized => Message { - sender_id: sender_id, - opcode: 9, - args: smallvec![], - }, - Request::UnsetMaximized => Message { - sender_id: sender_id, - opcode: 10, - args: smallvec![], - }, - Request::SetFullscreen { output } => Message { - sender_id: sender_id, - opcode: 11, - args: smallvec![Argument::Object( - output.map(|o| o.as_ref().id()).unwrap_or(0) - ),], - }, - Request::UnsetFullscreen => Message { - sender_id: sender_id, - opcode: 12, - args: smallvec![], - }, - Request::SetMinimized => Message { - sender_id: sender_id, - opcode: 13, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::SetParent { parent } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = parent - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(1, &mut _args_array) - } - Request::SetTitle { title } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(title).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(2, &mut _args_array) - } - Request::SetAppId { app_id } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - let _arg_0 = ::std::ffi::CString::new(app_id).unwrap(); - _args_array[0].s = _arg_0.as_ptr(); - f(3, &mut _args_array) - } - Request::ShowWindowMenu { seat, serial, x, y } => { - let mut _args_array: [wl_argument; 4] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].i = x; - _args_array[3].i = y; - f(4, &mut _args_array) - } - Request::Move { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(5, &mut _args_array) - } - Request::Resize { - seat, - serial, - edges, - } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - _args_array[2].u = edges.to_raw(); - f(6, &mut _args_array) - } - Request::SetMaxSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(7, &mut _args_array) - } - Request::SetMinSize { width, height } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].i = width; - _args_array[1].i = height; - f(8, &mut _args_array) - } - Request::SetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(9, &mut _args_array) - } - Request::UnsetMaximized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(10, &mut _args_array) - } - Request::SetFullscreen { output } => { - let mut _args_array: [wl_argument; 1] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = output - .map(|o| o.as_ref().c_ptr() as *mut _) - .unwrap_or(::std::ptr::null_mut()); - f(11, &mut _args_array) - } - Request::UnsetFullscreen => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(12, &mut _args_array) - } - Request::SetMinimized => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(13, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "suggest a surface change\n\nThis configure event asks the client to resize its toplevel surface or\nto change its state. The configured state should not be applied\nimmediately. See xdg_surface.configure for details.\n\nThe width and height arguments specify a hint to the window\nabout how its surface should be resized in window geometry\ncoordinates. See set_window_geometry.\n\nIf the width or height arguments are zero, it means the client\nshould decide its own window dimension. This may happen when the\ncompositor needs to configure the state of the surface but doesn't\nhave any information about any previous or expected dimension.\n\nThe states listed in the event specify how the width/height\narguments should be interpreted, and possibly how it should be\ndrawn.\n\nClients must send an ack_configure in response to this event. See\nxdg_surface.configure and xdg_surface.ack_configure for details."] - Configure { - width: i32, - height: i32, - states: Vec, - }, - #[doc = "surface wants to be closed\n\nThe close event is sent by the compositor when the user\nwants the surface to be closed. This should be equivalent to\nthe user clicking the close button in client-side decorations,\nif your application has any.\n\nThis is only a request that the user intends to close the\nwindow. The client may choose to ignore this request, or show\na dialog to ask the user to save their data, etc."] - Close, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Array, - ], - destructor: false, - }, - super::MessageDesc { - name: "close", - since: 1, - signature: &[], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::Close => 1, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::Close => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - states: { - if let Some(Argument::Array(val)) = args.next() { - *val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::Close), - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 3); - Ok(Event::Configure { - width: _args[0].i, - height: _args[1].i, - states: { - let array = &*_args[2].a; - ::std::slice::from_raw_parts(array.data as *const u8, array.size) - .to_owned() - }, - }) - } - 1 => Ok(Event::Close), - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgToplevel(Proxy); - impl AsRef> for XdgToplevel { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgToplevel { - #[inline] - fn from(value: Proxy) -> Self { - XdgToplevel(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgToplevel) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgToplevel { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgToplevel { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_toplevel"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_toplevel_interface } - } - } - impl XdgToplevel { - #[doc = "destroy the xdg_toplevel\n\nThis request destroys the role surface and unmaps the surface;\nsee \"Unmapping\" behavior in interface section for details.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "set the parent of this surface\n\nSet the \"parent\" of this surface. This surface should be stacked\nabove the parent surface and all other ancestor surfaces.\n\nParent windows should be set on dialogs, toolboxes, or other\n\"auxiliary\" surfaces, so that the parent is raised when the dialog\nis raised.\n\nSetting a null parent for a child window removes any parent-child\nrelationship for the child. Setting a null parent for a window which\ncurrently has no parent is a no-op.\n\nIf the parent is unmapped then its children are managed as\nthough the parent of the now-unmapped parent has become the\nparent of this surface. If no parent exists for the now-unmapped\nparent then the children are managed as though they have no\nparent surface."] - pub fn set_parent(&self, parent: Option<&super::xdg_toplevel::XdgToplevel>) -> () { - let msg = Request::SetParent { - parent: parent.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "set surface title\n\nSet a short title for the surface.\n\nThis string may be used to identify the surface in a task bar,\nwindow list, or other user interface elements provided by the\ncompositor.\n\nThe string must be encoded in UTF-8."] - pub fn set_title(&self, title: String) -> () { - let msg = Request::SetTitle { title: title }; - self.0.send::(msg, None); - } - #[doc = "set application ID\n\nSet an application identifier for the surface.\n\nThe app ID identifies the general class of applications to which\nthe surface belongs. The compositor can use this to group multiple\nsurfaces together, or to determine how to launch a new application.\n\nFor D-Bus activatable applications, the app ID is used as the D-Bus\nservice name.\n\nThe compositor shell will try to group application surfaces together\nby their app ID. As a best practice, it is suggested to select app\nID's that match the basename of the application's .desktop file.\nFor example, \"org.freedesktop.FooViewer\" where the .desktop file is\n\"org.freedesktop.FooViewer.desktop\".\n\nLike other properties, a set_app_id request can be sent after the\nxdg_toplevel has been mapped to update the property.\n\nSee the desktop-entry specification [0] for more details on\napplication identifiers and how they relate to well-known D-Bus\nnames and .desktop files.\n\n[0] http://standards.freedesktop.org/desktop-entry-spec/"] - pub fn set_app_id(&self, app_id: String) -> () { - let msg = Request::SetAppId { app_id: app_id }; - self.0.send::(msg, None); - } - #[doc = "show the window menu\n\nClients implementing client-side decorations might want to show\na context menu when right-clicking on the decorations, giving the\nuser a menu that they can use to maximize or minimize the window.\n\nThis request asks the compositor to pop up such a window menu at\nthe given position, relative to the local surface coordinates of\nthe parent surface. There are no guarantees as to what menu items\nthe window menu contains.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event."] - pub fn show_window_menu( - &self, - seat: &super::wl_seat::WlSeat, - serial: u32, - x: i32, - y: i32, - ) -> () { - let msg = Request::ShowWindowMenu { - seat: seat.clone(), - serial: serial, - x: x, - y: y, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive move\n\nStart an interactive, user-driven move of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive move (touch,\npointer, etc).\n\nThe server may ignore move requests depending on the state of\nthe surface (e.g. fullscreen or maximized), or if the passed serial\nis no longer valid.\n\nIf triggered, the surface will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the move. It is up to the\ncompositor to visually indicate that the move is taking place, such as\nupdating a pointer cursor, during the move. There is no guarantee\nthat the device focus will return when the move is completed."] - pub fn _move(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Move { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "start an interactive resize\n\nStart a user-driven, interactive resize of the surface.\n\nThis request must be used in response to some sort of user action\nlike a button press, key press, or touch down event. The passed\nserial is used to determine the type of interactive resize (touch,\npointer, etc).\n\nThe server may ignore resize requests depending on the state of\nthe surface (e.g. fullscreen or maximized).\n\nIf triggered, the client will receive configure events with the\n\"resize\" state enum value and the expected sizes. See the \"resize\"\nenum value for more details about what is required. The client\nmust also acknowledge configure events using \"ack_configure\". After\nthe resize is completed, the client will receive another \"configure\"\nevent without the resize state.\n\nIf triggered, the surface also will lose the focus of the device\n(wl_pointer, wl_touch, etc) used for the resize. It is up to the\ncompositor to visually indicate that the resize is taking place,\nsuch as updating a pointer cursor, during the resize. There is no\nguarantee that the device focus will return when the resize is\ncompleted.\n\nThe edges parameter specifies how the surface should be resized,\nand is one of the values of the resize_edge enum. The compositor\nmay use this information to update the surface position for\nexample when dragging the top left corner. The compositor may also\nuse this information to adapt its behavior, e.g. choose an\nappropriate cursor image."] - pub fn resize(&self, seat: &super::wl_seat::WlSeat, serial: u32, edges: ResizeEdge) -> () { - let msg = Request::Resize { - seat: seat.clone(), - serial: serial, - edges: edges, - }; - self.0.send::(msg, None); - } - #[doc = "set the maximum size\n\nSet a maximum size for the window.\n\nThe client can specify a maximum size so that the compositor does\nnot try to configure the window beyond this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the maximum\nsize. The compositor may decide to ignore the values set by the\nclient and request a larger size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected maximum size in the given dimension.\nAs a result, a client wishing to reset the maximum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a maximum size to be smaller than the minimum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_max_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMaxSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "set the minimum size\n\nSet a minimum size for the window.\n\nThe client can specify a minimum size so that the compositor does\nnot try to configure the window below this size.\n\nThe width and height arguments are in window geometry coordinates.\nSee xdg_surface.set_window_geometry.\n\nValues set in this way are double-buffered. They will get applied\non the next commit.\n\nThe compositor can use this information to allow or disallow\ndifferent states like maximize or fullscreen and draw accurate\nanimations.\n\nSimilarly, a tiling window manager may use this information to\nplace and resize client windows in a more effective way.\n\nThe client should not rely on the compositor to obey the minimum\nsize. The compositor may decide to ignore the values set by the\nclient and request a smaller size.\n\nIf never set, or a value of zero in the request, means that the\nclient has no expected minimum size in the given dimension.\nAs a result, a client wishing to reset the minimum size\nto an unspecified state can use zero for width and height in the\nrequest.\n\nRequesting a minimum size to be larger than the maximum size of\na surface is illegal and will result in a protocol error.\n\nThe width and height must be greater than or equal to zero. Using\nstrictly negative values for width and height will result in a\nprotocol error."] - pub fn set_min_size(&self, width: i32, height: i32) -> () { - let msg = Request::SetMinSize { - width: width, - height: height, - }; - self.0.send::(msg, None); - } - #[doc = "maximize the window\n\nMaximize the surface.\n\nAfter requesting that the surface should be maximized, the compositor\nwill respond by emitting a configure event. Whether this configure\nactually sets the window maximized is subject to compositor policies.\nThe client must then update its content, drawing in the configured\nstate. The client must also acknowledge the configure when committing\nthe new content (see ack_configure).\n\nIt is up to the compositor to decide how and where to maximize the\nsurface, for example which output and what region of the screen should\nbe used.\n\nIf the surface was already maximized, the compositor will still emit\na configure event with the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - pub fn set_maximized(&self) -> () { - let msg = Request::SetMaximized; - self.0.send::(msg, None); - } - #[doc = "unmaximize the window\n\nUnmaximize the surface.\n\nAfter requesting that the surface should be unmaximized, the compositor\nwill respond by emitting a configure event. Whether this actually\nun-maximizes the window is subject to compositor policies.\nIf available and applicable, the compositor will include the window\ngeometry dimensions the window had prior to being maximized in the\nconfigure event. The client must then update its content, drawing it in\nthe configured state. The client must also acknowledge the configure\nwhen committing the new content (see ack_configure).\n\nIt is up to the compositor to position the surface after it was\nunmaximized; usually the position the surface had before maximizing, if\napplicable.\n\nIf the surface was already not maximized, the compositor will still\nemit a configure event without the \"maximized\" state.\n\nIf the surface is in a fullscreen state, this request has no direct\neffect. It may alter the state the surface is returned to when\nunmaximized unless overridden by the compositor."] - pub fn unset_maximized(&self) -> () { - let msg = Request::UnsetMaximized; - self.0.send::(msg, None); - } - #[doc = "set the window as fullscreen on an output\n\nMake the surface fullscreen.\n\nAfter requesting that the surface should be fullscreened, the\ncompositor will respond by emitting a configure event. Whether the\nclient is actually put into a fullscreen state is subject to compositor\npolicies. The client must also acknowledge the configure when\ncommitting the new content (see ack_configure).\n\nThe output passed by the request indicates the client's preference as\nto which display it should be set fullscreen on. If this value is NULL,\nit's up to the compositor to choose which display will be used to map\nthis surface.\n\nIf the surface doesn't cover the whole output, the compositor will\nposition the surface in the center of the output and compensate with\nwith border fill covering the rest of the output. The content of the\nborder fill is undefined, but should be assumed to be in some way that\nattempts to blend into the surrounding area (e.g. solid black).\n\nIf the fullscreened surface is not opaque, the compositor must make\nsure that other screen content not part of the same surface tree (made\nup of subsurfaces, popups or similarly coupled surfaces) are not\nvisible below the fullscreened surface."] - pub fn set_fullscreen(&self, output: Option<&super::wl_output::WlOutput>) -> () { - let msg = Request::SetFullscreen { - output: output.map(|o| o.clone()), - }; - self.0.send::(msg, None); - } - #[doc = "unset the window as fullscreen\n\nMake the surface no longer fullscreen.\n\nAfter requesting that the surface should be unfullscreened, the\ncompositor will respond by emitting a configure event.\nWhether this actually removes the fullscreen state of the client is\nsubject to compositor policies.\n\nMaking a surface unfullscreen sets states for the surface based on the following:\n* the state(s) it may have had before becoming fullscreen\n* any state(s) decided by the compositor\n* any state(s) requested by the client while the surface was fullscreen\n\nThe compositor may include the previous window geometry dimensions in\nthe configure event, if applicable.\n\nThe client must also acknowledge the configure when committing the new\ncontent (see ack_configure)."] - pub fn unset_fullscreen(&self) -> () { - let msg = Request::UnsetFullscreen; - self.0.send::(msg, None); - } - #[doc = "set the window as minimized\n\nRequest that the compositor minimize your surface. There is no\nway to know if the surface is currently minimized, nor is there\nany way to unset minimization on this surface.\n\nIf you are looking to throttle redrawing when minimized, please\ninstead use the wl_surface.frame event for this, as this will\nalso work with live previews on windows in Alt-Tab, Expose or\nsimilar compositor features."] - pub fn set_minimized(&self) -> () { - let msg = Request::SetMinimized; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_PARENT_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_TITLE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_APP_ID_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SHOW_WINDOW_MENU_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_MOVE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_RESIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAX_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MIN_SIZE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_MAXIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_UNSET_FULLSCREEN_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_SET_MINIMIZED_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CLOSE_SINCE: u32 = 1u32; - static mut xdg_toplevel_requests_set_parent_types: [*const wl_interface; 1] = - [unsafe { &super::xdg_toplevel::xdg_toplevel_interface as *const wl_interface }]; - static mut xdg_toplevel_requests_show_window_menu_types: [*const wl_interface; 4] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_toplevel_requests_move_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut xdg_toplevel_requests_resize_types: [*const wl_interface; 3] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - NULLPTR as *const wl_interface, - ]; - static mut xdg_toplevel_requests_set_fullscreen_types: [*const wl_interface; 1] = - [unsafe { &super::wl_output::wl_output_interface as *const wl_interface }]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_toplevel_requests: [wl_message; 14] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_parent\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_set_parent_types as *const _ }, - }, - wl_message { - name: b"set_title\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_app_id\0" as *const u8 as *const c_char, - signature: b"s\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"show_window_menu\0" as *const u8 as *const c_char, - signature: b"ouii\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_show_window_menu_types as *const _ }, - }, - wl_message { - name: b"move\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_move_types as *const _ }, - }, - wl_message { - name: b"resize\0" as *const u8 as *const c_char, - signature: b"ouu\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_resize_types as *const _ }, - }, - wl_message { - name: b"set_max_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_min_size\0" as *const u8 as *const c_char, - signature: b"ii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"unset_maximized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_fullscreen\0" as *const u8 as *const c_char, - signature: b"?o\0" as *const u8 as *const c_char, - types: unsafe { &xdg_toplevel_requests_set_fullscreen_types as *const _ }, - }, - wl_message { - name: b"unset_fullscreen\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"set_minimized\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_toplevel_events: [wl_message; 2] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iia\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"close\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_toplevel_interface: wl_interface = wl_interface { - name: b"xdg_toplevel\0" as *const u8 as *const c_char, - version: 3, - request_count: 14, - requests: unsafe { &xdg_toplevel_requests as *const _ }, - event_count: 2, - events: unsafe { &xdg_toplevel_events as *const _ }, - }; -} -#[doc = "short-lived, popup surfaces for menus\n\nA popup surface is a short-lived, temporary surface. It can be used to\nimplement for example menus, popovers, tooltips and other similar user\ninterface concepts.\n\nA popup can be made to take an explicit grab. See xdg_popup.grab for\ndetails.\n\nWhen the popup is dismissed, a popup_done event will be sent out, and at\nthe same time the surface will be unmapped. See the xdg_popup.popup_done\nevent for details.\n\nExplicitly destroying the xdg_popup object will also dismiss the popup and\nunmap the surface. Clients that want to dismiss the popup when another\nsurface of their own is clicked should dismiss the popup using the destroy\nrequest.\n\nA newly created xdg_popup will be stacked on top of all previously created\nxdg_popup surfaces associated with the same xdg_toplevel.\n\nThe parent of an xdg_popup must be mapped (see the xdg_surface\ndescription) before the xdg_popup itself.\n\nThe client must call wl_surface.commit on the corresponding wl_surface\nfor the xdg_popup state to take effect."] -pub mod xdg_popup { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[repr(u32)] - #[derive(Copy, Clone, Debug, PartialEq)] - #[non_exhaustive] - pub enum Error { - #[doc = "tried to grab after being mapped"] - InvalidGrab = 0, - } - impl Error { - pub fn from_raw(n: u32) -> Option { - match n { - 0 => Some(Error::InvalidGrab), - _ => Option::None, - } - } - pub fn to_raw(&self) -> u32 { - *self as u32 - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - Grab { - seat: super::wl_seat::WlSeat, - serial: u32, - }, - #[doc = "recalculate the popup's location\n\nReposition an already-mapped popup. The popup will be placed given the\ndetails in the passed xdg_positioner object, and a\nxdg_popup.repositioned followed by xdg_popup.configure and\nxdg_surface.configure will be emitted in response. Any parameters set\nby the previous positioner will be discarded.\n\nThe passed token will be sent in the corresponding\nxdg_popup.repositioned event. The new popup position will not take\neffect until the corresponding configure event is acknowledged by the\nclient. See xdg_popup.repositioned for details. The token itself is\nopaque, and has no other special meaning.\n\nIf multiple reposition requests are sent, the compositor may skip all\nbut the last one.\n\nIf the popup is repositioned in response to a configure event for its\nparent, the client should send an xdg_positioner.set_parent_configure\nand possibly an xdg_positioner.set_parent_size request to allow the\ncompositor to properly constrain the popup.\n\nIf the popup is repositioned together with a parent that is being\nresized, but not in response to a configure event, the client should\nsend an xdg_positioner.set_parent_size request.\n\nOnly available since version 3 of the interface"] - Reposition { - positioner: super::xdg_positioner::XdgPositioner, - token: u32, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "grab", - since: 1, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - super::MessageDesc { - name: "reposition", - since: 3, - signature: &[super::ArgumentType::Object, super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::Grab { .. } => 1, - Request::Reposition { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::Grab { .. } => 1, - Request::Reposition { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::Grab { seat, serial } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![Argument::Object(seat.as_ref().id()), Argument::Uint(serial),], - }, - Request::Reposition { positioner, token } => Message { - sender_id: sender_id, - opcode: 2, - args: smallvec![ - Argument::Object(positioner.as_ref().id()), - Argument::Uint(token), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::Grab { seat, serial } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = seat.as_ref().c_ptr() as *mut _; - _args_array[1].u = serial; - f(1, &mut _args_array) - } - Request::Reposition { positioner, token } => { - let mut _args_array: [wl_argument; 2] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = positioner.as_ref().c_ptr() as *mut _; - _args_array[1].u = token; - f(2, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event { - #[doc = "configure the popup surface\n\nThis event asks the popup surface to configure itself given the\nconfiguration. The configured state should not be applied immediately.\nSee xdg_surface.configure for details.\n\nThe x and y arguments represent the position the popup was placed at\ngiven the xdg_positioner rule, relative to the upper left corner of the\nwindow geometry of the parent surface.\n\nFor version 2 or older, the configure event for an xdg_popup is only\never sent once for the initial configuration. Starting with version 3,\nit may be sent again if the popup is setup with an xdg_positioner with\nset_reactive requested, or in response to xdg_popup.reposition requests."] - Configure { - x: i32, - y: i32, - width: i32, - height: i32, - }, - #[doc = "popup interaction is done\n\nThe popup_done event is sent out when a popup is dismissed by the\ncompositor. The client should destroy the xdg_popup object at this\npoint."] - PopupDone, - #[doc = "signal the completion of a repositioned request\n\nThe repositioned event is sent as part of a popup configuration\nsequence, together with xdg_popup.configure and lastly\nxdg_surface.configure to notify the completion of a reposition request.\n\nThe repositioned event is to notify about the completion of a\nxdg_popup.reposition request. The token argument is the token passed\nin the xdg_popup.reposition request.\n\nImmediately after this event is emitted, xdg_popup.configure and\nxdg_surface.configure will be sent with the updated size and position,\nas well as a new configure serial.\n\nThe client should optionally update the content of the popup, but must\nacknowledge the new popup configuration for the new position to take\neffect. See xdg_surface.ack_configure for details.\n\nOnly available since version 3 of the interface"] - Repositioned { token: u32 }, - } - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "configure", - since: 1, - signature: &[ - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - super::ArgumentType::Int, - ], - destructor: false, - }, - super::MessageDesc { - name: "popup_done", - since: 1, - signature: &[], - destructor: false, - }, - super::MessageDesc { - name: "repositioned", - since: 3, - signature: &[super::ArgumentType::Uint], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Event::Configure { .. } => 0, - Event::PopupDone => 1, - Event::Repositioned { .. } => 2, - } - } - fn since(&self) -> u32 { - match *self { - Event::Configure { .. } => 1, - Event::PopupDone => 1, - Event::Repositioned { .. } => 3, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - 0 => { - let mut args = msg.args.into_iter(); - Ok(Event::Configure { - x: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - y: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - width: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - height: { - if let Some(Argument::Int(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - 1 => Ok(Event::PopupDone), - 2 => { - let mut args = msg.args.into_iter(); - Ok(Event::Repositioned { - token: { - if let Some(Argument::Uint(val)) = args.next() { - val - } else { - return Err(()); - } - }, - }) - } - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - 0 => { - let _args = ::std::slice::from_raw_parts(args, 4); - Ok(Event::Configure { - x: _args[0].i, - y: _args[1].i, - width: _args[2].i, - height: _args[3].i, - }) - } - 1 => Ok(Event::PopupDone), - 2 => { - let _args = ::std::slice::from_raw_parts(args, 1); - Ok(Event::Repositioned { token: _args[0].u }) - } - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct XdgPopup(Proxy); - impl AsRef> for XdgPopup { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for XdgPopup { - #[inline] - fn from(value: Proxy) -> Self { - XdgPopup(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: XdgPopup) -> Self { - value.0 - } - } - impl std::fmt::Debug for XdgPopup { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for XdgPopup { - type Request = Request; - type Event = Event; - const NAME: &'static str = "xdg_popup"; - const VERSION: u32 = 3; - fn c_interface() -> *const wl_interface { - unsafe { &xdg_popup_interface } - } - } - impl XdgPopup { - #[doc = "remove xdg_popup interface\n\nThis destroys the popup. Explicitly destroying the xdg_popup\nobject will also dismiss the popup, and unmap the surface.\n\nIf this xdg_popup is not the \"topmost\" popup, a protocol error\nwill be sent.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "make the popup take an explicit grab\n\nThis request makes the created popup take an explicit grab. An explicit\ngrab will be dismissed when the user dismisses the popup, or when the\nclient destroys the xdg_popup. This can be done by the user clicking\noutside the surface, using the keyboard, or even locking the screen\nthrough closing the lid or a timeout.\n\nIf the compositor denies the grab, the popup will be immediately\ndismissed.\n\nThis request must be used in response to some sort of user action like a\nbutton press, key press, or touch down event. The serial number of the\nevent should be passed as 'serial'.\n\nThe parent of a grabbing popup must either be an xdg_toplevel surface or\nanother xdg_popup with an explicit grab. If the parent is another\nxdg_popup it means that the popups are nested, with this popup now being\nthe topmost popup.\n\nNested popups must be destroyed in the reverse order they were created\nin, e.g. the only popup you are allowed to destroy at all times is the\ntopmost one.\n\nWhen compositors choose to dismiss a popup, they may dismiss every\nnested grabbing popup as well. When a compositor dismisses popups, it\nwill follow the same dismissing order as required from the client.\n\nThe parent of a grabbing popup must either be another xdg_popup with an\nactive explicit grab, or an xdg_popup or xdg_toplevel, if there are no\nexplicit grabs already taken.\n\nIf the topmost grabbing popup is destroyed, the grab will be returned to\nthe parent of the popup, if that parent previously had an explicit grab.\n\nIf the parent is a grabbing popup which has already been dismissed, this\npopup will be immediately dismissed. If the parent is a popup that did\nnot take an explicit grab, an error will be raised.\n\nDuring a popup grab, the client owning the grab will receive pointer\nand touch events for all their surfaces as normal (similar to an\n\"owner-events\" grab in X11 parlance), while the top most grabbing popup\nwill always have keyboard focus."] - pub fn grab(&self, seat: &super::wl_seat::WlSeat, serial: u32) -> () { - let msg = Request::Grab { - seat: seat.clone(), - serial: serial, - }; - self.0.send::(msg, None); - } - #[doc = "recalculate the popup's location\n\nReposition an already-mapped popup. The popup will be placed given the\ndetails in the passed xdg_positioner object, and a\nxdg_popup.repositioned followed by xdg_popup.configure and\nxdg_surface.configure will be emitted in response. Any parameters set\nby the previous positioner will be discarded.\n\nThe passed token will be sent in the corresponding\nxdg_popup.repositioned event. The new popup position will not take\neffect until the corresponding configure event is acknowledged by the\nclient. See xdg_popup.repositioned for details. The token itself is\nopaque, and has no other special meaning.\n\nIf multiple reposition requests are sent, the compositor may skip all\nbut the last one.\n\nIf the popup is repositioned in response to a configure event for its\nparent, the client should send an xdg_positioner.set_parent_configure\nand possibly an xdg_positioner.set_parent_size request to allow the\ncompositor to properly constrain the popup.\n\nIf the popup is repositioned together with a parent that is being\nresized, but not in response to a configure event, the client should\nsend an xdg_positioner.set_parent_size request.\n\nOnly available since version 3 of the interface."] - pub fn reposition( - &self, - positioner: &super::xdg_positioner::XdgPositioner, - token: u32, - ) -> () { - let msg = Request::Reposition { - positioner: positioner.clone(), - token: token, - }; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_REPOSITION_SINCE: u32 = 3u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_CONFIGURE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_POPUP_DONE_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this event"] - pub const EVT_REPOSITIONED_SINCE: u32 = 3u32; - static mut xdg_popup_requests_grab_types: [*const wl_interface; 2] = [ - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - static mut xdg_popup_requests_reposition_types: [*const wl_interface; 2] = [ - unsafe { &super::xdg_positioner::xdg_positioner_interface as *const wl_interface }, - NULLPTR as *const wl_interface, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_requests: [wl_message; 3] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab\0" as *const u8 as *const c_char, - signature: b"ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_popup_requests_grab_types as *const _ }, - }, - wl_message { - name: b"reposition\0" as *const u8 as *const c_char, - signature: b"3ou\0" as *const u8 as *const c_char, - types: unsafe { &xdg_popup_requests_reposition_types as *const _ }, - }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut xdg_popup_events: [wl_message; 3] = [ - wl_message { - name: b"configure\0" as *const u8 as *const c_char, - signature: b"iiii\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"popup_done\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"repositioned\0" as *const u8 as *const c_char, - signature: b"3u\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut xdg_popup_interface: wl_interface = wl_interface { - name: b"xdg_popup\0" as *const u8 as *const c_char, - version: 3, - request_count: 3, - requests: unsafe { &xdg_popup_requests as *const _ }, - event_count: 3, - events: unsafe { &xdg_popup_events as *const _ }, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs b/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs deleted file mode 100644 index 1de3dd8..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs +++ /dev/null @@ -1,444 +0,0 @@ -use std::os::raw::{c_char, c_void}; -const NULLPTR: *const c_void = 0 as *const c_void; -static mut types_null: [*const sys::common::wl_interface; 0] = []; -#[doc = "context object for keyboard grab manager\n\nA global interface used for grabbing the keyboard."] -pub mod zwp_xwayland_keyboard_grab_manager_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the keyboard grab manager\n\nDestroy the keyboard grab manager.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - #[doc = "grab the keyboard to a surface\n\nThe grab_keyboard request asks for a grab of the keyboard, forcing\nthe keyboard focus for the given seat upon the given surface.\n\nThe protocol provides no guarantee that the grab is ever satisfied,\nand does not require the compositor to send an error if the grab\ncannot ever be satisfied. It is thus possible to request a keyboard\ngrab that will never be effective.\n\nThe protocol:\n\n* does not guarantee that the grab itself is applied for a surface,\nthe grab request may be silently ignored by the compositor,\n* does not guarantee that any events are sent to this client even\nif the grab is applied to a surface,\n* does not guarantee that events sent to this client are exhaustive,\na compositor may filter some events for its own consumption,\n* does not guarantee that events sent to this client are continuous,\na compositor may change and reroute keyboard events while the grab\nis nominally active."] - GrabKeyboard { - surface: super::wl_surface::WlSurface, - seat: super::wl_seat::WlSeat, - }, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[ - super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }, - super::MessageDesc { - name: "grab_keyboard", - since: 1, - signature: &[ - super::ArgumentType::NewId, - super::ArgumentType::Object, - super::ArgumentType::Object, - ], - destructor: false, - }, - ]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - _ => false, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - Request::GrabKeyboard { .. } => 1, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - Request::GrabKeyboard { .. } => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - 1 => Some(Object::from_interface::< - super::zwp_xwayland_keyboard_grab_v1::ZwpXwaylandKeyboardGrabV1, - >(version, meta.child())), - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - Request::GrabKeyboard { surface, seat } => Message { - sender_id: sender_id, - opcode: 1, - args: smallvec![ - Argument::NewId(0), - Argument::Object(surface.as_ref().id()), - Argument::Object(seat.as_ref().id()), - ], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - Request::GrabKeyboard { surface, seat } => { - let mut _args_array: [wl_argument; 3] = unsafe { ::std::mem::zeroed() }; - _args_array[0].o = ::std::ptr::null_mut() as *mut _; - _args_array[1].o = surface.as_ref().c_ptr() as *mut _; - _args_array[2].o = seat.as_ref().c_ptr() as *mut _; - f(1, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpXwaylandKeyboardGrabManagerV1(Proxy); - impl AsRef> for ZwpXwaylandKeyboardGrabManagerV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpXwaylandKeyboardGrabManagerV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpXwaylandKeyboardGrabManagerV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpXwaylandKeyboardGrabManagerV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpXwaylandKeyboardGrabManagerV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpXwaylandKeyboardGrabManagerV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_xwayland_keyboard_grab_manager_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_xwayland_keyboard_grab_manager_v1_interface } - } - } - impl ZwpXwaylandKeyboardGrabManagerV1 { - #[doc = "destroy the keyboard grab manager\n\nDestroy the keyboard grab manager.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - #[doc = "grab the keyboard to a surface\n\nThe grab_keyboard request asks for a grab of the keyboard, forcing\nthe keyboard focus for the given seat upon the given surface.\n\nThe protocol provides no guarantee that the grab is ever satisfied,\nand does not require the compositor to send an error if the grab\ncannot ever be satisfied. It is thus possible to request a keyboard\ngrab that will never be effective.\n\nThe protocol:\n\n* does not guarantee that the grab itself is applied for a surface,\nthe grab request may be silently ignored by the compositor,\n* does not guarantee that any events are sent to this client even\nif the grab is applied to a surface,\n* does not guarantee that events sent to this client are exhaustive,\na compositor may filter some events for its own consumption,\n* does not guarantee that events sent to this client are continuous,\na compositor may change and reroute keyboard events while the grab\nis nominally active."] - pub fn grab_keyboard( - &self, - surface: &super::wl_surface::WlSurface, - seat: &super::wl_seat::WlSeat, - ) -> Main { - let msg = Request::GrabKeyboard { - surface: surface.clone(), - seat: seat.clone(), - }; - self.0.send(msg, None).unwrap() - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" The minimal object version supporting this request"] - pub const REQ_GRAB_KEYBOARD_SINCE: u32 = 1u32; - static mut zwp_xwayland_keyboard_grab_manager_v1_requests_grab_keyboard_types: - [*const wl_interface; 3] = [ - unsafe { - &super::zwp_xwayland_keyboard_grab_v1::zwp_xwayland_keyboard_grab_v1_interface - as *const wl_interface - }, - unsafe { &super::wl_surface::wl_surface_interface as *const wl_interface }, - unsafe { &super::wl_seat::wl_seat_interface as *const wl_interface }, - ]; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_manager_v1_requests: [wl_message; 2] = [ - wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }, - wl_message { - name: b"grab_keyboard\0" as *const u8 as *const c_char, - signature: b"noo\0" as *const u8 as *const c_char, - types: unsafe { - &zwp_xwayland_keyboard_grab_manager_v1_requests_grab_keyboard_types as *const _ - }, - }, - ]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_manager_v1_interface: wl_interface = wl_interface { - name: b"zwp_xwayland_keyboard_grab_manager_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 2, - requests: unsafe { &zwp_xwayland_keyboard_grab_manager_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} -#[doc = "interface for grabbing the keyboard\n\nA global interface used for grabbing the keyboard."] -pub mod zwp_xwayland_keyboard_grab_v1 { - use super::sys::client::*; - use super::sys::common::{wl_argument, wl_array, wl_interface, wl_message}; - use super::{ - smallvec, types_null, AnonymousObject, Argument, ArgumentType, Interface, Main, Message, - MessageDesc, MessageGroup, Object, ObjectMetadata, Proxy, NULLPTR, - }; - use std::os::raw::c_char; - #[derive(Debug)] - #[non_exhaustive] - pub enum Request { - #[doc = "destroy the grabbed keyboard object\n\nDestroy the grabbed keyboard object. If applicable, the compositor\nwill ungrab the keyboard.\n\nThis is a destructor, once sent this object cannot be used any longer."] - Destroy, - } - impl super::MessageGroup for Request { - const MESSAGES: &'static [super::MessageDesc] = &[super::MessageDesc { - name: "destroy", - since: 1, - signature: &[], - destructor: true, - }]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self { - Request::Destroy => true, - } - } - fn opcode(&self) -> u16 { - match *self { - Request::Destroy => 0, - } - } - fn since(&self) -> u32 { - match *self { - Request::Destroy => 1, - } - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - panic!("Request::from_raw can not be used Client-side.") - } - fn into_raw(self, sender_id: u32) -> Message { - match self { - Request::Destroy => Message { - sender_id: sender_id, - opcode: 0, - args: smallvec![], - }, - } - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - panic!("Request::from_raw_c can not be used Client-side.") - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - match self { - Request::Destroy => { - let mut _args_array: [wl_argument; 0] = unsafe { ::std::mem::zeroed() }; - f(0, &mut _args_array) - } - } - } - } - #[derive(Debug)] - #[non_exhaustive] - pub enum Event {} - impl super::MessageGroup for Event { - const MESSAGES: &'static [super::MessageDesc] = &[]; - type Map = super::ProxyMap; - fn is_destructor(&self) -> bool { - match *self {} - } - fn opcode(&self) -> u16 { - match *self {} - } - fn since(&self) -> u32 { - match *self {} - } - fn child( - opcode: u16, - version: u32, - meta: &Meta, - ) -> Option> { - match opcode { - _ => None, - } - } - fn from_raw(msg: Message, map: &mut Self::Map) -> Result { - match msg.opcode { - _ => Err(()), - } - } - fn into_raw(self, sender_id: u32) -> Message { - panic!("Event::into_raw can not be used Client-side.") - } - unsafe fn from_raw_c( - obj: *mut ::std::os::raw::c_void, - opcode: u32, - args: *const wl_argument, - ) -> Result { - match opcode { - _ => return Err(()), - } - } - fn as_raw_c_in(self, f: F) -> T - where - F: FnOnce(u32, &mut [wl_argument]) -> T, - { - panic!("Event::as_raw_c_in can not be used Client-side.") - } - } - #[derive(Clone, Eq, PartialEq)] - pub struct ZwpXwaylandKeyboardGrabV1(Proxy); - impl AsRef> for ZwpXwaylandKeyboardGrabV1 { - #[inline] - fn as_ref(&self) -> &Proxy { - &self.0 - } - } - impl From> for ZwpXwaylandKeyboardGrabV1 { - #[inline] - fn from(value: Proxy) -> Self { - ZwpXwaylandKeyboardGrabV1(value) - } - } - impl From for Proxy { - #[inline] - fn from(value: ZwpXwaylandKeyboardGrabV1) -> Self { - value.0 - } - } - impl std::fmt::Debug for ZwpXwaylandKeyboardGrabV1 { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_fmt(format_args!("{:?}", self.0)) - } - } - impl Interface for ZwpXwaylandKeyboardGrabV1 { - type Request = Request; - type Event = Event; - const NAME: &'static str = "zwp_xwayland_keyboard_grab_v1"; - const VERSION: u32 = 1; - fn c_interface() -> *const wl_interface { - unsafe { &zwp_xwayland_keyboard_grab_v1_interface } - } - } - impl ZwpXwaylandKeyboardGrabV1 { - #[doc = "destroy the grabbed keyboard object\n\nDestroy the grabbed keyboard object. If applicable, the compositor\nwill ungrab the keyboard.\n\nThis is a destructor, you cannot send requests to this object any longer once this method is called."] - pub fn destroy(&self) -> () { - let msg = Request::Destroy; - self.0.send::(msg, None); - } - } - #[doc = r" The minimal object version supporting this request"] - pub const REQ_DESTROY_SINCE: u32 = 1u32; - #[doc = r" C-representation of the messages of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_v1_requests: [wl_message; 1] = [wl_message { - name: b"destroy\0" as *const u8 as *const c_char, - signature: b"\0" as *const u8 as *const c_char, - types: unsafe { &types_null as *const _ }, - }]; - #[doc = r" C representation of this interface, for interop"] - pub static mut zwp_xwayland_keyboard_grab_v1_interface: wl_interface = wl_interface { - name: b"zwp_xwayland_keyboard_grab_v1\0" as *const u8 as *const c_char, - version: 1, - request_count: 1, - requests: unsafe { &zwp_xwayland_keyboard_grab_v1_requests as *const _ }, - event_count: 0, - events: NULLPTR as *const wl_message, - }; -} diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/output b/target/release/build/wayland-protocols-334c48720a6100cb/output deleted file mode 100644 index 7f7137e..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/output +++ /dev/null @@ -1,41 +0,0 @@ -cargo:rerun-if-changed-env=CARGO_FEATURE_CLIENT -cargo:rerun-if-changed-env=CARGO_FEATURE_SERVER -cargo:rerun-if-changed-env=CARGO_FEATURE_UNSTABLE_PROTOCOLS -cargo:rerun-if-changed=./protocols/stable/presentation-time/presentation-time.xml -cargo:rerun-if-changed=./protocols/stable/viewporter/viewporter.xml -cargo:rerun-if-changed=./protocols/stable/xdg-shell/xdg-shell.xml -cargo:rerun-if-changed=./misc/gtk-primary-selection.xml -cargo:rerun-if-changed=./misc/input-method-unstable-v2.xml -cargo:rerun-if-changed=./misc/server-decoration.xml -cargo:rerun-if-changed=./protocols/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/input-method/input-method-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/input-timestamps/input-timestamps-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/primary-selection/primary-selection-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/relative-pointer/relative-pointer-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/tablet/tablet-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/tablet/tablet-unstable-v2.xml -cargo:rerun-if-changed=./protocols/unstable/text-input/text-input-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/text-input/text-input-unstable-v3.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-output/xdg-output-unstable-v1.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-shell/xdg-shell-unstable-v5.xml -cargo:rerun-if-changed=./protocols/unstable/xdg-shell/xdg-shell-unstable-v6.xml -cargo:rerun-if-changed=./protocols/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-data-control-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-export-dmabuf-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-foreign-toplevel-management-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-gamma-control-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-input-inhibitor-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-output-management-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-output-power-management-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-screencopy-unstable-v1.xml -cargo:rerun-if-changed=./wlr-protocols/unstable/wlr-virtual-pointer-unstable-v1.xml diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/root-output b/target/release/build/wayland-protocols-334c48720a6100cb/root-output deleted file mode 100644 index b317626..0000000 --- a/target/release/build/wayland-protocols-334c48720a6100cb/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out \ No newline at end of file diff --git a/target/release/build/wayland-protocols-334c48720a6100cb/stderr b/target/release/build/wayland-protocols-334c48720a6100cb/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/wayland-sys-9be84ef10bd93169/invoked.timestamp b/target/release/build/wayland-sys-9be84ef10bd93169/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/wayland-sys-9be84ef10bd93169/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/wayland-sys-9be84ef10bd93169/output b/target/release/build/wayland-sys-9be84ef10bd93169/output deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/wayland-sys-9be84ef10bd93169/root-output b/target/release/build/wayland-sys-9be84ef10bd93169/root-output deleted file mode 100644 index 66e2c11..0000000 --- a/target/release/build/wayland-sys-9be84ef10bd93169/root-output +++ /dev/null @@ -1 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-sys-9be84ef10bd93169/out \ No newline at end of file diff --git a/target/release/build/wayland-sys-9be84ef10bd93169/stderr b/target/release/build/wayland-sys-9be84ef10bd93169/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/target/release/build/wayland-sys-c33facd47af31f43/build-script-build b/target/release/build/wayland-sys-c33facd47af31f43/build-script-build deleted file mode 100755 index e7db1e8..0000000 Binary files a/target/release/build/wayland-sys-c33facd47af31f43/build-script-build and /dev/null differ diff --git a/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43 b/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43 deleted file mode 100755 index e7db1e8..0000000 Binary files a/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43 and /dev/null differ diff --git a/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43.d b/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43.d deleted file mode 100644 index 2095bad..0000000 --- a/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/build.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-sys-c33facd47af31f43/build_script_build-c33facd47af31f43.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/build.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/build.rs: diff --git a/target/release/deps/Fast_Password_Generator-e3277a57d84f1650 b/target/release/deps/Fast_Password_Generator-e3277a57d84f1650 deleted file mode 100755 index 747398a..0000000 Binary files a/target/release/deps/Fast_Password_Generator-e3277a57d84f1650 and /dev/null differ diff --git a/target/release/deps/Fast_Password_Generator-e3277a57d84f1650.d b/target/release/deps/Fast_Password_Generator-e3277a57d84f1650.d deleted file mode 100644 index 93bd7c1..0000000 --- a/target/release/deps/Fast_Password_Generator-e3277a57d84f1650.d +++ /dev/null @@ -1,6 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/Fast_Password_Generator-e3277a57d84f1650: src/main.rs src/generator.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/Fast_Password_Generator-e3277a57d84f1650.d: src/main.rs src/generator.rs - -src/main.rs: -src/generator.rs: diff --git a/target/release/deps/autocfg-dd002dbccd824fda.d b/target/release/deps/autocfg-dd002dbccd824fda.d deleted file mode 100644 index 39a947c..0000000 --- a/target/release/deps/autocfg-dd002dbccd824fda.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/autocfg-dd002dbccd824fda.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libautocfg-dd002dbccd824fda.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/autocfg-dd002dbccd824fda.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/version.rs: diff --git a/target/release/deps/bitflags-64b739638b8c5e40.d b/target/release/deps/bitflags-64b739638b8c5e40.d deleted file mode 100644 index a89e00d..0000000 --- a/target/release/deps/bitflags-64b739638b8c5e40.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/bitflags-64b739638b8c5e40.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libbitflags-64b739638b8c5e40.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/bitflags-64b739638b8c5e40.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs: diff --git a/target/release/deps/cfg_if-9d0a835ca77085a7.d b/target/release/deps/cfg_if-9d0a835ca77085a7.d deleted file mode 100644 index 3a755d2..0000000 --- a/target/release/deps/cfg_if-9d0a835ca77085a7.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/cfg_if-9d0a835ca77085a7.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libcfg_if-9d0a835ca77085a7.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/cfg_if-9d0a835ca77085a7.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs: diff --git a/target/release/deps/copypasta-78046eab1f7041c4.d b/target/release/deps/copypasta-78046eab1f7041c4.d deleted file mode 100644 index d3572fa..0000000 --- a/target/release/deps/copypasta-78046eab1f7041c4.d +++ /dev/null @@ -1,11 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/copypasta-78046eab1f7041c4.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libcopypasta-78046eab1f7041c4.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/copypasta-78046eab1f7041c4.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/common.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/wayland_clipboard.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/x11_clipboard.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/copypasta-0.8.2/src/nop_clipboard.rs: diff --git a/target/release/deps/dlib-e22def41c9e2ad2d.d b/target/release/deps/dlib-e22def41c9e2ad2d.d deleted file mode 100644 index d1a1372..0000000 --- a/target/release/deps/dlib-e22def41c9e2ad2d.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/dlib-e22def41c9e2ad2d.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libdlib-e22def41c9e2ad2d.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/dlib-e22def41c9e2ad2d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dlib-0.5.2/src/lib.rs: diff --git a/target/release/deps/downcast_rs-66859557331581e9.d b/target/release/deps/downcast_rs-66859557331581e9.d deleted file mode 100644 index 4f92eec..0000000 --- a/target/release/deps/downcast_rs-66859557331581e9.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/downcast_rs-66859557331581e9.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libdowncast_rs-66859557331581e9.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/downcast_rs-66859557331581e9.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/downcast-rs-1.2.0/src/lib.rs: diff --git a/target/release/deps/gethostname-9e32a55b8dec5947.d b/target/release/deps/gethostname-9e32a55b8dec5947.d deleted file mode 100644 index 7a83f73..0000000 --- a/target/release/deps/gethostname-9e32a55b8dec5947.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/gethostname-9e32a55b8dec5947.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libgethostname-9e32a55b8dec5947.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/gethostname-9e32a55b8dec5947.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gethostname-0.2.3/src/lib.rs: diff --git a/target/release/deps/getrandom-608ca04594cc5313.d b/target/release/deps/getrandom-608ca04594cc5313.d deleted file mode 100644 index 1178481..0000000 --- a/target/release/deps/getrandom-608ca04594cc5313.d +++ /dev/null @@ -1,13 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/getrandom-608ca04594cc5313.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libgetrandom-608ca04594cc5313.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/getrandom-608ca04594cc5313.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/error_impls.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/util_libc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/use_file.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.10/src/linux_android.rs: diff --git a/target/release/deps/lazy_static-84c1fdcad92bf343.d b/target/release/deps/lazy_static-84c1fdcad92bf343.d deleted file mode 100644 index 6e3a243..0000000 --- a/target/release/deps/lazy_static-84c1fdcad92bf343.d +++ /dev/null @@ -1,8 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/lazy_static-84c1fdcad92bf343.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/liblazy_static-84c1fdcad92bf343.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/lazy_static-84c1fdcad92bf343.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/inline_lazy.rs: diff --git a/target/release/deps/libautocfg-dd002dbccd824fda.rlib b/target/release/deps/libautocfg-dd002dbccd824fda.rlib deleted file mode 100644 index 7117e9c..0000000 Binary files a/target/release/deps/libautocfg-dd002dbccd824fda.rlib and /dev/null differ diff --git a/target/release/deps/libautocfg-dd002dbccd824fda.rmeta b/target/release/deps/libautocfg-dd002dbccd824fda.rmeta deleted file mode 100644 index fb47112..0000000 Binary files a/target/release/deps/libautocfg-dd002dbccd824fda.rmeta and /dev/null differ diff --git a/target/release/deps/libbitflags-64b739638b8c5e40.rlib b/target/release/deps/libbitflags-64b739638b8c5e40.rlib deleted file mode 100644 index 4850a55..0000000 Binary files a/target/release/deps/libbitflags-64b739638b8c5e40.rlib and /dev/null differ diff --git a/target/release/deps/libbitflags-64b739638b8c5e40.rmeta b/target/release/deps/libbitflags-64b739638b8c5e40.rmeta deleted file mode 100644 index 1eca047..0000000 Binary files a/target/release/deps/libbitflags-64b739638b8c5e40.rmeta and /dev/null differ diff --git a/target/release/deps/libc-f53e97837426749d.d b/target/release/deps/libc-f53e97837426749d.d deleted file mode 100644 index 464a939..0000000 --- a/target/release/deps/libc-f53e97837426749d.d +++ /dev/null @@ -1,23 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libc-f53e97837426749d.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/liblibc-f53e97837426749d.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libc-f53e97837426749d.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/fixed_width_ints.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/gnu/align.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/arch/generic/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/align.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/linux_like/linux/non_exhaustive.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.147/src/unix/align.rs: diff --git a/target/release/deps/libcfg_if-9d0a835ca77085a7.rlib b/target/release/deps/libcfg_if-9d0a835ca77085a7.rlib deleted file mode 100644 index defd9f6..0000000 Binary files a/target/release/deps/libcfg_if-9d0a835ca77085a7.rlib and /dev/null differ diff --git a/target/release/deps/libcfg_if-9d0a835ca77085a7.rmeta b/target/release/deps/libcfg_if-9d0a835ca77085a7.rmeta deleted file mode 100644 index 752abc6..0000000 Binary files a/target/release/deps/libcfg_if-9d0a835ca77085a7.rmeta and /dev/null differ diff --git a/target/release/deps/libcopypasta-78046eab1f7041c4.rlib b/target/release/deps/libcopypasta-78046eab1f7041c4.rlib deleted file mode 100644 index 840f4f9..0000000 Binary files a/target/release/deps/libcopypasta-78046eab1f7041c4.rlib and /dev/null differ diff --git a/target/release/deps/libcopypasta-78046eab1f7041c4.rmeta b/target/release/deps/libcopypasta-78046eab1f7041c4.rmeta deleted file mode 100644 index afa575c..0000000 Binary files a/target/release/deps/libcopypasta-78046eab1f7041c4.rmeta and /dev/null differ diff --git a/target/release/deps/libdlib-e22def41c9e2ad2d.rlib b/target/release/deps/libdlib-e22def41c9e2ad2d.rlib deleted file mode 100644 index bcff936..0000000 Binary files a/target/release/deps/libdlib-e22def41c9e2ad2d.rlib and /dev/null differ diff --git a/target/release/deps/libdlib-e22def41c9e2ad2d.rmeta b/target/release/deps/libdlib-e22def41c9e2ad2d.rmeta deleted file mode 100644 index 2fb9cbf..0000000 Binary files a/target/release/deps/libdlib-e22def41c9e2ad2d.rmeta and /dev/null differ diff --git a/target/release/deps/libdowncast_rs-66859557331581e9.rlib b/target/release/deps/libdowncast_rs-66859557331581e9.rlib deleted file mode 100644 index 45a661a..0000000 Binary files a/target/release/deps/libdowncast_rs-66859557331581e9.rlib and /dev/null differ diff --git a/target/release/deps/libdowncast_rs-66859557331581e9.rmeta b/target/release/deps/libdowncast_rs-66859557331581e9.rmeta deleted file mode 100644 index 1227d07..0000000 Binary files a/target/release/deps/libdowncast_rs-66859557331581e9.rmeta and /dev/null differ diff --git a/target/release/deps/libgethostname-9e32a55b8dec5947.rlib b/target/release/deps/libgethostname-9e32a55b8dec5947.rlib deleted file mode 100644 index 3a9b320..0000000 Binary files a/target/release/deps/libgethostname-9e32a55b8dec5947.rlib and /dev/null differ diff --git a/target/release/deps/libgethostname-9e32a55b8dec5947.rmeta b/target/release/deps/libgethostname-9e32a55b8dec5947.rmeta deleted file mode 100644 index 1f1d5d1..0000000 Binary files a/target/release/deps/libgethostname-9e32a55b8dec5947.rmeta and /dev/null differ diff --git a/target/release/deps/libgetrandom-608ca04594cc5313.rlib b/target/release/deps/libgetrandom-608ca04594cc5313.rlib deleted file mode 100644 index ec441c9..0000000 Binary files a/target/release/deps/libgetrandom-608ca04594cc5313.rlib and /dev/null differ diff --git a/target/release/deps/libgetrandom-608ca04594cc5313.rmeta b/target/release/deps/libgetrandom-608ca04594cc5313.rmeta deleted file mode 100644 index 348a76c..0000000 Binary files a/target/release/deps/libgetrandom-608ca04594cc5313.rmeta and /dev/null differ diff --git a/target/release/deps/liblazy_static-84c1fdcad92bf343.rlib b/target/release/deps/liblazy_static-84c1fdcad92bf343.rlib deleted file mode 100644 index e91945d..0000000 Binary files a/target/release/deps/liblazy_static-84c1fdcad92bf343.rlib and /dev/null differ diff --git a/target/release/deps/liblazy_static-84c1fdcad92bf343.rmeta b/target/release/deps/liblazy_static-84c1fdcad92bf343.rmeta deleted file mode 100644 index b64752c..0000000 Binary files a/target/release/deps/liblazy_static-84c1fdcad92bf343.rmeta and /dev/null differ diff --git a/target/release/deps/liblibc-f53e97837426749d.rlib b/target/release/deps/liblibc-f53e97837426749d.rlib deleted file mode 100644 index dcd75d5..0000000 Binary files a/target/release/deps/liblibc-f53e97837426749d.rlib and /dev/null differ diff --git a/target/release/deps/liblibc-f53e97837426749d.rmeta b/target/release/deps/liblibc-f53e97837426749d.rmeta deleted file mode 100644 index e2bb6e9..0000000 Binary files a/target/release/deps/liblibc-f53e97837426749d.rmeta and /dev/null differ diff --git a/target/release/deps/liblibloading-5c3658050162765a.rlib b/target/release/deps/liblibloading-5c3658050162765a.rlib deleted file mode 100644 index 67e1d29..0000000 Binary files a/target/release/deps/liblibloading-5c3658050162765a.rlib and /dev/null differ diff --git a/target/release/deps/liblibloading-5c3658050162765a.rmeta b/target/release/deps/liblibloading-5c3658050162765a.rmeta deleted file mode 100644 index d3c20bb..0000000 Binary files a/target/release/deps/liblibloading-5c3658050162765a.rmeta and /dev/null differ diff --git a/target/release/deps/libloading-5c3658050162765a.d b/target/release/deps/libloading-5c3658050162765a.d deleted file mode 100644 index 5b56dbf..0000000 --- a/target/release/deps/libloading-5c3658050162765a.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libloading-5c3658050162765a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/liblibloading-5c3658050162765a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libloading-5c3658050162765a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/changelog.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/os/unix/consts.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libloading-0.8.0/src/safe.rs: diff --git a/target/release/deps/liblog-664036b4b2a032b1.rlib b/target/release/deps/liblog-664036b4b2a032b1.rlib deleted file mode 100644 index 0d13d5a..0000000 Binary files a/target/release/deps/liblog-664036b4b2a032b1.rlib and /dev/null differ diff --git a/target/release/deps/liblog-664036b4b2a032b1.rmeta b/target/release/deps/liblog-664036b4b2a032b1.rmeta deleted file mode 100644 index 7ee9755..0000000 Binary files a/target/release/deps/liblog-664036b4b2a032b1.rmeta and /dev/null differ diff --git a/target/release/deps/libmemchr-d7640fc5ce53fb0c.rlib b/target/release/deps/libmemchr-d7640fc5ce53fb0c.rlib deleted file mode 100644 index 6db8592..0000000 Binary files a/target/release/deps/libmemchr-d7640fc5ce53fb0c.rlib and /dev/null differ diff --git a/target/release/deps/libmemchr-d7640fc5ce53fb0c.rmeta b/target/release/deps/libmemchr-d7640fc5ce53fb0c.rmeta deleted file mode 100644 index 88c0fad..0000000 Binary files a/target/release/deps/libmemchr-d7640fc5ce53fb0c.rmeta and /dev/null differ diff --git a/target/release/deps/libmemmap2-e6ef43617b646b48.rlib b/target/release/deps/libmemmap2-e6ef43617b646b48.rlib deleted file mode 100644 index 7e5eeb8..0000000 Binary files a/target/release/deps/libmemmap2-e6ef43617b646b48.rlib and /dev/null differ diff --git a/target/release/deps/libmemmap2-e6ef43617b646b48.rmeta b/target/release/deps/libmemmap2-e6ef43617b646b48.rmeta deleted file mode 100644 index 8261d63..0000000 Binary files a/target/release/deps/libmemmap2-e6ef43617b646b48.rmeta and /dev/null differ diff --git a/target/release/deps/libmemoffset-53e7c27bdbad7b72.rlib b/target/release/deps/libmemoffset-53e7c27bdbad7b72.rlib deleted file mode 100644 index f367a89..0000000 Binary files a/target/release/deps/libmemoffset-53e7c27bdbad7b72.rlib and /dev/null differ diff --git a/target/release/deps/libmemoffset-53e7c27bdbad7b72.rmeta b/target/release/deps/libmemoffset-53e7c27bdbad7b72.rmeta deleted file mode 100644 index 989078c..0000000 Binary files a/target/release/deps/libmemoffset-53e7c27bdbad7b72.rmeta and /dev/null differ diff --git a/target/release/deps/libminimal_lexical-70aa839262278bf4.rlib b/target/release/deps/libminimal_lexical-70aa839262278bf4.rlib deleted file mode 100644 index 87af171..0000000 Binary files a/target/release/deps/libminimal_lexical-70aa839262278bf4.rlib and /dev/null differ diff --git a/target/release/deps/libminimal_lexical-70aa839262278bf4.rmeta b/target/release/deps/libminimal_lexical-70aa839262278bf4.rmeta deleted file mode 100644 index 4489ead..0000000 Binary files a/target/release/deps/libminimal_lexical-70aa839262278bf4.rmeta and /dev/null differ diff --git a/target/release/deps/libnix-3515cd386fed2aae.rlib b/target/release/deps/libnix-3515cd386fed2aae.rlib deleted file mode 100644 index 675af07..0000000 Binary files a/target/release/deps/libnix-3515cd386fed2aae.rlib and /dev/null differ diff --git a/target/release/deps/libnix-3515cd386fed2aae.rmeta b/target/release/deps/libnix-3515cd386fed2aae.rmeta deleted file mode 100644 index be6b30d..0000000 Binary files a/target/release/deps/libnix-3515cd386fed2aae.rmeta and /dev/null differ diff --git a/target/release/deps/libnom-fe065b00ae4de47a.rlib b/target/release/deps/libnom-fe065b00ae4de47a.rlib deleted file mode 100644 index aae9287..0000000 Binary files a/target/release/deps/libnom-fe065b00ae4de47a.rlib and /dev/null differ diff --git a/target/release/deps/libnom-fe065b00ae4de47a.rmeta b/target/release/deps/libnom-fe065b00ae4de47a.rmeta deleted file mode 100644 index e2b3f71..0000000 Binary files a/target/release/deps/libnom-fe065b00ae4de47a.rmeta and /dev/null differ diff --git a/target/release/deps/libonce_cell-03497bc7d36bfdaa.rlib b/target/release/deps/libonce_cell-03497bc7d36bfdaa.rlib deleted file mode 100644 index 54b6bfe..0000000 Binary files a/target/release/deps/libonce_cell-03497bc7d36bfdaa.rlib and /dev/null differ diff --git a/target/release/deps/libonce_cell-03497bc7d36bfdaa.rmeta b/target/release/deps/libonce_cell-03497bc7d36bfdaa.rmeta deleted file mode 100644 index b424182..0000000 Binary files a/target/release/deps/libonce_cell-03497bc7d36bfdaa.rmeta and /dev/null differ diff --git a/target/release/deps/libpkg_config-715abaf881bd0a50.rlib b/target/release/deps/libpkg_config-715abaf881bd0a50.rlib deleted file mode 100644 index 1abcd2c..0000000 Binary files a/target/release/deps/libpkg_config-715abaf881bd0a50.rlib and /dev/null differ diff --git a/target/release/deps/libpkg_config-715abaf881bd0a50.rmeta b/target/release/deps/libpkg_config-715abaf881bd0a50.rmeta deleted file mode 100644 index 4d3739a..0000000 Binary files a/target/release/deps/libpkg_config-715abaf881bd0a50.rmeta and /dev/null differ diff --git a/target/release/deps/libppv_lite86-437f603f74b6c4f3.rlib b/target/release/deps/libppv_lite86-437f603f74b6c4f3.rlib deleted file mode 100644 index d2e6b5e..0000000 Binary files a/target/release/deps/libppv_lite86-437f603f74b6c4f3.rlib and /dev/null differ diff --git a/target/release/deps/libppv_lite86-437f603f74b6c4f3.rmeta b/target/release/deps/libppv_lite86-437f603f74b6c4f3.rmeta deleted file mode 100644 index 73e4dac..0000000 Binary files a/target/release/deps/libppv_lite86-437f603f74b6c4f3.rmeta and /dev/null differ diff --git a/target/release/deps/libproc_macro2-9238c67c427d9278.rlib b/target/release/deps/libproc_macro2-9238c67c427d9278.rlib deleted file mode 100644 index a4761f3..0000000 Binary files a/target/release/deps/libproc_macro2-9238c67c427d9278.rlib and /dev/null differ diff --git a/target/release/deps/libproc_macro2-9238c67c427d9278.rmeta b/target/release/deps/libproc_macro2-9238c67c427d9278.rmeta deleted file mode 100644 index 47422f1..0000000 Binary files a/target/release/deps/libproc_macro2-9238c67c427d9278.rmeta and /dev/null differ diff --git a/target/release/deps/libquote-12cad9da97ce9f15.rlib b/target/release/deps/libquote-12cad9da97ce9f15.rlib deleted file mode 100644 index b2f63d2..0000000 Binary files a/target/release/deps/libquote-12cad9da97ce9f15.rlib and /dev/null differ diff --git a/target/release/deps/libquote-12cad9da97ce9f15.rmeta b/target/release/deps/libquote-12cad9da97ce9f15.rmeta deleted file mode 100644 index 0a88229..0000000 Binary files a/target/release/deps/libquote-12cad9da97ce9f15.rmeta and /dev/null differ diff --git a/target/release/deps/librand-8546ee8461177403.rlib b/target/release/deps/librand-8546ee8461177403.rlib deleted file mode 100644 index 3477d00..0000000 Binary files a/target/release/deps/librand-8546ee8461177403.rlib and /dev/null differ diff --git a/target/release/deps/librand-8546ee8461177403.rmeta b/target/release/deps/librand-8546ee8461177403.rmeta deleted file mode 100644 index 86b7d5a..0000000 Binary files a/target/release/deps/librand-8546ee8461177403.rmeta and /dev/null differ diff --git a/target/release/deps/librand_chacha-8863cd74b8d7665a.rlib b/target/release/deps/librand_chacha-8863cd74b8d7665a.rlib deleted file mode 100644 index b6794d4..0000000 Binary files a/target/release/deps/librand_chacha-8863cd74b8d7665a.rlib and /dev/null differ diff --git a/target/release/deps/librand_chacha-8863cd74b8d7665a.rmeta b/target/release/deps/librand_chacha-8863cd74b8d7665a.rmeta deleted file mode 100644 index f058fa6..0000000 Binary files a/target/release/deps/librand_chacha-8863cd74b8d7665a.rmeta and /dev/null differ diff --git a/target/release/deps/librand_core-812d693beb7349ec.rlib b/target/release/deps/librand_core-812d693beb7349ec.rlib deleted file mode 100644 index 54c5b73..0000000 Binary files a/target/release/deps/librand_core-812d693beb7349ec.rlib and /dev/null differ diff --git a/target/release/deps/librand_core-812d693beb7349ec.rmeta b/target/release/deps/librand_core-812d693beb7349ec.rmeta deleted file mode 100644 index 42c66b8..0000000 Binary files a/target/release/deps/librand_core-812d693beb7349ec.rmeta and /dev/null differ diff --git a/target/release/deps/libscoped_tls-10a47a489fdf16ed.rlib b/target/release/deps/libscoped_tls-10a47a489fdf16ed.rlib deleted file mode 100644 index d70acf5..0000000 Binary files a/target/release/deps/libscoped_tls-10a47a489fdf16ed.rlib and /dev/null differ diff --git a/target/release/deps/libscoped_tls-10a47a489fdf16ed.rmeta b/target/release/deps/libscoped_tls-10a47a489fdf16ed.rmeta deleted file mode 100644 index 0f8c6e9..0000000 Binary files a/target/release/deps/libscoped_tls-10a47a489fdf16ed.rmeta and /dev/null differ diff --git a/target/release/deps/libsmallvec-eb80c4e2392b13eb.rlib b/target/release/deps/libsmallvec-eb80c4e2392b13eb.rlib deleted file mode 100644 index c6110aa..0000000 Binary files a/target/release/deps/libsmallvec-eb80c4e2392b13eb.rlib and /dev/null differ diff --git a/target/release/deps/libsmallvec-eb80c4e2392b13eb.rmeta b/target/release/deps/libsmallvec-eb80c4e2392b13eb.rmeta deleted file mode 100644 index 5419528..0000000 Binary files a/target/release/deps/libsmallvec-eb80c4e2392b13eb.rmeta and /dev/null differ diff --git a/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rlib b/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rlib deleted file mode 100644 index 95e6539..0000000 Binary files a/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rlib and /dev/null differ diff --git a/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rmeta b/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rmeta deleted file mode 100644 index 8328439..0000000 Binary files a/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rmeta and /dev/null differ diff --git a/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rlib b/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rlib deleted file mode 100644 index b823166..0000000 Binary files a/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rlib and /dev/null differ diff --git a/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rmeta b/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rmeta deleted file mode 100644 index e96eeea..0000000 Binary files a/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rmeta and /dev/null differ diff --git a/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rlib b/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rlib deleted file mode 100644 index 826d045..0000000 Binary files a/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rlib and /dev/null differ diff --git a/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rmeta b/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rmeta deleted file mode 100644 index 9a8c092..0000000 Binary files a/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rmeta and /dev/null differ diff --git a/target/release/deps/libwayland_client-c1b085b95164ac69.rlib b/target/release/deps/libwayland_client-c1b085b95164ac69.rlib deleted file mode 100644 index 9891c87..0000000 Binary files a/target/release/deps/libwayland_client-c1b085b95164ac69.rlib and /dev/null differ diff --git a/target/release/deps/libwayland_client-c1b085b95164ac69.rmeta b/target/release/deps/libwayland_client-c1b085b95164ac69.rmeta deleted file mode 100644 index 506ac75..0000000 Binary files a/target/release/deps/libwayland_client-c1b085b95164ac69.rmeta and /dev/null differ diff --git a/target/release/deps/libwayland_commons-3541f118c90dec68.rlib b/target/release/deps/libwayland_commons-3541f118c90dec68.rlib deleted file mode 100644 index e7752f7..0000000 Binary files a/target/release/deps/libwayland_commons-3541f118c90dec68.rlib and /dev/null differ diff --git a/target/release/deps/libwayland_commons-3541f118c90dec68.rmeta b/target/release/deps/libwayland_commons-3541f118c90dec68.rmeta deleted file mode 100644 index bf4db90..0000000 Binary files a/target/release/deps/libwayland_commons-3541f118c90dec68.rmeta and /dev/null differ diff --git a/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rlib b/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rlib deleted file mode 100644 index 7dfe74e..0000000 Binary files a/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rlib and /dev/null differ diff --git a/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rmeta b/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rmeta deleted file mode 100644 index 2ba5610..0000000 Binary files a/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rmeta and /dev/null differ diff --git a/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rlib b/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rlib deleted file mode 100644 index cbd91c0..0000000 Binary files a/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rlib and /dev/null differ diff --git a/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rmeta b/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rmeta deleted file mode 100644 index 0659512..0000000 Binary files a/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rmeta and /dev/null differ diff --git a/target/release/deps/libwayland_scanner-8adea65e57289d38.rlib b/target/release/deps/libwayland_scanner-8adea65e57289d38.rlib deleted file mode 100644 index a236ab2..0000000 Binary files a/target/release/deps/libwayland_scanner-8adea65e57289d38.rlib and /dev/null differ diff --git a/target/release/deps/libwayland_scanner-8adea65e57289d38.rmeta b/target/release/deps/libwayland_scanner-8adea65e57289d38.rmeta deleted file mode 100644 index 914bf0b..0000000 Binary files a/target/release/deps/libwayland_scanner-8adea65e57289d38.rmeta and /dev/null differ diff --git a/target/release/deps/libwayland_sys-682a5e9255364583.rlib b/target/release/deps/libwayland_sys-682a5e9255364583.rlib deleted file mode 100644 index 566e810..0000000 Binary files a/target/release/deps/libwayland_sys-682a5e9255364583.rlib and /dev/null differ diff --git a/target/release/deps/libwayland_sys-682a5e9255364583.rmeta b/target/release/deps/libwayland_sys-682a5e9255364583.rmeta deleted file mode 100644 index ce8b7eb..0000000 Binary files a/target/release/deps/libwayland_sys-682a5e9255364583.rmeta and /dev/null differ diff --git a/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rlib b/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rlib deleted file mode 100644 index 08700f5..0000000 Binary files a/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rlib and /dev/null differ diff --git a/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rmeta b/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rmeta deleted file mode 100644 index 5c3f042..0000000 Binary files a/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rmeta and /dev/null differ diff --git a/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rlib b/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rlib deleted file mode 100644 index fc3e46a..0000000 Binary files a/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rlib and /dev/null differ diff --git a/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rmeta b/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rmeta deleted file mode 100644 index 32c975b..0000000 Binary files a/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rmeta and /dev/null differ diff --git a/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rlib b/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rlib deleted file mode 100644 index 763a323..0000000 Binary files a/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rlib and /dev/null differ diff --git a/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rmeta b/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rmeta deleted file mode 100644 index e5c99f5..0000000 Binary files a/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rmeta and /dev/null differ diff --git a/target/release/deps/libxcursor-00ef66e97a78b7aa.rlib b/target/release/deps/libxcursor-00ef66e97a78b7aa.rlib deleted file mode 100644 index 773c13b..0000000 Binary files a/target/release/deps/libxcursor-00ef66e97a78b7aa.rlib and /dev/null differ diff --git a/target/release/deps/libxcursor-00ef66e97a78b7aa.rmeta b/target/release/deps/libxcursor-00ef66e97a78b7aa.rmeta deleted file mode 100644 index 5a41d91..0000000 Binary files a/target/release/deps/libxcursor-00ef66e97a78b7aa.rmeta and /dev/null differ diff --git a/target/release/deps/libxml-06aa19ed188e2d84.rlib b/target/release/deps/libxml-06aa19ed188e2d84.rlib deleted file mode 100644 index a59772d..0000000 Binary files a/target/release/deps/libxml-06aa19ed188e2d84.rlib and /dev/null differ diff --git a/target/release/deps/libxml-06aa19ed188e2d84.rmeta b/target/release/deps/libxml-06aa19ed188e2d84.rmeta deleted file mode 100644 index 27ecfe4..0000000 Binary files a/target/release/deps/libxml-06aa19ed188e2d84.rmeta and /dev/null differ diff --git a/target/release/deps/log-664036b4b2a032b1.d b/target/release/deps/log-664036b4b2a032b1.d deleted file mode 100644 index 04c2269..0000000 --- a/target/release/deps/log-664036b4b2a032b1.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/log-664036b4b2a032b1.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/liblog-664036b4b2a032b1.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/log-664036b4b2a032b1.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.19/src/serde.rs: diff --git a/target/release/deps/memchr-d7640fc5ce53fb0c.d b/target/release/deps/memchr-d7640fc5ce53fb0c.d deleted file mode 100644 index 42238b7..0000000 --- a/target/release/deps/memchr-d7640fc5ce53fb0c.d +++ /dev/null @@ -1,32 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/memchr-d7640fc5ce53fb0c.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libmemchr-d7640fc5ce53fb0c.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/memchr-d7640fc5ce53fb0c.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/cow.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/fallback.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/iter.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/naive.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/avx.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memchr/x86/sse2.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/byte_frequencies.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/genericsimd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/fallback.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rabinkarp.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/rarebytes.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/twoway.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/vector.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/avx.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.5.0/src/memmem/x86/sse.rs: diff --git a/target/release/deps/memmap2-e6ef43617b646b48.d b/target/release/deps/memmap2-e6ef43617b646b48.d deleted file mode 100644 index 58e118e..0000000 --- a/target/release/deps/memmap2-e6ef43617b646b48.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/memmap2-e6ef43617b646b48.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libmemmap2-e6ef43617b646b48.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/memmap2-e6ef43617b646b48.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/unix.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memmap2-0.5.10/src/advice.rs: diff --git a/target/release/deps/memoffset-53e7c27bdbad7b72.d b/target/release/deps/memoffset-53e7c27bdbad7b72.d deleted file mode 100644 index 086871d..0000000 --- a/target/release/deps/memoffset-53e7c27bdbad7b72.d +++ /dev/null @@ -1,10 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/memoffset-53e7c27bdbad7b72.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libmemoffset-53e7c27bdbad7b72.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/memoffset-53e7c27bdbad7b72.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/raw_field.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/offset_of.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.6.5/src/span_of.rs: diff --git a/target/release/deps/minimal_lexical-70aa839262278bf4.d b/target/release/deps/minimal_lexical-70aa839262278bf4.d deleted file mode 100644 index 05229b6..0000000 --- a/target/release/deps/minimal_lexical-70aa839262278bf4.d +++ /dev/null @@ -1,25 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/minimal_lexical-70aa839262278bf4.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libminimal_lexical-70aa839262278bf4.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/minimal_lexical-70aa839262278bf4.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs: diff --git a/target/release/deps/nix-3515cd386fed2aae.d b/target/release/deps/nix-3515cd386fed2aae.d deleted file mode 100644 index 3801015..0000000 --- a/target/release/deps/nix-3515cd386fed2aae.d +++ /dev/null @@ -1,60 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/nix-3515cd386fed2aae.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libnix-3515cd386fed2aae.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/nix-3515cd386fed2aae.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/errno.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/fcntl.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ioctl/linux.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signal.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sysinfo.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/time.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/unistd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/dir.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/env.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/features.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ifaddrs.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/net/if_.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/kmod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mount/linux.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/mqueue.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/poll.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/pty.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sched.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/aio.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/epoll.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/eventfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/memfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/mman.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/personality.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/pthread.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/ptrace/linux.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/quota.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/reboot.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/resource.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/select.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/sendfile.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/signalfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/addr.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/socket/sockopt.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/stat.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statfs.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/statvfs.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/termios.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/uio.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/utsname.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/wait.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/inotify.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timerfd.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/sys/timer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/time.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.24.3/src/ucontext.rs: diff --git a/target/release/deps/nom-fe065b00ae4de47a.d b/target/release/deps/nom-fe065b00ae4de47a.d deleted file mode 100644 index cc81d05..0000000 --- a/target/release/deps/nom-fe065b00ae4de47a.d +++ /dev/null @@ -1,28 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/nom-fe065b00ae4de47a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libnom-fe065b00ae4de47a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/nom-fe065b00ae4de47a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs: diff --git a/target/release/deps/once_cell-03497bc7d36bfdaa.d b/target/release/deps/once_cell-03497bc7d36bfdaa.d deleted file mode 100644 index 8ecd4ed..0000000 --- a/target/release/deps/once_cell-03497bc7d36bfdaa.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/once_cell-03497bc7d36bfdaa.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libonce_cell-03497bc7d36bfdaa.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/once_cell-03497bc7d36bfdaa.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/imp_std.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.18.0/src/race.rs: diff --git a/target/release/deps/pkg_config-715abaf881bd0a50.d b/target/release/deps/pkg_config-715abaf881bd0a50.d deleted file mode 100644 index 536e362..0000000 --- a/target/release/deps/pkg_config-715abaf881bd0a50.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/pkg_config-715abaf881bd0a50.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libpkg_config-715abaf881bd0a50.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/pkg_config-715abaf881bd0a50.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.27/src/lib.rs: diff --git a/target/release/deps/ppv_lite86-437f603f74b6c4f3.d b/target/release/deps/ppv_lite86-437f603f74b6c4f3.d deleted file mode 100644 index 6d95389..0000000 --- a/target/release/deps/ppv_lite86-437f603f74b6c4f3.d +++ /dev/null @@ -1,11 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/ppv_lite86-437f603f74b6c4f3.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libppv_lite86-437f603f74b6c4f3.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/ppv_lite86-437f603f74b6c4f3.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/soft.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/types.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/x86_64/sse2.rs: diff --git a/target/release/deps/proc_macro2-9238c67c427d9278.d b/target/release/deps/proc_macro2-9238c67c427d9278.d deleted file mode 100644 index 9748a6c..0000000 --- a/target/release/deps/proc_macro2-9238c67c427d9278.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/proc_macro2-9238c67c427d9278.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libproc_macro2-9238c67c427d9278.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/proc_macro2-9238c67c427d9278.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/marker.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/parse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/rcvec.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/detection.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/fallback.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/extra.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.66/src/wrapper.rs: diff --git a/target/release/deps/quote-12cad9da97ce9f15.d b/target/release/deps/quote-12cad9da97ce9f15.d deleted file mode 100644 index e02454f..0000000 --- a/target/release/deps/quote-12cad9da97ce9f15.d +++ /dev/null @@ -1,13 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/quote-12cad9da97ce9f15.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libquote-12cad9da97ce9f15.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/quote-12cad9da97ce9f15.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ext.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/format.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/ident_fragment.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/to_tokens.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/runtime.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.32/src/spanned.rs: diff --git a/target/release/deps/rand-8546ee8461177403.d b/target/release/deps/rand-8546ee8461177403.d deleted file mode 100644 index 52727d6..0000000 --- a/target/release/deps/rand-8546ee8461177403.d +++ /dev/null @@ -1,29 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/rand-8546ee8461177403.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/librand-8546ee8461177403.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/rand-8546ee8461177403.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/bernoulli.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/distribution.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/float.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/integer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/other.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/slice.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted_index.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/uniform.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/distributions/weighted.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/prelude.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rng.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/read.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/adapter/reseeding.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/mock.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/std.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/rngs/thread.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/seq/index.rs: diff --git a/target/release/deps/rand_chacha-8863cd74b8d7665a.d b/target/release/deps/rand_chacha-8863cd74b8d7665a.d deleted file mode 100644 index d6dfb35..0000000 --- a/target/release/deps/rand_chacha-8863cd74b8d7665a.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/rand_chacha-8863cd74b8d7665a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/librand_chacha-8863cd74b8d7665a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/rand_chacha-8863cd74b8d7665a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/chacha.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/guts.rs: diff --git a/target/release/deps/rand_core-812d693beb7349ec.d b/target/release/deps/rand_core-812d693beb7349ec.d deleted file mode 100644 index 729f590..0000000 --- a/target/release/deps/rand_core-812d693beb7349ec.d +++ /dev/null @@ -1,12 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/rand_core-812d693beb7349ec.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/librand_core-812d693beb7349ec.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/rand_core-812d693beb7349ec.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/block.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/impls.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/le.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs: diff --git a/target/release/deps/scoped_tls-10a47a489fdf16ed.d b/target/release/deps/scoped_tls-10a47a489fdf16ed.d deleted file mode 100644 index 15b1f40..0000000 --- a/target/release/deps/scoped_tls-10a47a489fdf16ed.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/scoped_tls-10a47a489fdf16ed.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libscoped_tls-10a47a489fdf16ed.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/scoped_tls-10a47a489fdf16ed.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs: diff --git a/target/release/deps/smallvec-eb80c4e2392b13eb.d b/target/release/deps/smallvec-eb80c4e2392b13eb.d deleted file mode 100644 index 354b1a0..0000000 --- a/target/release/deps/smallvec-eb80c4e2392b13eb.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/smallvec-eb80c4e2392b13eb.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libsmallvec-eb80c4e2392b13eb.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/smallvec-eb80c4e2392b13eb.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.11.0/src/lib.rs: diff --git a/target/release/deps/smithay_client_toolkit-c175afe48df4f755.d b/target/release/deps/smithay_client_toolkit-c175afe48df4f755.d deleted file mode 100644 index ef45501..0000000 --- a/target/release/deps/smithay_client_toolkit-c175afe48df4f755.d +++ /dev/null @@ -1,34 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/smithay_client_toolkit-c175afe48df4f755.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libsmithay_client_toolkit-c175afe48df4f755.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/smithay_client_toolkit-c175afe48df4f755.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/device.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/offer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/data_device/source.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/environment.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/lazy_global.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/output.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/device.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/offer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/primary_selection/source.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/state.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/pointer/theme.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/wl.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/xdg.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shell/zxdg.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/shm/mempool.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/window/fallback_frame.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/surface.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/ffi.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-client-toolkit-0.16.0/src/seat/keyboard/keysyms.rs: diff --git a/target/release/deps/smithay_clipboard-1e179346fd1118a0.d b/target/release/deps/smithay_clipboard-1e179346fd1118a0.d deleted file mode 100644 index 278b0c4..0000000 --- a/target/release/deps/smithay_clipboard-1e179346fd1118a0.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/smithay_clipboard-1e179346fd1118a0.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libsmithay_clipboard-1e179346fd1118a0.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/smithay_clipboard-1e179346fd1118a0.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/env.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/mime.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/dispatch_data.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/handlers.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/seat_data.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smithay-clipboard-0.6.6/src/worker/sleep_amount_tracker.rs: diff --git a/target/release/deps/unicode_ident-f2b1f8f207a97b82.d b/target/release/deps/unicode_ident-f2b1f8f207a97b82.d deleted file mode 100644 index 35bad9c..0000000 --- a/target/release/deps/unicode_ident-f2b1f8f207a97b82.d +++ /dev/null @@ -1,8 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/unicode_ident-f2b1f8f207a97b82.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libunicode_ident-f2b1f8f207a97b82.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/unicode_ident-f2b1f8f207a97b82.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.11/src/tables.rs: diff --git a/target/release/deps/wayland_client-c1b085b95164ac69.d b/target/release/deps/wayland_client-c1b085b95164ac69.d deleted file mode 100644 index cbcdd72..0000000 --- a/target/release/deps/wayland_client-c1b085b95164ac69.d +++ /dev/null @@ -1,18 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_client-c1b085b95164ac69.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libwayland_client-c1b085b95164ac69.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_client-c1b085b95164ac69.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/display.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/event_queue.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/globals.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/proxy.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/display.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/event_queue.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-client-0.29.5/src/native_lib/proxy.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-337aa938d371d658/out/wayland_api.rs: - -# env-dep:OUT_DIR=/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-client-337aa938d371d658/out diff --git a/target/release/deps/wayland_commons-3541f118c90dec68.d b/target/release/deps/wayland_commons-3541f118c90dec68.d deleted file mode 100644 index 8050184..0000000 --- a/target/release/deps/wayland_commons-3541f118c90dec68.d +++ /dev/null @@ -1,13 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_commons-3541f118c90dec68.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libwayland_commons-3541f118c90dec68.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_commons-3541f118c90dec68.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/debug.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/filter.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/map.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/socket.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/user_data.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-commons-0.29.5/src/wire.rs: diff --git a/target/release/deps/wayland_cursor-a26a1de45be57dcf.d b/target/release/deps/wayland_cursor-a26a1de45be57dcf.d deleted file mode 100644 index c0ec085..0000000 --- a/target/release/deps/wayland_cursor-a26a1de45be57dcf.d +++ /dev/null @@ -1,7 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_cursor-a26a1de45be57dcf.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libwayland_cursor-a26a1de45be57dcf.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_cursor-a26a1de45be57dcf.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-cursor-0.29.5/src/lib.rs: diff --git a/target/release/deps/wayland_protocols-ab9978d0903a2b4a.d b/target/release/deps/wayland_protocols-ab9978d0903a2b4a.d deleted file mode 100644 index 8c19a35..0000000 --- a/target/release/deps/wayland_protocols-ab9978d0903a2b4a.d +++ /dev/null @@ -1,52 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_protocols-ab9978d0903a2b4a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libwayland_protocols-ab9978d0903a2b4a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_protocols-ab9978d0903a2b4a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs /home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/protocol_macro.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/unstable.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/misc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/wlr.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-protocols-0.29.5/src/stable.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/fullscreen-shell-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/idle-inhibit-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-timestamps-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/keyboard-shortcuts-inhibit-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-dmabuf-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/linux-explicit-synchronization-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-constraints-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/pointer-gestures-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/primary-selection-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/relative-pointer-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/tablet-v2_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/text-input-v3_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-decoration-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-foreign-v2_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-output-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v5_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell-v6_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xwayland-keyboard-grab-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/gtk-primary-selection_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/input-method-unstable-v2_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/server-decoration_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-data-control-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-export-dmabuf-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-foreign-toplevel-management-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-gamma-control-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-input-inhibitor-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-layer-shell-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-management-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-output-power-management-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-screencopy-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/wlr-virtual-pointer-v1_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/presentation-time_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/xdg-shell_client_api.rs: -/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out/viewporter_client_api.rs: - -# env-dep:OUT_DIR=/home/mohuva/Documents/Fast_Password_Generator/target/release/build/wayland-protocols-334c48720a6100cb/out diff --git a/target/release/deps/wayland_scanner-8adea65e57289d38.d b/target/release/deps/wayland_scanner-8adea65e57289d38.d deleted file mode 100644 index fe96992..0000000 --- a/target/release/deps/wayland_scanner-8adea65e57289d38.d +++ /dev/null @@ -1,14 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_scanner-8adea65e57289d38.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libwayland_scanner-8adea65e57289d38.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_scanner-8adea65e57289d38.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_code_gen.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/c_interface_gen.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/common_gen.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/parse.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/protocol.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/side.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-scanner-0.29.5/src/util.rs: diff --git a/target/release/deps/wayland_sys-682a5e9255364583.d b/target/release/deps/wayland_sys-682a5e9255364583.d deleted file mode 100644 index 42a6a50..0000000 --- a/target/release/deps/wayland_sys-682a5e9255364583.d +++ /dev/null @@ -1,10 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_sys-682a5e9255364583.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libwayland_sys-682a5e9255364583.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/wayland_sys-682a5e9255364583.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/common.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/client.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-sys-0.29.5/src/server.rs: diff --git a/target/release/deps/x11_clipboard-6c2c5d6b9840ef53.d b/target/release/deps/x11_clipboard-6c2c5d6b9840ef53.d deleted file mode 100644 index f1ff6e4..0000000 --- a/target/release/deps/x11_clipboard-6c2c5d6b9840ef53.d +++ /dev/null @@ -1,9 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/x11_clipboard-6c2c5d6b9840ef53.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libx11_clipboard-6c2c5d6b9840ef53.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/x11_clipboard-6c2c5d6b9840ef53.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11-clipboard-0.7.1/src/run.rs: diff --git a/target/release/deps/x11rb-0c57bb3a1e1cc07a.d b/target/release/deps/x11rb-0c57bb3a1e1cc07a.d deleted file mode 100644 index 0b1600e..0000000 --- a/target/release/deps/x11rb-0c57bb3a1e1cc07a.d +++ /dev/null @@ -1,28 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/x11rb-0c57bb3a1e1cc07a.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libx11rb-0c57bb3a1e1cc07a.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/x11rb-0c57bb3a1e1cc07a.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/event_loop_integration.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/x11_utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/connection.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/cookie.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/errors.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/extension_manager.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/properties.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/packet_reader.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/stream.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/rust_connection/write_buffer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/wrapper.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xproto.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/bigreq.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/ge.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/render.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/shape.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xc_misc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-0.10.1/src/protocol/xfixes.rs: diff --git a/target/release/deps/x11rb_protocol-f090899d7b2eb42b.d b/target/release/deps/x11rb_protocol-f090899d7b2eb42b.d deleted file mode 100644 index ced9dbd..0000000 --- a/target/release/deps/x11rb_protocol-f090899d7b2eb42b.d +++ /dev/null @@ -1,26 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/x11rb_protocol-f090899d7b2eb42b.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libx11rb_protocol-f090899d7b2eb42b.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/x11rb_protocol-f090899d7b2eb42b.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connect.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/connection/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/x11_utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/errors.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/id_allocator.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/packet_reader.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/parse_display/connect_instruction.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/utils.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/wrapper.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/xauth.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/mod.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xproto.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/bigreq.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/ge.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/render.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/shape.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xc_misc.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/x11rb-protocol-0.10.0/src/protocol/xfixes.rs: diff --git a/target/release/deps/xcursor-00ef66e97a78b7aa.d b/target/release/deps/xcursor-00ef66e97a78b7aa.d deleted file mode 100644 index 85f4f58..0000000 --- a/target/release/deps/xcursor-00ef66e97a78b7aa.d +++ /dev/null @@ -1,8 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/xcursor-00ef66e97a78b7aa.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libxcursor-00ef66e97a78b7aa.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/xcursor-00ef66e97a78b7aa.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xcursor-0.3.4/src/parser.rs: diff --git a/target/release/deps/xml-06aa19ed188e2d84.d b/target/release/deps/xml-06aa19ed188e2d84.d deleted file mode 100644 index f881a2a..0000000 --- a/target/release/deps/xml-06aa19ed188e2d84.d +++ /dev/null @@ -1,34 +0,0 @@ -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/xml-06aa19ed188e2d84.rmeta: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/libxml-06aa19ed188e2d84.rlib: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs - -/home/mohuva/Documents/Fast_Password_Generator/target/release/deps/xml-06aa19ed188e2d84.d: /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs /home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs - -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/lib.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/attribute.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/common.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/escape.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/macros.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/name.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/namespace.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/config.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/events.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/lexer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_cdata.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_closing_tag_name.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_comment.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_declaration.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_doctype.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_opening_tag.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_processing_instruction.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/inside_reference.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/parser/outside_tag.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/indexset.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/reader/error.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/util.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/config.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/emitter.rs: -/home/mohuva/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xml-rs-0.8.16/src/writer/events.rs: