gnome-control-center/panels/sound/cc-profile-combo-box.ui

25 lines
774 B
Text
Raw Normal View History

<?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">
<property name="ellipsize">end</property>
</object>
<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>