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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0" />
<requires lib="libadwaita" version="1.0" />
<template class="EvSidebarAnnotations" parent="GtkBox">
<property name="orientation">vertical</property>
<child type="start">
<object class="AdwViewStack" id="stack">
<child>
<object class="AdwViewStackPage">
<property name="name">empty</property>
<property name="child">
<object class="AdwStatusPage">
<property name="title" translatable="yes">No Annotations</property>
<property name="icon-name">x-office-document-symbolic</property>
</object>
</property>
</object>
</child>
<child>
<object class="AdwViewStackPage">
<property name="name">annot</property>
<property name="child">
<object class="GtkScrolledWindow">
<property name="halign">fill</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<child>
<object class="GtkListBox" id="list_box">
<property name="selection-mode">none</property>
<property name="margin-start">6</property>
<property name="margin-end">6</property>
<property name="margin-top">6</property>
<property name="margin-bottom">6</property>
<style>
<class name="boxed-list" />
</style>
</object>
</child>
</object>
</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkPopoverMenu" id="popup">
<property name="has-arrow">False</property>
<property name="halign">start</property>
<property name="menu-model">annotation-popup</property>
</object>
</child>
</template>
<menu id="annotation-popup">
<section>
<item>
<attribute name="label" translatable="yes">Annotation Properties</attribute>
<attribute name="action">win.annot-properties</attribute>
<attribute name='hidden-when'>action-disabled</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Remove Annotation</attribute>
<attribute name="action">win.remove-annot</attribute>
<attribute name='hidden-when'>action-disabled</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_Open Attachment</attribute>
<attribute name="action">win.open-attachment</attribute>
<attribute name='hidden-when'>action-disabled</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_Save Attachment As…</attribute>
<attribute name="action">win.save-attachment</attribute>
<attribute name='hidden-when'>action-disabled</attribute>
</item>
</section>
</menu>
</interface>
|