KAS GUI

home old-home

KAS is the toolKit Abstraction System. It comprises:

A user depends on kas to write their complete UI specification, and then pastes a few lines of code to initialise kas_wgpu::Toolkit, add the window and run the UI.

Examples

Several examples are available on the kas_wgpu sub-crate. Try e.g.

cd kas-wgpu cargo run --example calculator

Calculator Dynamic Theme Gallery Layout

Installation and Testing

On Linux, ensure that CMake is installed. On Linux this should be available in your package manager. This is required by the GLSL compiler. On Windows 10 it does not need to be installed explicitly.

Next, clone the repository and run the examples as follows:

git clone https://github.com/dhardy/kas.git cd kas cargo test cd kas-wgpu cargo test cargo run --example gallery

Cross-platform

KAS uses cross-platform libraries, allowing it to target all major platforms. Current development & test targets:

Graphics requirement

KAS uses WebGPU for rendering. This currently supports DX11, DX12, Vulkan and Metal, but not OpenGL or unaccelerated rendering. See issue 33.

Features

Data model and specification

KAS is in part motivated by some of the common limitations of UIs:

KAS takes some inspiration from Qt (but using macros in place of language extensions), in that custom widget structs may combine user state and UI components. Most of KAS is inspired by finding a maximally-type-safe, flexible "Rustic" solution to the problem at hand.

Drawing and themes

One of the key problems to solve in a UI is the question of how are widgets drawn? Already, multiple approaches have been tried and abandoned:

Thus, KAS has now moved to direct use of wgpu and wgpu_glyph for rendering, providing its own high-level abstractions (the Draw* traits provided by kas and kas_wgpu). This still needs fleshing out (more drawing primitives, a better text API, and support for custom pipes & shaders), but looks to be a viable path forward.

Themes

A "theme" provides widget sizing and drawing implementations over the above Draw* traits as well as a choice of fonts (and eventually icons).

Currently a single SampleTheme is provided, along with a custom theme example.

Copyright and Licence

The 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 file or on the following webpage: https://www.apache.org/licenses/LICENSE-2.0