1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<interface domain="easytag">
<requires lib="gtk+" version="3.10"/>
<template class="EtLogArea" parent="GtkBin">
<property name="border-width">2</property>
<property name="visible">True</property>
<child>
<object class="GtkGrid" id="log_grid">
<property name="orientation">vertical</property>
<property name="row-spacing">6</property>
<property name="visible">True</property>
<child>
<object class="GtkLabel" id="log_label">
<property name="halign">start</property>
<property name="label" translatable="yes">Log</property>
<property name="visible">True</property>
<attributes>
<attribute name="weight" value="bold"/>
</attributes>
</object>
</child>
<child>
<object class="GtkScrolledWindow" id="log_scrolled">
<property name="expand">True</property>
<property name="margin-left">12</property>
<property name="min-content-height">20</property>
<property name="shadow-type">etched-in</property>
<property name="visible">True</property>
<child>
<object class="GtkTreeView" id="log_view">
<property name="model">log_model</property>
<property name="headers-visible">False</property>
<property name="visible">True</property>
<child>
<object class="GtkTreeViewColumn" id="log_icon_column">
<property name="sizing">autosize</property>
<child>
<object class="GtkCellRendererPixbuf" id="log_icon_renderer"/>
<attributes>
<attribute name="icon-name">0</attribute>
</attributes>
</child>
<child>
<object class="GtkCellRendererText" id="log_time_renderer"/>
<attributes>
<attribute name="text">1</attribute>
</attributes>
</child>
<child>
<object class="GtkCellRendererText" id="log_text_renderer"/>
<attributes>
<attribute name="text">2</attribute>
</attributes>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
<object class="GtkListStore" id="log_model">
<columns>
<column type="gchararray"/>
<column type="gchararray"/>
<column type="gchararray"/>
</columns>
</object>
</interface>
|