mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-05 16:09:07 -04:00
21 lines
384 B
Text
21 lines
384 B
Text
using Gtk 4.0;
|
|
|
|
ColumnView {
|
|
header-factory: BuilderListItemFactory {
|
|
template ListHeader {}
|
|
};
|
|
|
|
row-factory: BuilderListItemFactory {
|
|
template ColumnViewRow {}
|
|
};
|
|
|
|
ColumnViewColumn {
|
|
factory: BuilderListItemFactory {
|
|
template ColumnViewCell {
|
|
child: Label {
|
|
label: bind template.item as <$MyObject>.name;
|
|
};
|
|
}
|
|
};
|
|
}
|
|
}
|