diff options
Diffstat (limited to '')
-rw-r--r-- | panels/applications/cc-action-row.ui | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/panels/applications/cc-action-row.ui b/panels/applications/cc-action-row.ui new file mode 100644 index 0000000..6a75964 --- /dev/null +++ b/panels/applications/cc-action-row.ui @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <template class="CcActionRow" parent="GtkListBoxRow"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="activatable">False</property> + <child> + <object class="GtkBox"> + <property name="visible">1</property> + <property name="border-width">12</property> + <property name="spacing">12</property> + <child> + <object class="GtkBox"> + <property name="visible">1</property> + <property name="orientation">vertical</property> + <property name="spacing">4</property> + <child> + <object class="GtkLabel" id="title"> + <property name="visible">1</property> + <property name="xalign">0</property> + <property name="hexpand">1</property> + <property name="ellipsize">end</property> + </object> + <packing> + <property name="expand">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="subtitle"> + <property name="visible">1</property> + <property name="xalign">0</property> + <property name="hexpand">1</property> + <property name="ellipsize">end</property> + <style> + <class name="dim-label"/> + </style> + </object> + </child> + </object> + </child> + <child> + <object class="GtkButton" id="button"> + <property name="visible">1</property> + <property name="valign">center</property> + <signal name="clicked" handler="clicked_cb" swapped="yes"/> + </object> + </child> + </object> + </child> + </template> +</interface> |