1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.24"/>
<template class="PhoshScalingQuickSetting" parent="PhoshQuickSetting">
<property name="status-icon">info</property>
<property name="status-page">status_page</property>
<signal name="clicked" handler="on_clicked" object="PhoshScalingQuickSetting" swapped="yes"/>
</template>
<object class="PhoshStatusIcon" id="info">
<property name="visible">1</property>
</object>
<object class="PhoshStatusPage" id="status_page">
<property name="visible">1</property>
<property name="title" translatable="yes">Monitor scales</property>
<property name="content">list_box</property>
</object>
<object class="GtkListBox" id="list_box">
<property name="visible">1</property>
<property name="selection-mode">none</property>
<signal name="row-activated" handler="on_scale_row_activated" object="PhoshScalingQuickSetting" swapped="yes"/>
<style>
<class name="content"/>
</style>
</object>
</interface>
|