KAS is the toolKit Abstraction System. It comprises:
kas
: the core of the GUI library, providing core interfaces and types,
standard widgets, widget layout and event handlingkas_macros
: a helper crate providing the procedural macros used by kas
kas_wgpu
: an interface to [winit
] and [wgpu
], providing windowing and
hardware-accelerated renderingA 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.
Several examples are available on the kas_wgpu
sub-crate. Try e.g.
cd kas-wgpu
cargo run --example calculator
KAS uses cross-platform libraries, allowing it to target all major platforms. Current development & test targets:
It should work fine on other platforms, although this is largely untested. Feedback & fixes welcome.
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.
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:
kas_gtk
used GTK to do the rendering; in practice this meant using GTK
for event handling and widget layout too, and made building the desired API
around GTK very difficult; an additional issue with this approach is that
GTK libs can be difficult to install on some platformskas_rgx
used RGX as a rendering API allowing custom widget rendering
with a "mid-level graphics API"; ultimately this proved less flexible than
desired while also lacking high-level drawing routines (e.g. pretty frames)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.
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.
The
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