# gladis [![Build](https://github.com/pandora-prime/rust-glade/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/pandora-prime/rust-glade/actions/workflows/ci.yml) [![Latest version](https://img.shields.io/crates/v/glade.svg)](https://crates.io/crates/glade) [![Documentation](https://docs.rs/glade/badge.svg)](https://docs.rs/glade) [![License](https://img.shields.io/crates/l/glade.svg)](https://crates.io/crates/glade) [![REUSE status](https://api.reuse.software/badge/github.com/pandora-prime/rust-glade)](https://api.reuse.software/info/github.com/pandora-prime/rust-glade) Easily import Glade-generated UI files into Rust code. **This crate is a fork of a DEPRECATED https://github.com/gagath/gladis maintained for backward compatibility** ## Usage In order to use Glade, you have to add the following dependencies into your project's `Cargo.toml` file: ```toml [dependencies] glade = "2.2.0" ``` After this is done, you can enjoy the Gladis derive! ```rust #[derive(Gladis, Clone)] pub struct Window { pub window: gtk::ApplicationWindow, pub label: gtk::Label, } impl Window { pub fn new() -> Self { Self::from_resource("/dev/null/hello_builder/window.ui").unwrap() } } ``` Without Gladis, you would have to manually parse each of the Glade entries. ```rust pub struct Window { pub window: gtk::ApplicationWindow, pub label: gtk::Label, } impl Window { pub fn new() -> Self { let builder = gtk::Builder::from_resource("/dev/null/hello_builder/window.ui"); let window: gtk::ApplicationWindow = builder .object("window") .expect("Failed to find the window object"); let label: gtk::Label = builder .object("label") .expect("Failed to find the label object"); Self { window, label } } } ``` ## Relm support This crate is compatible with [Relm](https://github.com/antoyo/relm), a popular framework for writing UIs with GTK+. See the `examples/relm` directory, and give it a shot! ## License Licensed under either of [Apache License, Version 2.0](LICENSES/Apache-2.0.txt) or [MIT license](LICENSES/MIT.txt) at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.