23 releases

0.6.1 Sep 22, 2023
0.6.0 Feb 4, 2024
0.5.3 Sep 22, 2023
0.5.0 Jul 23, 2023
0.1.0-alpha-2 Jul 12, 2021

#27 in GUI

Download history 5231/week @ 2023-12-23 5149/week @ 2023-12-30 5198/week @ 2024-01-06 4589/week @ 2024-01-13 5869/week @ 2024-01-20 4677/week @ 2024-01-27 4940/week @ 2024-02-03 7516/week @ 2024-02-10 6590/week @ 2024-02-17 6029/week @ 2024-02-24 9041/week @ 2024-03-02 7486/week @ 2024-03-09 10202/week @ 2024-03-16 10016/week @ 2024-03-23 8407/week @ 2024-03-30 6085/week @ 2024-04-06

35,728 downloads per month
Used in 28 crates (22 directly)

MIT license

1.5MB
40K SLoC

libadwaita-rs

The Rust bindings of libadwaita

Website: https://world.pages.gitlab.gnome.org/Rust/libadwaita-rs

Documentation


lib.rs:

Rust Adwaita bindings

This library contains safe Rust bindings for Adwaita, a library that offers building blocks for modern GNOME applications.

See also

Example

Adwaita needs to be initialized before use. This can be done by either:

The libadwaita crate is usually renamed to adw. You can do this globally in your Cargo.toml file:

[dependencies.adw]
package = "libadwaita"
version = "0.x.y"
use adw::prelude::*;

use adw::{ActionRow, Application, ApplicationWindow, HeaderBar};
use gtk::{Box, ListBox, Orientation, SelectionMode};

fn main() {
    let application = Application::builder()
        .application_id("com.example.FirstAdwaitaApp")
        .build();

    application.connect_activate(|app| {
        // ActionRows are only available in Adwaita
        let row = ActionRow::builder()
            .activatable(true)
            .title("Click me")
            .build();
        row.connect_activated(|_| {
            eprintln!("Clicked!");
        });

        let list = ListBox::builder()
            .margin_top(32)
            .margin_end(32)
            .margin_bottom(32)
            .margin_start(32)
            .selection_mode(SelectionMode::None)
            // makes the list look nicer
            .css_classes(vec![String::from("boxed-list")])
            .build();
        list.append(&row);

        // Combine the content in a box
        let content = Box::new(Orientation::Vertical, 0);
        // Adwaitas' ApplicationWindow does not include a HeaderBar
        content.append(&HeaderBar::new());
        content.append(&list);

        let window = ApplicationWindow::builder()
            .application(app)
            .title("First App")
            .default_width(350)
            // add content to window
            .content(&content)
            .build();
        window.present();
    });

    application.run();
}

Dependencies

~16–26MB
~448K SLoC