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>
<template parent="GtkBox" class="QRCodeMail">
<property name="orientation">horizontal</property>
<child>
<object class="GtkImage">
<property name="icon-name">mail-send-symbolic</property>
<property name="vexpand">True</property>
<property name="valign">center</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<property name="pixel-size">24</property>
<property name="accessible-role">presentation</property>
</object>
</child>
<child>
<object class="GtkGrid">
<property name="valign">center</property>
<property name="column-spacing">24</property>
<property name="row-spacing">6</property>
<child>
<object class="GtkLabel">
<property name="label" translatable="yes">Email</property>
<property name="width-request">80</property>
<property name="xalign">1.0</property>
<style>
<class name="code-label" />
</style>
<layout>
<property name="column">0</property>
<property name="row">0</property>
</layout>
</object>
</child>
<child>
<object class="GtkLabel" id="to_label">
<property name="xalign">0.0</property>
<property name="hexpand">True</property>
<property name="wrap">True</property>
<property name="selectable">True</property>
<property name="use-markup">True</property>
<property name="wrap-mode">word-char</property>
<property name="ellipsize">end</property>
<layout>
<property name="column">1</property>
<property name="row">0</property>
</layout>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="label" translatable="yes">Subject</property>
<property name="width-request">80</property>
<property name="xalign">1.0</property>
<property name="visible" bind-source="subject_label" bind-property="visible" bind-flags="sync-create" />
<style>
<class name="code-label" />
</style>
<layout>
<property name="column">0</property>
<property name="row">1</property>
</layout>
</object>
</child>
<child>
<object class="GtkLabel" id="subject_label">
<property name="xalign">0.0</property>
<property name="hexpand">True</property>
<property name="wrap">True</property>
<property name="selectable">True</property>
<property name="wrap-mode">word-char</property>
<property name="ellipsize">end</property>
<layout>
<property name="column">1</property>
<property name="row">1</property>
</layout>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="label" translatable="yes">Body</property>
<property name="width-request">80</property>
<property name="xalign">1.0</property>
<property name="visible" bind-source="body_label" bind-property="visible" bind-flags="sync-create" />
<style>
<class name="code-label" />
</style>
<layout>
<property name="column">0</property>
<property name="row">2</property>
</layout>
</object>
</child>
<child>
<object class="GtkLabel" id="body_label">
<property name="xalign">0.0</property>
<property name="hexpand">True</property>
<property name="wrap">True</property>
<property name="selectable">True</property>
<property name="wrap-mode">word-char</property>
<property name="ellipsize">end</property>
<layout>
<property name="column">1</property>
<property name="row">2</property>
</layout>
</object>
</child>
</object>
</child>
</template>
</interface>
|