KAS, the toolKit Abstraction System, is a general-purpose GUI toolkit. KAS's design provides:
For details, see the Examples README.
These aren't here yet!
Below are some highlights. Find the full list in the docs.
EditBox
ScrollRegion
with ScrollBar
sList
and Splitter
with drag handlesMenuBar
featuring all expected input methodsRadioBox
with broadcast communication via a group identifierMessageBox
dialogKAS requires [Rust] version 1.45 or greater. All examples are compatible with the stable channel, but using the nightly channel does have a couple of advantages:
cargo doc
requires nightly for linksCurrently, KAS's only drawing method is [WebGPU] which requires DirectX 11/12, Vulkan or Metal. In the future, there may be support for OpenGL and software rendering.
This is only needed if the shaping
feature is enabled. On my system, the
following libraries are used: libharfbuzz.so.0
, libglib-2.0.so.0
,
libgraphite2.so.3
and libpcre.so.1
.
Install dependencies:
```sh
sudo apt-get install build-essential git libxcb-shape0-dev libxcb-xfixes0-dev libharfbuzz-dev
sudo dnf install libxcb-devel harfbuzz-devel glslc ```
Next, clone the repository and run the examples as follows:
git clone https://github.com/kas-gui/kas.git
cd kas
cargo test
cd kas-wgpu
cargo build --examples
cargo run --example gallery
cargo run --example layout
cargo run --example mandlebrot
kas
: the core of the GUI library, providing most interfaces and logic
along with a selection of common widgetskas-macros
: a helper crate for proc macros (do not use directly)kas-text
]: font loading, text layout, text navigationkas-theme
: theming support for KAS (API plus two themes; organisation may change)kas-wgpu
: provides windowing via [winit
] and rendering via [WebGPU]kas-widgets
: (unrealised) - providing extra widgetsA user depends on kas
to write their complete UI specification, selects a
theme from kas-theme
, instances a kas_wgpu::Toolkit
, adds the window(s),
and runs the UI.
The kas
crate has the following feature flags:
shaping
: enables complex glyph forming for languages such as Arabic.
This requires that the HarfBuzz library is installed.internal_doc
: turns on some extra documentation intended for internal
usage but not for end users. (This only affects generated documentation.)winit
: adds compatibility code for winit's event and geometry types.
This is currently the only functional windowing/event library.stack_dst
: some compatibility impls (see kas-theme
's documentation)The COPYRIGHT file includes a list of contributors who claim copyright on this project. This list may be incomplete; new contributors may optionally add themselves to this list.
The KAS library is published under the terms of the Apache License, Version 2.0. You may obtain a copy of this licence from the LICENSE file or on the following webpage: https://www.apache.org/licenses/LICENSE-2.0