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 26 27 28 29 30 31 32 33
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="SwVolumeControl" parent="GtkWidget">
<child>
<object class="GtkButton" id="volume_low_button">
<property name="icon-name">audio-volume-low-symbolic</property>
<property name="action-name">volume.toggle-mute</property>
<property name="valign">center</property>
<property name="tooltip_text" translatable="yes">Toggle Mute</property>
<style>
<class name="flat" />
<class name="circular" />
</style>
</object>
</child>
<child>
<object class="GtkScale" id="volume_scale">
<property name="hexpand">true</property>
<property name="margin-end">6</property>
<accessibility>
<property name="label" translatable="yes">Volume</property>
</accessibility>
</object>
</child>
<child>
<object class="GtkImage" id="volume_high_image">
<property name="icon-name">audio-volume-high-symbolic</property>
<property name="margin-end">10</property>
<property name="accessible-role">presentation</property>
</object>
</child>
</template>
</interface>
|