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-name-cell.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 'src/resources/ui/nautilus-name-cell.ui')
-rw-r--r-- | src/resources/ui/nautilus-name-cell.ui | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/src/resources/ui/nautilus-name-cell.ui b/src/resources/ui/nautilus-name-cell.ui new file mode 100644 index 0000000..246aa3a --- /dev/null +++ b/src/resources/ui/nautilus-name-cell.ui @@ -0,0 +1,112 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk" version="4.0"/> + <template class="NautilusNameCell" parent="NautilusViewCell"> + <accessibility> + <relation name="labelled-by">label</relation> + </accessibility> + <child> + <object class="GtkBox"> + <property name="spacing">6</property> + <property name="orientation">horizontal</property> + <property name="halign">fill</property> + <property name="valign">center</property> + <child> + <object class="GtkBox" id="fixed_height_box"> + <property name="orientation">vertical</property> + <property name="halign">center</property> + <property name="height-request">16</property> + <property name="valign">center</property> + <child> + <object class="GtkPicture" id="icon"> + <property name="halign">center</property> + <property name="valign">center</property> + <property name="can-shrink">False</property> + </object> + </child> + </object> + </child> + <child> + <object class="GtkBox"> + <property name="orientation">vertical</property> + <property name="halign">fill</property> + <property name="hexpand">True</property> + <property name="valign">center</property> + <style> + <class name="column-name-labels-box"/> + </style> + <child> + <object class="GtkBox"> + <property name="orientation">horizontal</property> + <property name="halign">fill</property> + <property name="hexpand">True</property> + <property name="spacing">6</property> + <child> + <object class="GtkLabel" id="label"> + <property name="ellipsize">middle</property> + <property name="lines">1</property> + <property name="max-width-chars">-1</property> + <property name="wrap">False</property> + <property name="wrap-mode">word-char</property> + <property name="halign">start</property> + <attributes> + <attribute name="insert-hyphens" value="false"></attribute> + </attributes> + </object> + </child> + <child> + <object class="GtkBox" id="emblems_box"> + <property name="orientation">horizontal</property> + <property name="halign">start</property> + <property name="spacing">6</property> + </object> + </child> + </object> + </child> + <child> + <object class="GtkLabel" id="path"> + <property name="visible">False</property> + <property name="ellipsize">start</property> + <property name="justify">left</property> + <property name="halign">fill</property> + <property name="xalign">0.0</property> + <attributes> + <attribute name="insert-hyphens" value="false"></attribute> + </attributes> + <style> + <class name="caption"/> + <class name="dim-label"/> + </style> + </object> + </child> + </object> + </child> + <child> + <object class="GtkMenuButton" id="snippet_button"> + <property name="tooltip-text" translatable="yes">Full text match</property> + <property name="visible">False</property> + <property name="icon-name">quotation-symbolic</property> + <property name="valign">center</property> + <style> + <class name="fts-snippet"/> + </style> + <property name="popover"> + <object class="GtkPopover"> + <child> + <object class="GtkLabel" id="snippet"> + <property name="ellipsize">none</property> + <property name="justify">left</property> + <property name="max-width-chars">65</property> + <property name="lines">10</property> + <property name="wrap">True</property> + <property name="wrap-mode">word</property> + </object> + </child> + </object> + </property> + </object> + </child> + </object> + </child> + </template> +</interface> |