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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="BoxesThumbnail" parent="GtkBox">
<style>
<class name="thumbnail"/>
</style>
<child>
<object class="GtkStack" id="stack">
<property name="visible">True</property>
<child>
<object class="GtkSpinner" id="spinner_thumbnail">
<property name="visible">True</property>
<property name="active">True</property>
</object>
</child>
<child>
<object class="GtkImage" id="live_thumbnail">
<property name="visible">True</property>
<style>
<class name="live-thumbnail"/>
</style>
</object>
</child>
<child>
<object class="GtkBox" id="blank_thumbnail">
<property name="visible">True</property>
<child>
<object class="GtkImage" id="emblem">
<property name="visible">True</property>
<property name="hexpand">True</property>
<property name="halign">center</property>
<property name="icon-name">computer-symbolic</property>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>
|