diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
commit | 3ade071f273aaa973e44bf95d6b1d4913a18f03b (patch) | |
tree | e2f99d267ae18427645404f215b984afbe73098d /src/resources/ui/nautilus-progress-indicator.ui | |
parent | Initial commit. (diff) | |
download | nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.tar.xz nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.zip |
Adding upstream version 43.2.upstream/43.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/resources/ui/nautilus-progress-indicator.ui | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/resources/ui/nautilus-progress-indicator.ui b/src/resources/ui/nautilus-progress-indicator.ui new file mode 100644 index 0000000..a44f8d1 --- /dev/null +++ b/src/resources/ui/nautilus-progress-indicator.ui @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <menu id="view_menu"> + <section> + <attribute name="label" translatable="yes" context="menu item" comments="Translators: a menu item in a group of sorting options in a toolbar menu, with criterions such as "A-Z" or "Last Modified".">Sort</attribute> + <!-- + Sort section. + + The toolbar code assumes this is the second item of this menu model. + Its contents is provided by the view. + --> + </section> + <section> + <item> + <attribute name="label" translatable="yes">_Visible Columns…</attribute> + <attribute name="action">view.visible-columns</attribute> + <attribute name="hidden-when">action-missing</attribute> + </item> + </section> + </menu> + <object class="GtkPopover" id="operations_popover"> + <property name="child"> + <object class="GtkScrolledWindow"> + <property name="hscrollbar_policy">never</property> + <property name="max_content_height">270</property> + <property name="propagate_natural_height">True</property> + <property name="child"> + <object class="GtkListBox" id="operations_list"> + <property name="margin_start">6</property> + <property name="margin_end">6</property> + <property name="margin_top">6</property> + <property name="margin_bottom">6</property> + <property name="selection-mode">none</property> + <property name="activate-on-single-click">False</property> + <style> + <class name="operations-list"/> + </style> + </object> + </property> + </object> + </property> + <signal name="notify::visible" handler="on_operations_popover_notify_visible" object="NautilusProgressIndicator" swapped="yes"/> + </object> + <template class="NautilusProgressIndicator" parent="AdwBin"> + <property name="child"> + <object class="GtkRevealer" id="operations_revealer"> + <property name="halign">center</property> + <property name="valign">center</property> + <property name="transition_type">slide-right</property> + <property name="child"> + <object class="GtkMenuButton" id="operations_button"> + <property name="tooltip_text" translatable="yes">Show operations</property> + <property name="popover">operations_popover</property> + <child> + <object class="GtkDrawingArea" id="operations_icon"> + <property name="width_request">16</property> + <property name="height_request">16</property> + <property name="halign">center</property> + <property name="valign">center</property> + </object> + </child> + <style> + <class name="image-button"/> + </style> + </object> + </property> + </object> + </property> + </template> +</interface> |