You can generate glade bind with build script
```
[build-dependencies] glade-bindgen = "1.2" ```
```
fn main() {
gladebindgen::generatebindbuildscript("src/pathtogladefiles", true);
//disable generating get() method if false===========================^^^^
}
``
For example, if you have
example.gladeat
src/pathtogladefiles,
it will generate struct
pathtoglade_files::Example`
```
pub mod pathtoglade_files; //you need to include module
use pathtoglade_files::Example;
fn main() { let button: >k::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: >k::Button = &example.your_button_id;
//you can use editor's autocompletion here ^^^^^^