├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── rustfmt.toml ├── yatta-core ├── Cargo.toml └── src │ └── lib.rs ├── yatta ├── Cargo.toml ├── bindings │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── lib.rs └── src │ ├── desktop.rs │ ├── main.rs │ ├── message_loop.rs │ ├── rect.rs │ ├── window.rs │ └── windows_event.rs └── yattac ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | yatta.ahk 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /yatta-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta-core/Cargo.toml -------------------------------------------------------------------------------- /yatta-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta-core/src/lib.rs -------------------------------------------------------------------------------- /yatta/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/Cargo.toml -------------------------------------------------------------------------------- /yatta/bindings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/bindings/Cargo.toml -------------------------------------------------------------------------------- /yatta/bindings/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/bindings/build.rs -------------------------------------------------------------------------------- /yatta/bindings/src/lib.rs: -------------------------------------------------------------------------------- 1 | ::windows::include_bindings!(); 2 | -------------------------------------------------------------------------------- /yatta/src/desktop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/src/desktop.rs -------------------------------------------------------------------------------- /yatta/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/src/main.rs -------------------------------------------------------------------------------- /yatta/src/message_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/src/message_loop.rs -------------------------------------------------------------------------------- /yatta/src/rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/src/rect.rs -------------------------------------------------------------------------------- /yatta/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/src/window.rs -------------------------------------------------------------------------------- /yatta/src/windows_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yatta/src/windows_event.rs -------------------------------------------------------------------------------- /yattac/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yattac/Cargo.toml -------------------------------------------------------------------------------- /yattac/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LGUG2Z/yatta/HEAD/yattac/src/main.rs --------------------------------------------------------------------------------