diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
commit | 9b6d8e63db85c30007b463e91f91a791969fa83f (patch) | |
tree | 0899af51d73c1bf986f73ae39a03c4436083018a /panels/region/cc-input-row.ui | |
parent | Initial commit. (diff) | |
download | gnome-control-center-upstream.tar.xz gnome-control-center-upstream.zip |
Adding upstream version 1:3.38.4.upstream/1%3.38.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'panels/region/cc-input-row.ui')
-rw-r--r-- | panels/region/cc-input-row.ui | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/panels/region/cc-input-row.ui b/panels/region/cc-input-row.ui new file mode 100644 index 0000000..70794fc --- /dev/null +++ b/panels/region/cc-input-row.ui @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.20"/> + <template class="CcInputRow" parent="GtkListBoxRow"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="selectable">False</property> + <signal name="drag_data_received" handler="drag_data_received_cb" object="CcInputRow" swapped="yes"/> + <child> + <object class="GtkEventBox" id="drag_handle"> + <property name="visible">True</property> + <signal name="drag_data_get" handler="drag_data_get_cb" object="CcInputRow" swapped="yes"/> + <signal name="drag_begin" handler="drag_begin_cb" object="CcInputRow" swapped="yes"/> + <signal name="drag_end" handler="drag_end_cb" object="CcInputRow" swapped="yes"/> + <child> + <object class="GtkBox"> + <property name="visible">True</property> + <property name="height_request">50</property> + <property name="margin_start">4</property> + <property name="margin_end">12</property> + <property name="spacing">12</property> + <child> + <object class="GtkImage"> + <property name="visible">True</property> + <property name="icon_name">list-drag-handle-symbolic</property> + <style> + <class name="drag-handle"/> + </style> + </object> + </child> + <child> + <object class="GtkLabel" id="name_label"> + <property name="visible">True</property> + <property name="margin_bottom">8</property> + <property name="margin_top">8</property> + <property name="ellipsize">end</property> + <property name="xalign">0.0</property> + <property name="hexpand">True</property> + </object> + </child> + <child> + <object class="GtkButton" id="settings_button"> + <property name="visible">False</property> + <property name="margin_bottom">8</property> + <property name="margin_top">8</property> + <property name="valign">center</property> + <signal name="clicked" handler="settings_button_clicked_cb" object="CcInputRow" swapped="yes"/> + <style> + <class name="image-button"/> + </style> + <child> + <object class="GtkImage"> + <property name="visible">True</property> + <property name="icon_name">emblem-system-symbolic</property> + </object> + </child> + </object> + </child> + <child> + <object class="GtkButton"> + <property name="visible">True</property> + <property name="margin_bottom">8</property> + <property name="margin_top">8</property> + <property name="valign">center</property> + <signal name="clicked" handler="layout_button_clicked_cb" object="CcInputRow" swapped="yes"/> + <style> + <class name="image-button"/> + </style> + <child> + <object class="GtkImage"> + <property name="visible">True</property> + <property name="icon_name">view-layout-symbolic</property> + </object> + </child> + </object> + </child> + <child> + <object class="GtkButton" id="remove_button"> + <property name="visible">True</property> + <property name="margin_bottom">8</property> + <property name="margin_top">8</property> + <property name="valign">center</property> + <signal name="clicked" handler="remove_button_clicked_cb" object="CcInputRow" swapped="yes"/> + <style> + <class name="image-button"/> + </style> + <child> + <object class="GtkImage"> + <property name="visible">True</property> + <property name="icon_name">edit-delete-symbolic</property> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |