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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.9 -->
<template class="BoxesSelectionbar" parent="GtkRevealer">
<property name="visible">True</property>
<property name="transition-type">slide-up</property>
<property name="transition-duration">400</property>
<child>
<object class="GtkActionBar" id="actionbar">
<property name="visible">True</property>
<!-- Favorite button -->
<child>
<object class="GtkToggleButton" id="favorite_btn">
<property name="visible">True</property>
<property name="valign">center</property>
<signal name="clicked" handler="on_favorite_btn_clicked"/>
<style>
<class name="image-button"/>
</style>
<child>
<object class="GtkImage" id="favorite_image">
<property name="visible">True</property>
<property name="icon-name">emblem-favorite-symbolic</property>
<property name="icon-size">1</property>
</object>
</child>
</object>
<packing>
<property name="pack-type">start</property>
</packing>
</child>
<!-- Pause button -->
<child>
<object class="GtkButton" id="pause_btn">
<property name="visible">True</property>
<property name="valign">center</property>
<property name="use-underline">True</property>
<property name="label" translatable="yes">P_ause</property>
<signal name="clicked" handler="on_pause_btn_clicked"/>
<style>
<class name="text-button"/>
</style>
</object>
<packing>
<property name="pack-type">start</property>
</packing>
</child>
<!-- Open in new windows button -->
<child>
<object class="GtkButton" id="open_btn">
<property name="visible">True</property>
<property name="valign">center</property>
<property name="use-underline">True</property>
<signal name="clicked" handler="on_open_btn_clicked"/>
<style>
<class name="text-button"/>
</style>
</object>
<packing>
<property name="pack-type">start</property>
</packing>
</child>
<!-- Remove button -->
<child>
<object class="GtkButton" id="remove_btn">
<property name="visible">True</property>
<property name="valign">center</property>
<property name="use-underline">True</property>
<property name="label" translatable="yes">_Delete</property>
<signal name="clicked" handler="on_remove_btn_clicked"/>
<style>
<class name="text-button"/>
</style>
</object>
<packing>
<property name="pack-type">start</property>
</packing>
</child>
<!-- Properties button -->
<child>
<object class="GtkButton" id="properties_btn">
<property name="visible">True</property>
<property name="valign">center</property>
<property name="use-underline">True</property>
<property name="label" translatable="yes">_Properties</property>
<signal name="clicked" handler="on_properties_btn_clicked"/>
<style>
<class name="text-button"/>
</style>
</object>
<packing>
<property name="pack-type">end</property>
</packing>
</child>
</object>
</child>
</template>
</interface>
|