🦀 gtk-ui-builder

A Rust library to parse Blueprint files and convert them into GTK UI files

Inspired by the Blueprint project

Example

``` using Gtk 4.0; using Adw 1;

Adw.ApplicationWindow window { default-width: 600; default-height: 500;

content: Gtk.Box {
    orientation: vertical;

    Adw.HeaderBar {
        title-widget: Adw.WindowTitle {
            title: "Example app";
        };
    }

    Adw.PreferencesPage {
        Adw.PreferencesGroup {
            vexpand: true;
            valign: center;

            Gtk.Button {
                label: "Hello, World!";
            }
        }
    }
};

} ```

```rs use gtkuibuilder::prelude::*;

fn main() { // Read main.blp file let pattern = std::fs::readtostring("assets/ui/main.blp") .expect("Failed to read pattern");

// Parse AST
let tree = Parser::parse(pattern)
    .expect("Failed to parse blueprint");

// Output prettified AST
println!("{}", tree.root.dbg());

// Get XML representation of this AST
let ui = tree.get_xml();

// Write this representation to the file
// now you can import it as any GTK UI file
std::fs::write("assets/ui/main.ui", &ui);

} ```

Author: Nikita Podvirnyy

Licensed under GNU GPL 3.0