blob: 412ecfa51cbaf39a0c716daaa45db82b565dfd66 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk40">
<object class="GtkAdjustment" id="time_adjustment">
<property name="upper">10</property>
<property name="step-increment">1</property>
<property name="page-increment">10</property>
<signal name="value-changed" handler="time_adjustment_changed" object="GtkMediaControls" swapped="no"/>
</object>
<object class="GtkAdjustment" id="volume_adjustment">
<property name="upper">1</property>
<property name="step-increment">0.1</property>
<property name="page-increment">1</property>
<property name="value">1</property>
<signal name="value-changed" handler="volume_adjustment_changed" object="GtkMediaControls" swapped="no"/>
</object>
<template class="GtkMediaControls" parent="GtkWidget">
<child>
<object class="GtkBox" id="box">
<property name="sensitive">0</property>
<property name="spacing">6</property>
<child>
<object class="GtkButton" id="play_button">
<property name="receives-default">1</property>
<property name="halign">center</property>
<property name="valign">center</property>
<property name="icon-name">media-playback-start-symbolic</property>
<signal name="clicked" handler="play_button_clicked" object="GtkMediaControls" swapped="no"/>
</object>
</child>
<child>
<object class="GtkBox" id="time_box">
<child>
<object class="GtkLabel" id="time_label">
<attributes>
<attribute name="font-features" value="tnum=1"/>
</attributes>
</object>
</child>
<child>
<object class="GtkScale" id="seek_scale">
<property name="adjustment">time_adjustment</property>
<property name="draw_value">0</property>
<property name="restrict-to-fill-level">0</property>
<property name="hexpand">1</property>
</object>
</child>
<child>
<object class="GtkLabel" id="duration_label">
<attributes>
<attribute name="font-features" value="tnum=1"/>
</attributes>
</object>
</child>
</object>
</child>
<child>
<object class="GtkVolumeButton" id="volume_button">
<property name="adjustment">volume_adjustment</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|