diff options
Diffstat (limited to 'panels/applications/cc-snap-row.ui')
-rw-r--r-- | panels/applications/cc-snap-row.ui | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/panels/applications/cc-snap-row.ui b/panels/applications/cc-snap-row.ui new file mode 100644 index 0000000..fed545f --- /dev/null +++ b/panels/applications/cc-snap-row.ui @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <object class="GtkListStore" id="slots_combo_model"> + <columns> + <!-- column-name slot --> + <column type="GObject"/> + <!-- column-name label --> + <column type="gchararray"/> + </columns> + </object> + <template class="CcSnapRow" parent="AdwActionRow"> + <property name="can-focus">True</property> + <property name="activatable">False</property> + <child> + <object class="GtkSwitch" id="slot_toggle"> + <property name="valign">center</property> + <signal name="notify::active" handler="switch_changed_cb" swapped="yes"/> + </object> + </child> + <child> + <object class="GtkComboBox" id="slots_combo"> + <property name="valign">center</property> + <property name="model">slots_combo_model</property> + <signal name="changed" handler="combo_changed_cb" swapped="yes"/> + <child> + <object class="GtkCellRendererText"> + <property name="ellipsize">end</property> + </object> + <attributes> + <attribute name="text">1</attribute> + </attributes> + </child> + </object> + </child> + </template> +</interface> |