mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 05:00:09 +00:00
d6a0948182
gtk-builder-tool simplify --3to4 now produces a <requires lib="gtk" version="4.0"/>. Adapt for that, and also add some tests that check that we actually verify the requires, and accept 3.99 and 4.0, but not 5.x.
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<object class="GtkWindow" id="window1">
|
|
<child>
|
|
<object class="GtkNotebook" id="notebook1">
|
|
<property name="visible">True</property>
|
|
<child>
|
|
<object class="GtkButton" id="page1">
|
|
<property name="label" translatable="yes">Yes</property>
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
<child type="tab">
|
|
<object class="GtkLabel" id="tab1">
|
|
<property name="label" translatable="yes">Tab 1</property>
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkButton" id="page2">
|
|
<property name="label" translatable="yes">No</property>
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
<child type="tab">
|
|
<object class="GtkLabel" id="tab2">
|
|
<property name="label" translatable="yes">Tab 2</property>
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|