You can generate glade bind with build script

```

Cargo.toml

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

```

build.rs

fn main() { gladebindgen::generatebindbuildscript("src/pathtogladefiles"); } `` 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 ^^^^^^^^^^^^ }