KAS, the toolKit Abstraction System, is a general-purpose GUI toolkit.
For details, see the Examples README.
Goals of the project and current status are:
KAS is compatible with stable rustc. Using nightly Rust is advantageous:
make_widget!
macro will require nightly Rust until the
proc_macro_hygiene
feature is complete.
Usage of this macro is optional; most examples do so for convenience.KAS is young and incomplete, yet has a reasonably robust core framework. Users should expect breaking changes when upgrading from one release to the next.
The draw APIs saw a big overhaul in version 0.3, but may well need further revision. Text APIs are currently just placeholders. There is no translation support, persistent configuration or desktop integration.
The widget traits, macros and, event model have seen significant changes in 0.4. These will be extended in the future but hopefully only minor breaking changes will be needed.
These aren't here yet!
Currently, 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.
If you haven't already, install Rust, including
the nightly channel (rustup toolchain install nightly
). Either make nightly
the default (rustup default nightly
) or use cargo +nightly ...
below.
A few other dependencies may require installation, depending on the system. On Ubuntu:
sh
sudo apt-get install build-essential git cmake libxcb-shape0-dev libxcb-xfixes0-dev
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 test
cargo run --example gallery
kas
: the core of the GUI library, providing most interfaces and logic
along with a selection of common widgetskas-macros
: a helper crate providing the procedural macros used by kas
kas-theme
: theming support for KAS (API plus a couple of standard themes,
at least for now)kas-wgpu
: provides windowing via [winit
] and rendering via [wgpu
]kas-widgets
: (unrealised) - providing extra widgetskas-graphs
: (unrealised) - plotting widgetsA user depends on kas
to write their complete UI specification, and then
pastes a few lines of code to initialise kas_wgpu::Toolkit
, choose a theme,
add window(s), and run the UI.
The kas
crate has the following feature flags:
internal_doc
: turns on some extra documentation intended for internal
usage but not for end users. (This only affects documentation.)nightly
: enables new_uninit
feature to support cloning of
Box<dyn Handler>
objectswinit
: 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