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日 |
#210 在 GUI
每月下载 177 次
11KB
228 行
Awesome GTK
为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