blob: 58f2d9b8ff5e714adf0dc1037cfc279fae8b355c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>
|