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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<object class="GtkAdjustment" id="seek_bar_adjustment">
<property name="upper">100</property>
<property name="step-increment">1</property>
<property name="page-increment">15</property>
</object>
<template class="SeekBar" parent="GtkBox">
<property name="valign">center</property>
<property name="hexpand">true</property>
<property name="spacing">5</property>
<child>
<object class="GtkLabel" id="current_label">
<property name="tooltip-text" translatable="true">Elapsed time</property>
<property name="halign">end</property>
<property name="valign">center</property>
<property name="label">--:--</property>
<property name="single-line-mode">true</property>
<accessibility>
<property name="label" translatable="true">Elapsed time of current part</property>
</accessibility>
<style>
<class name="numeric"/>
</style>
</object>
</child>
<child>
<object class="GtkScale" id="progress_scale">
<property name="width-request">150</property>
<property name="focusable">true</property>
<property name="tooltip-text" translatable="true">Jump to position in current chapter</property>
<property name="valign">center</property>
<property name="hexpand">true</property>
<property name="adjustment">seek_bar_adjustment</property>
<property name="restrict-to-fill-level">false</property>
<property name="fill-level">0</property>
<accessibility>
<property name="label" translatable="true">Position of the current part in seconds</property>
</accessibility>
</object>
</child>
<child>
<object class="GtkBox" id="remaining_event_box">
<property name="valign">center</property>
<child>
<object class="GtkLabel" id="remaining_label">
<property name="tooltip-text" translatable="true">Remaining time</property>
<property name="halign">start</property>
<property name="label">--:--</property>
<property name="single-line-mode">true</property>
<accessibility>
<property name="label" translatable="true">Remaining time of current part</property>
</accessibility>
<style>
<class name="numeric"/>
</style>
</object>
</child>
</object>
</child>
</template>
</interface>
|