2018-10-10 16:08:37 +13:00
|
|
|
<?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>
|
2023-07-18 21:31:13 +02:00
|
|
|
<object class="GtkCellRendererText">
|
|
|
|
<property name="ellipsize">end</property>
|
|
|
|
</object>
|
2018-10-10 16:08:37 +13:00
|
|
|
<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>
|