KAS is a widget-first GUI toolkit:
gallery
example: 333M (debug),
38M (debug + strip), 20M (release), 12M (release + strip).
Note that these binaries are statically linked, as is the norm for Rust.
Some improvements may be possible, e.g. disabling features such as shaping
and image
or replacing the rendering backend.See the examples
directory and
kas-gui/7guis.
Precompiled example apps can be downloaded as follows:
examples-*
artifactsKAS uses a widget-first design: widgets are persistent and retain state; data must be pushed into widgets. Many modern UIs are data-first: widgets are built per-frame over a single persistent data object. There are significant trade-offs of a widget-first design:
kas
is a meta-package; most of the time this is the only one you need to
use directlykas-macros
: a helper crate for proc macroskas-core
provides most interfaces and logic concerning widgets (event
handling, layout, draw API, geometry types)kas-widgets
: the standard widget librarykas-theme
: theming support for KAS (API, two themes, config support)kas-wgpu
: provides windowing via [winit] and rendering via [WGPU]kas-dylib
: support for dynamic linkingAt this point in time, kas-wgpu
is the only windowing/rendering implementation
and kas-theme
the only theme (high-level drawing) implementation, thus kas
uses these crates by default, though they are optional.
The kas
crate enables most important features by default, excepting those
requiring nightly rustc
. Other crates enable fewer features by defualt.
The following non-default features of kas
are highlighted:
dynamic
: enable dynamic linking for kas
(see
Faster builds)internal_doc
: turns on some extra documentation intended for internal
usage but not for end users. (This only affects generated documentation.)nightly
: enables the less problematic unstable featuresmin_spec
(enabled by nightly
): use min_specialization
for some visual
improvements: scrolled regions are drawn under scroll bars,
underlines on check-box accelerator keys show with the Alt key.spec
: use specialization
to enable TryFormat
For full documentation of feature flags, see the Cargo.toml
.
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