KAS GUI

Test Status kas-text Docs Minimum rustc version

KAS, the toolKit Abstraction System, is a general-purpose GUI toolkit. KAS's design provides:

Examples

For details, see the Examples README.

Gallery Splitter Mandlebrot

Features

Missing features

These aren't here yet!

Widgets

Below are some highlights. Find the full list in the docs.

Installation and dependencies

Rust

KAS 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:

WebGPU

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.

HarfBuzz (optional)

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.

Quick-start

Install dependencies:

```sh

For Ubuntu:

sudo apt-get install build-essential git libxcb-shape0-dev libxcb-xfixes0-dev libharfbuzz-dev

For Fedora:

glslc is optional; see kas-wgpu/README.md

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

Crates

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

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