blob: 961934294e9f5f34bacbe78a8a105d8fc1fd880f (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<template class="WeegtkMessage" parent="GtkBox">
<property name="orientation">horizontal</property>
<style>
<class name="message"/>
</style>
<child>
<object class="AdwAvatar" id="avatar">
<property name="size">32</property>
<property name="text" translatable="true">Username</property>
<property name="show-initials">true</property>
<property name="margin-start">10</property>
<property name="margin-end">10</property>
<property name="valign">start</property>
<property name="halign">start</property>
</object>
</child>
<child>
<object class="GtkBox" id="MessageText">
<property name="orientation">vertical</property>
<property name="halign">start</property>
<child>
<object class="GtkLabel" id="username">
<property name="label" translatable="true">Username</property>
<property name="halign">start</property>
<property name="selectable">true</property>
<style>
<class name="username"/>
</style>
</object>
</child>
<child>
<object class="GtkBox" id="message_list">
<property name="orientation">vertical</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|