gtk2/gtk/ui/gtkcombobox.ui
Benjamin Otte 222c43fc60 combobox: Put child into box
Put the combobox child into the box we added for this purpose. That way,
we don't have to maintain the child's position ourselves anymore.
2016-03-02 13:54:39 +01:00

38 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk30">
<!-- interface-requires gtk+ 3.10 -->
<template class="GtkComboBox" parent="GtkBin">
<child>
<object class="GtkBox" id="box">
<property name="visible">1</property>
<style>
<class name="linked"/>
</style>
<child>
<object class="GtkToggleButton" id="button">
<property name="visible">1</property>
<signal name="toggled" handler="gtk_combo_box_button_toggled" swapped="no"/>
<child>
<object class="GtkBox">
<property name="visible">1</property>
<child>
<object class="GtkIcon" id="arrow">
<property name="visible">1</property>
<property name="css_name">arrow</property>
</object>
<packing>
<property name="pack_type">end</property>
</packing>
</child>
</object>
</child>
</object>
<packing>
<property name="pack_type">end</property>
</packing>
</child>
</object>
</child>
</template>
</interface>