#gtk #utilities #widgets #awesome #user #assorted #prelude

awesome-gtk

为gtk用户生活提供各种实用工具

5 个版本 (破坏性)

0.5.0 2024年8月10日
0.4.0 2024年3月4日
0.3.0 2023年7月24日
0.2.0 2023年3月3日
0.1.0 2023年2月15日

#210GUI

Download history 1/week @ 2024-04-29 3/week @ 2024-05-20 13/week @ 2024-05-27 12/week @ 2024-06-03 2/week @ 2024-06-10 4/week @ 2024-06-17 12/week @ 2024-07-01 32/week @ 2024-07-29 112/week @ 2024-08-05 33/week @ 2024-08-12

每月下载 177 次

MIT 许可证

11KB
228

Awesome GTK

Build codecov Crates.io Docs.rs

为gtk-rs使用的各种实用工具

遍历小部件

use awesome_gtk::prelude::*;

// iterate over direct children
for child in widget.children() {

}

// iterate over direct children in reverse order
for child in widget.children_rev() {

}

// iterate over all children (depth-first)
for child in widget.traverse() {

}

依赖项

~15–23MB
~434K SLoC