blob: 65765e5dbed6dd47567c402f64d1e23bc16e7c60 (
plain)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<requires lib="libadwaita" version="1.0"/>
<template class="WeegtkChat" parent="AdwBin">
<style>
<class name="view"/>
</style>
<property name="child">
<object class="AdwToolbarView">
<child type="top">
<object class="AdwHeaderBar">
<property name="show-title">True</property>
</object>
</child>
<property name="content">
<object class="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkScrolledWindow" id="window">
<property name="vexpand">True</property>
<property name="hscrollbar_policy">never</property>
<style>
<class name="undershoot-bottom"/>
</style>
<property name="child">
<object class="AdwClampScrollable">
<property name="maximum-size">750</property>
<property name="tightening-threshold">500</property>
<property name="vexpand">True</property>
<property name="hexpand">True</property>
<property name="child">
<object class="GtkListView" id="messages">
<property name="orientation">1</property>
<style>
<class name="navigation-sidebar"/>
</style>
<property name="tab-behavior">item</property>
<property name="accessible-role">log</property>
</object>
</property>
</object>
</property>
</object>
</child>
<child>
<object class="AdwClamp">
<property name="maximum-size">750</property>
<property name="tightening-threshold">500</property>
<property name="child">
<object class="GtkOverlay" id="content">
<child type="overlay">
<object class="GtkRevealer" id="scroll_button_revealer">
<property name="visible">False</property>
<property name="transition_type">crossfade</property>
<property name="valign">end</property>
<property name="halign">end</property>
<property name="margin-end">5</property>
<property name="margin-bottom">5</property>
<child>
<object class="GtkButton" id="scroll_button">
<property name="icon-name">go-bottom-symbolic</property>
<property name="tooltip-text" translatable="yes">Scroll to Bottom</property>
<signal name="clicked" handler="scroll_bottom"/>
<style>
<class name="osd"/>
<class name="circular"/>
<class name="overlaid"/>
</style>
</object>
</child>
</object>
</child>
</object>
</property>
</object>
</child>
<child>
<object class="AdwClamp">
<property name="maximum-size">750</property>
<property name="tightening-threshold">500</property>
<property name="child">
<object class="GtkBox">
<property name="margin-top">5</property>
<property name="margin-bottom">5</property>
<property name="margin-start">5</property>
<property name="margin-end">5</property>
<child>
<object class="GtkButton">
<property name="icon-name">mail-attachment</property>
<style>
<class name="image-button"/>
</style>
<signal name="clicked" handler="attach_file"/>
</object>
</child>
<child>
<object class="GtkEntry" id="text_entry">
<property name="halign">fill</property>
<property name="hexpand">True</property>
<property name="hexpand-set">True</property>
<property name="width-request">50</property>
<property name="margin-start">5</property>
<property name="margin-end">5</property>
<signal name="activate" handler="entry_activate"/>
</object>
</child>
<child>
<object class="GtkButton">
<property name="icon-name">mail-forward</property>
<style>
<class name="image-button"/>
</style>
<signal name="clicked" handler="entry_activate"/>
</object>
</child>
</object>
</property>
</object>
</child>
</object>
</property>
</object>
</property>
</template>
</interface>
|