Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.
/ limn Public archive

Experimental cross platform GUI library

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

christolliday/limn

Repository files navigation

Limn

Build Status Build status

Documentation

WARNING: Has primarily been tested on X11, serious bugs exist and all APIs are likely to change. Code is underdocumented and prototype quality, you probably don't want to use this (yet).

An early stage, experimental, cross platform GUI library written in Rust.

Limn uses webrender for rendering, cassowary for layout, and winit/glutin for window handling.

Motivation

To improve the state of GUI programming in Rust, by providing a relatively low level, high performance library for constructing GUIs, with a focus on composability, extensibility and minimal boilerplate.

Limn aims to have a relatively small, easy to learn core API for defining components, intended as a DOM like API but with fewer implicit costs. For this reason Limn at its core is implemented as a retained, mutable widget tree rather than modelling UI state as a function of application state, which could eventually be implemented on top, with diffing and a virtual DOM like tree representation.

The long term goal is to make it possible to use components written in multiple paradigms and multiple languages in a single application with a common API. So that for instance, you could use compiled Rust for optimized primitive components alongside an interpreted language with functional component definitions (JSX) when possible, or just for top level components or prototyping.

For now however, the focus is on making the core (layout, styling etc.) stable, performant and reliable.

Limn also aims to fill some gaps in the Rust GUI ecosystem by providing functionality as separate crates when possible, so that they can (eventually) be useful to other GUI libraries, frameworks or applications, with or without limn. Currently these include limn-layout and limn-text-layout.

Screenshots

screenshot

Running examples under NixOS

winit needs X11 libraries at runtime. To get them on NixOS, you can create a default.nix file with the following content:

with import <nixpkgs> {}; {
  cargoEnv = stdenv.mkDerivation {
    name = "limn";
    shellHook = with xorg; ''
      export LD_LIBRARY_PATH=/run/opengl-driver/lib/:${lib.makeLibraryPath (with xorg; [libX11 libXcursor libXxf86vm libXi libXrandr xinput zlib])}
    '';
  };
}

then, running example should work as

$ nix-shell --run bash
$ cargo run --release --example crud

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Experimental cross platform GUI library

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages