crates.io

You can generate glade bind with build script

```

Cargo.toml

[build-dependencies] glade-bindgen = "1.2" ```

```

build.rs

fn main() { gladebindgen::generatebindbuildscript("src/pathtogladefiles", true); //disable generating get() method if false===========================^^^^ } `` For example, if you haveexample.gladeatsrc/pathtogladefiles, it will generate structpathtoglade_files::Example`

```

src/main.rs

pub mod pathtoglade_files; //you need to include module

use pathtoglade_files::Example;

fn main() { let button: &gtk::Button = &Example::get().yourbuttonid; //you can use editor's autocompletion here ^^^^^^^^^^^^ } ```

You can also use it as owned value let example = Example::new(); let button: &gtk::Button = &example.your_button_id; //you can use editor's autocompletion here ^^^^^^