blob: d8c8ace5440a637c40adcc205e86d848952e3c59 (
plain)
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
34
35
36
37
38
39
40
41
42
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<object class="GtkBox" id="channelWidget">
<property name="spacing">6</property>
<child>
<object class="GtkLabel" id="channelLabel">
<property name="halign">center</property>
<property name="label" translatable="yes"><b>left-front</b></property>
<property name="use_markup">1</property>
<property name="xalign">1</property>
<property name="yalign">0</property>
</object>
</child>
<child>
<object class="GtkScale" id="volumeScale">
<property name="hexpand">1</property>
<property name="focusable">1</property>
<property name="adjustment">
<object class="GtkAdjustment">
<property name="upper">100</property>
<property name="step_increment">5</property>
</object>
</property>
<property name="digits">0</property>
</object>
</child>
<child>
<object class="GtkLabel" id="volumeLabel">
<property name="halign">center</property>
<property name="margin_start">8</property>
<property name="margin_end">8</property>
<property name="label" translatable="yes"><small>50%</small></property>
<property name="use_markup">1</property>
<property name="justify">right</property>
<property name="width_chars">12</property>
<property name="xalign">1</property>
<property name="yalign">0</property>
</object>
</child>
</object>
</interface>
|