mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-06 16:19:07 -04:00
The current problem is that types aren't inferred properly for GtkListItem.item (it's always considered a GObject, and Gtk needs more type information than that, and cast expressions don't exist yet).
28 lines
787 B
XML
28 lines
787 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<requires lib="gtk" version="4.0"/>
|
|
<object class="GtkListView">
|
|
<property name="factory">
|
|
<object class="GtkBuilderListItemFactory">
|
|
<property name="bytes"><![CDATA[
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<requires lib="gtk" version="4.0"/>
|
|
<template class="GtkListItem">
|
|
<property name="child">
|
|
<object class="GtkLabel">
|
|
<binding name="label">
|
|
<lookup name="label">
|
|
<lookup name="group">
|
|
<lookup name="item" type="GtkCheckButton">GtkListItem</lookup>
|
|
</lookup>
|
|
</lookup>
|
|
</binding>
|
|
</object>
|
|
</property>
|
|
</template>
|
|
</interface>]]></property>
|
|
</object>
|
|
</property>
|
|
</object>
|
|
</interface>
|