diff options
Diffstat (limited to 'src/gs-extras-page.ui')
-rw-r--r-- | src/gs-extras-page.ui | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/src/gs-extras-page.ui b/src/gs-extras-page.ui new file mode 100644 index 0000000..c294352 --- /dev/null +++ b/src/gs-extras-page.ui @@ -0,0 +1,146 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.10"/> + <template class="GsExtrasPage" parent="GsPage"> + <accessibility> + <property name="label" translatable="yes">Codecs page</property> + </accessibility> + <child> + <object class="GtkStack" id="stack"> + + <child> + <object class="GtkStackPage"> + <property name="name">spinner</property> + <property name="child"> + <object class="GtkBox" id="box_spinner"> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + <property name="halign">center</property> + <property name="valign">center</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <style> + <class name="dim-label"/> + </style> + <child> + <object class="GtkSpinner" id="spinner"> + <property name="width_request">32</property> + <property name="height_request">32</property> + <property name="halign">center</property> + <property name="valign">center</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <style> + <class name="fade-in"/> + </style> + </object> + </child> + </object> + </property> + </object> + </child> + + <child> + <object class="GtkStackPage"> + <property name="name">results</property> + <property name="child"> + <object class="GtkScrolledWindow" id="scrolledwindow"> + <property name="can_focus">True</property> + <property name="hscrollbar_policy">never</property> + <property name="vscrollbar_policy">automatic</property> + <child> + <object class="AdwClamp"> + <property name="maximum-size">860</property> + <!-- ~⅔ of the maximum size. --> + <property name="tightening-threshold">576</property> + <child> + <object class="GtkBox" id="box_results"> + <property name="orientation">vertical</property> + <child> + <object class="GtkListBox" id="list_box_results"> + <property name="can_focus">True</property> + <property name="selection_mode">none</property> + <property name="valign">start</property> + </object> + </child> + <child> + <object class="GtkSeparator" id="separator_results"> + <property name="orientation">horizontal</property> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </property> + </object> + </child> + + <child> + <object class="GtkStackPage"> + <property name="name">no-results</property> + <property name="child"> + <object class="GtkBox" id="box_no_results"> + <property name="orientation">vertical</property> + <property name="spacing">24</property> + <property name="halign">center</property> + <property name="valign">center</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <child> + <object class="GtkImage" id="image_no_results"> + <property name="pixel_size">64</property> + <property name="icon_name">face-sad-symbolic</property> + </object> + </child> + <child> + <object class="GtkLabel" id="label_no_results"> + <property name="use_markup">True</property> + <property name="wrap">True</property> + <property name="max_width_chars">60</property> + </object> + </child> + </object> + </property> + </object> + </child> + + <child> + <object class="GtkStackPage"> + <property name="name">failed</property> + <property name="child"> + <object class="GtkBox" id="box_failed"> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + <property name="halign">center</property> + <property name="valign">center</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <style> + <class name="dim-label"/> + </style> + <child> + <object class="GtkImage" id="image_failed"> + <property name="pixel_size">128</property> + <property name="icon_name">action-unavailable-symbolic</property> + </object> + </child> + <child> + <object class="GtkLabel" id="label_failed"> + <property name="wrap">True</property> + <property name="max-width-chars">60</property> + <attributes> + <attribute name="scale" value="1.4"/> + </attributes> + </object> + </child> + </object> + </property> + </object> + </child> + + </object> + </child> + </template> +</interface> |