gtk2/gtk/ui/gtkcombobox.ui
Cosimo Cecchi 5764c09272 combobox: use GtkIcon to render button arrow
We can now use the newly introduced GtkIcon widget to properly render
the arrow in the combobox with CSS.
2015-12-22 09:29:43 -08:00

27 lines
877 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk30">
<!-- interface-requires gtk+ 3.10 -->
<template class="GtkComboBox" parent="GtkBin">
<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>
</child>
</template>
</interface>