aboutsummaryrefslogtreecommitdiff
path: root/addons/skin.estouchy
diff options
context:
space:
mode:
authorronie <ronie@users.noreply.github.com>2017-02-17 16:03:33 +0100
committerGitHub <noreply@github.com>2017-02-17 16:03:33 +0100
commitc66c80e147ee2dec49c8024f02dc04e35608e53c (patch)
tree608b4ecb499483075ff65e4972676f646924c12d /addons/skin.estouchy
parent7302402af90ee7eac85b1adeedf5ee825679c358 (diff)
parent6fe989ef957d1ecd6730f26cd43428afd93a202d (diff)
Merge pull request #11642 from ronie/estouchy-seekbar
[Estouchy] add seekbar
Diffstat (limited to 'addons/skin.estouchy')
-rw-r--r--addons/skin.estouchy/xml/CustomVolume.xml4
-rw-r--r--addons/skin.estouchy/xml/DialogSeekBar.xml66
2 files changed, 68 insertions, 2 deletions
diff --git a/addons/skin.estouchy/xml/CustomVolume.xml b/addons/skin.estouchy/xml/CustomVolume.xml
index df87f5e7c7..4a94a1a8e8 100644
--- a/addons/skin.estouchy/xml/CustomVolume.xml
+++ b/addons/skin.estouchy/xml/CustomVolume.xml
@@ -11,7 +11,7 @@
<texturenofocus></texturenofocus>
<texturefocus></texturefocus>
<onclick>Back</onclick>
- <visible>![Window.IsVisible(Notification) | Window.IsVisible(VolumeBar)]</visible>
+ <visible>![Window.IsVisible(Notification) | Window.IsVisible(VolumeBar) | Window.IsVisible(SeekBar)]</visible>
</control>
<control type="group">
<posx>430</posx>
@@ -19,7 +19,7 @@
<width>420</width>
<height>78</height>
<include>16x9_xPos_Relocation</include>
- <visible>![Window.IsVisible(Notification) | Window.IsVisible(VolumeBar)]</visible>
+ <visible>![Window.IsVisible(Notification) | Window.IsVisible(VolumeBar) | Window.IsVisible(SeekBar)]</visible>
<control type="label">
<description>label</description>
<posx>20</posx>
diff --git a/addons/skin.estouchy/xml/DialogSeekBar.xml b/addons/skin.estouchy/xml/DialogSeekBar.xml
index bfe6d61c65..64bd320f01 100644
--- a/addons/skin.estouchy/xml/DialogSeekBar.xml
+++ b/addons/skin.estouchy/xml/DialogSeekBar.xml
@@ -1,3 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<window>
+ <visible>[Window.IsActive(FullscreenVideo) | Window.IsActive(Visualisation)] + ![Window.IsActive(VideoOSD) | Window.IsActive(MusicOSD)] + [Player.Seeking | Player.DisplayAfterSeek]</visible>
+ <controls>
+ <control type="group">
+ <posx>364</posx>
+ <posy>10</posy>
+ <include>VisibleFadeEffect</include>
+ <control type="label">
+ <posx>0</posx>
+ <posy>0</posy>
+ <width>180</width>
+ <height>32</height>
+ <font>font20_title</font>
+ <aligny>center</aligny>
+ <label>$INFO[Player.Time(hh:mm:ss)]</label>
+ </control>
+ <control type="label">
+ <posx>0</posx>
+ <posy>0</posy>
+ <width>552</width>
+ <height>32</height>
+ <font>font20_title</font>
+ <align>center</align>
+ <aligny>center</aligny>
+ <label>$VAR[SeekLabel]</label>
+ </control>
+ <control type="label">
+ <posx>552</posx>
+ <posy>0</posy>
+ <width>180</width>
+ <height>32</height>
+ <font>font20_title</font>
+ <align>right</align>
+ <aligny>center</aligny>
+ <label>$INFO[Player.Duration(hh:mm:ss)]</label>
+ </control>
+ <control type="progress">
+ <description>Progressbar</description>
+ <posx>0</posx>
+ <posy>40</posy>
+ <width>552</width>
+ <height>12</height>
+ <info>Player.Cache</info>
+ <midtexture colordiffuse="grey2">white.png</midtexture>
+ <texturebg></texturebg>
+ </control>
+ <control type="progress">
+ <description>Progressbar</description>
+ <posx>0</posx>
+ <posy>40</posy>
+ <width>552</width>
+ <height>12</height>
+ <info>Player.Progress</info>
+ </control>
+ <control type="slider" id="87">
+ <description>Seek Slider</description>
+ <posx>0</posx>
+ <posy>30</posy>
+ <width>552</width>
+ <height>32</height>
+ <action>seek</action>
+ <texturesliderbar></texturesliderbar>
+ <textureslidernib></textureslidernib>
+ <textureslidernibfocus></textureslidernibfocus>
+ </control>
+ </control>
+ </controls>
</window>