rino/src/widgets/chat_tab.ui
Emmanuel Gil Peyrot 950571be81 Switch from gtk::Label to a custom chat tab widget
This one supports avatars now!
2024-06-03 17:52:05 +02:00

25 lines
849 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="ChatTab" parent="GtkBox">
<child>
<object class="GtkImage" id="avatar">
<property name="width-request">32</property>
<property name="height-request">32</property>
<property name="margin-top">4</property>
<property name="margin-bottom">4</property>
<property name="margin-start">4</property>
<property name="margin-end">4</property>
</object>
</child>
<child>
<object class="GtkLabel" id="name">
<property name="halign">start</property>
<property name="margin-top">4</property>
<property name="margin-bottom">4</property>
<property name="margin-start">4</property>
<property name="margin-end">4</property>
</object>
</child>
</template>
</interface>