diff options
Diffstat (limited to '')
-rw-r--r-- | panels/sound/cc-profile-combo-box.ui | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/panels/sound/cc-profile-combo-box.ui b/panels/sound/cc-profile-combo-box.ui new file mode 100644 index 0000000..58f2d9b --- /dev/null +++ b/panels/sound/cc-profile-combo-box.ui @@ -0,0 +1,22 @@ +<?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> |