mirror of
https://gitlab.gnome.org/julianschacher/top-bar-organizer.git
synced 2025-10-27 15:19:09 +00:00
54 lines
2.0 KiB
XML
54 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<template class="PrefsBoxOrderItemRow" parent="AdwActionRow">
|
|
<child type="prefix">
|
|
<object class="GtkLabel" id="item-name-display-label">
|
|
<property name="halign">start</property>
|
|
<property name="hexpand">True</property>
|
|
</object>
|
|
</child>
|
|
<child type="prefix">
|
|
<object class="GtkImage">
|
|
<property name="icon-name">list-drag-handle-symbolic</property>
|
|
<style>
|
|
<class name="drag-handle"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
<child type="suffix">
|
|
<object class="GtkMenuButton">
|
|
<property name="valign">center</property>
|
|
<property name="icon-name">view-more-symbolic</property>
|
|
<property name="tooltip-text">Options</property>
|
|
<property name="menu-model">optionsMenuModel</property>
|
|
<style>
|
|
<class name="flat"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkDragSource">
|
|
<property name="actions">move</property>
|
|
<signal name="prepare" handler="onDragPrepare"/>
|
|
<signal name="drag-begin" handler="onDragBegin"/>
|
|
<signal name="drag-end" handler="onDragEnd"/>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkDropTarget">
|
|
<property name="actions">move</property>
|
|
<property name="formats">PrefsBoxOrderItemRow</property>
|
|
<signal name="drop" handler="onDrop"/>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
<menu id="optionsMenuModel">
|
|
<section>
|
|
<item>
|
|
<attribute name="label">Forget</attribute>
|
|
<attribute name="action">options.forget</attribute>
|
|
</item>
|
|
</section>
|
|
</menu>
|
|
</interface>
|