gnome-control-center/panels/sound/cc-profile-combo-box.ui
2019-02-07 09:31:18 +13:00

22 lines
709 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<template class="CcProfileComboBox" parent="GtkComboBox">
<property name="model">profile_model</property>
<signal name="changed" handler="profile_changed_cb" object="CcProfileComboBox" swapped="yes"/>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">0</attribute>
</attributes>
</child>
</template>
<object class="GtkListStore" id="profile_model">
<columns>
<!-- column-name title -->
<column type="gchararray"/>
<!-- column-name profile -->
<column type="gchararray"/>
</columns>
</object>
</interface>