diff options
author | fiaxh <git@lightrise.org> | 2020-04-10 21:08:23 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-04-10 21:08:23 +0200 |
commit | ff4403fb21ea5a3575a7a3f7cafcf83a7fb46bf9 (patch) | |
tree | cabe6b83aba5caf67dab538595201f879f6db9a7 /main/data | |
parent | bd8063284c7d3f5f6a2646e91b4f14e87e2765a8 (diff) | |
download | dino-ff4403fb21ea5a3575a7a3f7cafcf83a7fb46bf9.tar.gz dino-ff4403fb21ea5a3575a7a3f7cafcf83a7fb46bf9.zip |
Clean up file widget code
Diffstat (limited to 'main/data')
-rw-r--r-- | main/data/file_default_widget.ui | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/main/data/file_default_widget.ui b/main/data/file_default_widget.ui new file mode 100644 index 00000000..7019f0c2 --- /dev/null +++ b/main/data/file_default_widget.ui @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <template class="DinoUiFileDefaultWidget" parent="GtkEventBox"> + <property name="halign">start</property> + <property name="visible">True</property> + <style> + <class name="file-box-outer"/> + </style> + <child> + <object class="DinoUiSizingBin"> + <property name="target-width">500</property> + <property name="max-width">500</property> + <property name="hexpand">True</property> + <property name="visible">True</property> + <child> + <object class="GtkBox"> + <property name="orientation">horizontal</property> + <property name="halign">fill</property> + <property name="hexpand">true</property> + <property name="spacing">10</property> + <property name="visible">True</property> + <style> + <class name="file-box"/> + </style> + <child> + <object class="GtkEventBox" id="stack_event_box"> + <property name="visible">True</property> + <child> + <object class="GtkStack" id="image_stack"> + <property name="transition-type">crossfade</property> + <property name="transition-duration">50</property> + <property name="valign">center</property> + <property name="visible">True</property> + <child> + <object class="GtkImage"> + <property name="icon-name">dino-file-download-symbolic</property> + <property name="icon-size">5</property> + <property name="opacity">0.7</property> + <property name="visible">True</property> + </object> + <packing> + <property name="name">download_image</property> + </packing> + </child> + <child> + <object class="GtkImage" id="content_type_image"> + <property name="icon-size">5</property> + <property name="opacity">0.7</property> + <property name="visible">True</property> + </object> + <packing> + <property name="name">content_type_image</property> + </packing> + </child> + <child> + <object class="GtkSpinner" id="spinner"> + <property name="visible">True</property> + </object> + <packing> + <property name="name">spinner</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkBox"> + <property name="orientation">vertical</property> + <property name="hexpand">True</property> + <property name="visible">True</property> + <child> + <object class="GtkLabel" id="name_label"> + <property name="ellipsize">middle</property> + <property name="xalign">0</property> + <property name="yalign">0</property> + <property name="visible">True</property> + </object> + </child> + <child> + <object class="GtkLabel" id="mime_label"> + <property name="xalign">0</property> + <property name="yalign">1</property> + <property name="visible">True</property> + <attributes> + <attribute name="scale" value="0.8"/> + </attributes> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |