KAS GUI

home old-home Build Status Docs Minimum rustc version

KAS, the toolKit Abstraction System, is a general-purpose GUI toolkit.

Examples

For details, see the Examples README.

Calculator Dynamic Clock Gallery Splitter Mandlebrot

Goals and status

Goals of the project and current status are:

Rustc version

KAS is compatible with stable rustc. Using nightly Rust is advantageous:

Code stability

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.

Features

Missing features

These aren't here yet!

Installation and dependencies

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

Crates

A 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.

Feature flags

The kas crate has the following feature flags:

Copyright and Licence

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