#gtk #bind #glade

glade-bindgen-gtk4

生成gtk glade绑定的库(gtk4)

1个稳定版本

1.2.1 2022年1月4日

#765GUI

MIT 许可证

10KB
165 代码行

crates.io

你可以使用构建脚本来生成glade绑定

#Cargo.toml
[build-dependencies]
glade-bindgen = "1.2"
#build.rs
fn main() {
    glade_bindgen_gtk4::generate_bind_build_script("src/path_to_glade_files", true);
    //disable generating get() method if false===========================^^^^
}

例如,如果你在 src/path_to_glade_files 目录下有 example.glade,它将生成名为 path_to_glade_files::Example 的结构体

#src/main.rs
pub mod path_to_glade_files; //you need to include module

use path_to_glade_files::Example;

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

你也可以将其用作拥有值

let example = Example::new();
let button: &gtk4::Button = &example.your_button_id;
//you can use editor's autocompletion here ^^^^^^

依赖

~3.5–5MB
~94K SLoC