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-column-chooser.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-column-chooser.ui | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/src/resources/ui/nautilus-column-chooser.ui b/src/resources/ui/nautilus-column-chooser.ui new file mode 100644 index 0000000..24cce3d --- /dev/null +++ b/src/resources/ui/nautilus-column-chooser.ui @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk" version="4.0"/> + <object class="GtkListStore" id="store"> + <columns> + <!-- column-name COLUMN_VISIBLE --> + <column type="gboolean"/> + <!-- column-name COLUMN_LABEL --> + <column type="gchararray"/> + <!-- column-name COLUMN_NAME --> + <column type="gchararray"/> + <!-- column-name COLUMN_SENSITIVE --> + <column type="gboolean"/> + </columns> + </object> + <template class="NautilusColumnChooser" parent="GtkBox"> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + <child> + <object class="GtkScrolledWindow"> + <property name="child"> + <object class="GtkTreeView" id="view"> + <property name="vexpand">True</property> + <property name="model">store</property> + <property name="headers-visible">False</property> + <property name="reorderable">True</property> + <signal name="row-activated" handler="view_row_activated_callback" swapped="no"/> + <child internal-child="selection"> + <object class="GtkTreeSelection"> + <signal name="changed" handler="selection_changed_callback" swapped="no"/> + </object> + </child> + <child> + <object class="GtkTreeViewColumn" id="visible-column"> + <child> + <object class="GtkCellRendererToggle"> + <signal name="toggled" handler="visible_toggled_callback" swapped="no"/> + </object> + <attributes> + <attribute name="sensitive">3</attribute> + <attribute name="active">0</attribute> + </attributes> + </child> + </object> + </child> + <child> + <object class="GtkTreeViewColumn" id="label-column"> + <child> + <object class="GtkCellRendererText"/> + <attributes> + <attribute name="sensitive">3</attribute> + <attribute name="text">1</attribute> + </attributes> + </child> + </object> + </child> + </object> + </property> + <style> + <class name="frame"/> + </style> + </object> + </child> + <child> + <object class="GtkBox"> + <property name="spacing">12</property> + <child> + <object class="GtkBox"> + <child> + <object class="GtkButton" id="move_up_button"> + <property name="sensitive">False</property> + <property name="icon-name">go-up-symbolic</property> + <signal name="clicked" handler="move_up_clicked_callback" swapped="no"/> + </object> + </child> + <child> + <object class="GtkButton" id="move_down_button"> + <property name="sensitive">False</property> + <property name="icon-name">go-down-symbolic</property> + <signal name="clicked" handler="move_down_clicked_callback" swapped="no"/> + </object> + </child> + <style> + <class name="linked"/> + </style> + </object> + </child> + <child> + <object class="GtkBox"> + <child> + <object class="GtkButton" id="use_default_button"> + <property name="hexpand">true</property> + <property name="halign">end</property> + <property name="label" translatable="yes">Reset to De_fault</property> + <property name="tooltip-text" translatable="yes">Replace the current List Columns settings with the default settings</property> + <property name="use-underline">True</property> + <signal name="clicked" handler="use_default_clicked_callback" swapped="no"/> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |