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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gnome-logs">
<template class="GlWindow" parent="AdwApplicationWindow">
<property name="default-width">1200</property>
<property name="default-height">600</property>
<child>
<object class="GtkBox" id="event_box">
<property name="orientation">vertical</property>
<child>
<object class="GlEventToolbar" id="event_toolbar">
</object>
</child>
<child>
<object class="GtkInfoBar" id="info_bar">
<property name="message-type">GTK_MESSAGE_ERROR</property>
<property name="visible">False</property>
<child>
<object class="GtkBox" id="action_area">
<property name="orientation">horizontal</property>
<property name="spacing">6</property>
<child>
<object class="GtkLabel" id="message_label">
<property name="hexpand">True</property>
<property name="halign">start</property>
</object>
</child>
<child>
<object class="GtkButton" id="help_button">
<property name="halign">center</property>
<property name="label" translatable="yes">Help</property>
<signal name="clicked" handler="on_help_button_clicked" object="GlWindow"/>
</object>
</child>
<child>
<object class="GtkButton" id="ignore_button">
<property name="halign">center</property>
<property name="label" translatable="yes">Ignore</property>
<signal name="clicked" handler="on_ignore_button_clicked" object="GlWindow"/>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="GlEventViewList" id="event_list">
</object>
</child>
</object>
</child>
</template>
</interface>
|