diff options
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> |