#gtk #derive #macro-derive #gio

yanked gtk_resources

Procedural derive macro for easily loading gtk gresources

0.1.7 Mar 4, 2021
0.1.6 Aug 16, 2020
0.1.5 Mar 31, 2020
0.1.4 Jan 22, 2020
0.1.3 Nov 21, 2019

#4 in #gio

Download history 7/week @ 2024-02-18 10/week @ 2024-02-25 123/week @ 2024-03-31

123 downloads per month

MIT license

8KB

GTK Resources

Procedural derive macro for easily loading gtk gresources.

This package depends on the gtk-rs project.

Documentation

Find it on Docs.rs.

Example

Add gtk-resources to your dependencies of your Cargo.toml:

[dependencies]
gio = "0.9"
gtk = "0.9"
glib = "0.10"
gtk_resources = "0.1.6"

And then in your gtk-rs project.

use gtk_resources::UIResource;

#[derive(UIResource, Debug)]
#[resource = "/com/name/project/window.ui"]
struct WindowResource {
    window: gtk::ApplicationWindow,
    display_label: gtk::Label,
    hello_btn: gtk::Button,
}

fn main() {
    gtk::init().unwrap();

    // Register resource bundles
    let res_bytes = include_bytes!("../test/test.gresource");
    let data = glib::Bytes::from(&res_bytes[..]);
    let resource = gio::Resource::from_data(&data).unwrap();
    gio::resources_register(&resource);

    let res = WindowResource::load().unwrap();
    println!("res: {:?}", res);

    // ...
}

The file test/test.gresource.xml defines the resource bundle which is used by this example.

See Gio::Resource and glib-compile-resources for more info about resource bundles.

The #[resource = "/com/name/project/window.ui"] attribute at the WindowResource struct specifies the path to the corresponding resource.

The field names and types of the UIResource struct have to match the ids and types from the exported resource objects. Otherwise the gtk::Builder is unable to load them during runtime.

The code gerated for the previous example looks as follows:

impl UIResource for WindowResource {
    fn load() -> Result<WindowResource, ()> {
        use gtk::BuilderExtManual;
        let b = gtk::Builder::from_resource("/com/name/project/window.ui");
        Ok (WindowResource {
            window: b.get_object::<gtk::ApplicationWindow>("window").ok_or(())?,
            display_label: b.get_object::<gtk::Label>("display_label").ok_or(())?,
            hello_btn: b.get_object::<gtk::Button>("hello_btn").ok_or(())?,
        })
    }
}

Dependencies

~17MB
~397K SLoC