diff options
Diffstat (limited to 'src/gs-history-dialog.ui')
-rw-r--r-- | src/gs-history-dialog.ui | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/gs-history-dialog.ui b/src/gs-history-dialog.ui new file mode 100644 index 0000000..942e2a5 --- /dev/null +++ b/src/gs-history-dialog.ui @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.10"/> + <template class="GsHistoryDialog" parent="GtkDialog"> + <property name="title" translatable="yes">History</property> + <property name="modal">True</property> + <property name="default_width">600</property> + <property name="default_height">300</property> + <property name="destroy_with_parent">True</property> + <property name="type_hint">dialog</property> + <property name="use_header_bar">1</property> + <child internal-child="vbox"> + <object class="GtkBox" id="dialog-vbox"> + <property name="border_width">0</property> + <property name="orientation">vertical</property> + <property name="spacing">9</property> + <child> + <object class="GtkScrolledWindow" id="scrolledwindow"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="shadow_type">none</property> + <property name="hscrollbar_policy">never</property> + <property name="vscrollbar_policy">automatic</property> + <property name="vexpand">True</property> + <child> + <object class="GtkFrame" id="frame"> + <property name="visible">True</property> + <property name="shadow_type">none</property> + <property name="halign">fill</property> + <property name="valign">start</property> + <style> + <class name="view"/> + </style> + <child> + <object class="GtkListBox" id="list_box"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="selection_mode">none</property> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |