├── .clang-format ├── .gitignore ├── .gitmodules ├── Cargo.toml ├── LICENSE ├── README.md ├── bind.sh ├── examples └── simple.rs ├── floui-sys ├── .gitignore ├── CMakeLists.txt ├── Cargo.toml ├── README.md ├── build.rs └── src │ ├── floui.cpp │ ├── floui.h │ ├── floui.mm │ ├── floui.rs │ └── lib.rs └── src ├── enums.rs ├── lib.rs ├── prelude.rs └── widgets ├── button.rs ├── misc.rs ├── mod.rs ├── stack.rs └── text.rs /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .DS_Store 4 | temp.c -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/README.md -------------------------------------------------------------------------------- /bind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/bind.sh -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /floui-sys/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .DS_Store 4 | temp.c -------------------------------------------------------------------------------- /floui-sys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/CMakeLists.txt -------------------------------------------------------------------------------- /floui-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/Cargo.toml -------------------------------------------------------------------------------- /floui-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/README.md -------------------------------------------------------------------------------- /floui-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/build.rs -------------------------------------------------------------------------------- /floui-sys/src/floui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/src/floui.cpp -------------------------------------------------------------------------------- /floui-sys/src/floui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/src/floui.h -------------------------------------------------------------------------------- /floui-sys/src/floui.mm: -------------------------------------------------------------------------------- 1 | #include "floui.cpp" 2 | -------------------------------------------------------------------------------- /floui-sys/src/floui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/src/floui.rs -------------------------------------------------------------------------------- /floui-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/floui-sys/src/lib.rs -------------------------------------------------------------------------------- /src/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/enums.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/prelude.rs -------------------------------------------------------------------------------- /src/widgets/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/widgets/button.rs -------------------------------------------------------------------------------- /src/widgets/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/widgets/misc.rs -------------------------------------------------------------------------------- /src/widgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/widgets/mod.rs -------------------------------------------------------------------------------- /src/widgets/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/widgets/stack.rs -------------------------------------------------------------------------------- /src/widgets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoAlyousef/floui-rs/HEAD/src/widgets/text.rs --------------------------------------------------------------------------------