1<?xml version="1.0" encoding="UTF-8"?> 2<!-- This file is in the public domain. --> 3<interface> 4 <!-- interface-requires gtk+ 3.10 --> 5 <template class="HelloApplicationWindow" parent="GtkApplicationWindow"> 6 <property name="title" translatable="yes">Example Application</property> 7 <property name="default-width">600</property> 8 <property name="default-height">400</property> 9 <child> 10 <object class="GtkBox" id="panel"> 11 <property name="visible">True</property> 12 <property name="orientation">vertical</property> 13 <child> 14 <object class="GtkAlignment" id="alignment"> 15 <property name="visible">True</property> 16 <property name="xalign">0.5</property> 17 <property name="yalign">0.5</property> 18 <property name="xscale">0</property> 19 <property name="yscale">0</property> 20 <property name="vexpand">True</property> 21 <child> 22 <object class="GtkLabel" id="label"> 23 <property name="visible">True</property> 24 </object> 25 </child> 26 </object> 27 </child> 28 <child> 29 <object class="GtkHButtonBox" id="buttonbar"> 30 <property name="visible">True</property> 31 <child> 32 <object class="GtkButton" id="button"> 33 <property name="visible">True</property> 34 <property name="label" translatable="yes">Update text</property> 35 <property name="use_stock">False</property> 36 </object> 37 <packing> 38 <property name="pack-type">end</property> 39 </packing> 40 </child> 41 </object> 42 </child> 43 </object> 44 </child> 45 </template> 46</interface> 47