Fix ChannelSetting e InfoWindow
This commit is contained in:
@@ -226,14 +226,12 @@ class InfoWindow(xbmcgui.WindowXMLDialog):
|
||||
self.getControl(100014).setLabel(config.get_localized_string(60384))
|
||||
self.getControl(100015).setLabel(self.result.get("temporada_nombre", "N/A"))
|
||||
self.getControl(100016).setLabel(config.get_localized_string(60385))
|
||||
self.getControl(100017).setLabel(self.result.get("season", "N/A") + " de " +
|
||||
self.result.get("seasons", "N/A"))
|
||||
self.getControl(100017).setLabel(self.result.get("season", "N/A") + " de " + self.result.get("seasons", "N/A"))
|
||||
if self.result.get("episode"):
|
||||
self.getControl(100014).setLabel(config.get_localized_string(60377))
|
||||
self.getControl(100015).setLabel(self.result.get("episode_title", "N/A"))
|
||||
self.getControl(100018).setLabel(config.get_localized_string(60386))
|
||||
self.getControl(100019).setLabel(self.result.get("episode", "N/A") + " de " +
|
||||
self.result.get("episodes", "N/A"))
|
||||
self.getControl(100019).setLabel(self.result.get("episode", "N/A") + " de " + self.result.get("episodes", "N/A"))
|
||||
self.getControl(100020).setLabel(config.get_localized_string(60387))
|
||||
self.getControl(100021).setLabel(self.result.get("date", "N/A"))
|
||||
|
||||
@@ -287,10 +285,10 @@ class InfoWindow(xbmcgui.WindowXMLDialog):
|
||||
logger.info("action=" + repr(action.getId()))
|
||||
action = action.getId()
|
||||
|
||||
# Obtenemos el foco
|
||||
# Find Focus
|
||||
focus = self.getFocusId()
|
||||
|
||||
# Accion 1: Flecha izquierda
|
||||
# Left
|
||||
if action == 1:
|
||||
|
||||
if focus == ID_BUTTON_OK:
|
||||
@@ -298,26 +296,26 @@ class InfoWindow(xbmcgui.WindowXMLDialog):
|
||||
|
||||
elif focus == ID_BUTTON_CANCEL:
|
||||
if self.indexList + 1 != len(self.listData):
|
||||
# vamos al botón Siguiente
|
||||
# Next
|
||||
self.setFocus(self.getControl(ID_BUTTON_NEXT))
|
||||
elif self.indexList > 0:
|
||||
# vamos al botón Anterior ya que Siguiente no está activo (estamos al final de la lista)
|
||||
# Previous
|
||||
self.setFocus(self.getControl(ID_BUTTON_PREVIOUS))
|
||||
|
||||
elif focus == ID_BUTTON_NEXT:
|
||||
if self.indexList > 0:
|
||||
# vamos al botón Anterior
|
||||
# Next
|
||||
self.setFocus(self.getControl(ID_BUTTON_PREVIOUS))
|
||||
|
||||
# Accion 2: Flecha derecha
|
||||
# Right
|
||||
elif action == 2:
|
||||
|
||||
if focus == ID_BUTTON_PREVIOUS:
|
||||
if self.indexList + 1 != len(self.listData):
|
||||
# vamos al botón Siguiente
|
||||
# Next
|
||||
self.setFocus(self.getControl(ID_BUTTON_NEXT))
|
||||
else:
|
||||
# vamos al botón Cancelar ya que Siguiente no está activo (estamos al final de la lista)
|
||||
# Cancel
|
||||
self.setFocus(self.getControl(ID_BUTTON_CANCEL))
|
||||
|
||||
elif focus == ID_BUTTON_NEXT:
|
||||
@@ -326,6 +324,13 @@ class InfoWindow(xbmcgui.WindowXMLDialog):
|
||||
elif focus == ID_BUTTON_CANCEL:
|
||||
self.setFocus(self.getControl(ID_BUTTON_OK))
|
||||
|
||||
# Up
|
||||
elif action == 3:
|
||||
self.setFocus(self.getControl(ID_BUTTON_CLOSE))
|
||||
|
||||
# Down
|
||||
elif action == 4:
|
||||
self.setFocus(self.getControl(ID_BUTTON_OK))
|
||||
# Pulsa ESC o Atrás, simula click en boton cancelar
|
||||
if action in [10, 92]:
|
||||
self.onClick(ID_BUTTON_CANCEL)
|
||||
|
||||
@@ -1385,7 +1385,7 @@ msgid "Find %s possible matches"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "#60298"
|
||||
msgid "[%s]: Select the correct TV show"
|
||||
msgid "%s - Select the correct TV show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "#60299"
|
||||
|
||||
@@ -1384,8 +1384,8 @@ msgid "Find %s possible matches"
|
||||
msgstr "Trovate %s possibili corrispondenze"
|
||||
|
||||
msgctxt "#60298"
|
||||
msgid "[%s]: Select the correct TV show"
|
||||
msgstr "[%s]: Seleziona la serie TV corretta"
|
||||
msgid "%s - Select the correct TV show"
|
||||
msgstr "%s - Seleziona la serie TV corretta"
|
||||
|
||||
msgctxt "#60299"
|
||||
msgid "Not found in the language '%s'"
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<control type="image">
|
||||
<width>100%</width>
|
||||
<height>100%</height>
|
||||
<texture colordiffuse="EE232323">Shortcut/white.png</texture>
|
||||
<texture colordiffuse="FF232323">Shortcut/white.png</texture>
|
||||
</control>
|
||||
<!-- Divider -->
|
||||
<control type="image">
|
||||
|
||||
@@ -1,98 +1,113 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<window>
|
||||
<allowoverlays>false</allowoverlays>
|
||||
<allowoverlays>false</allowoverlays>
|
||||
<animation type="WindowOpen" reversible="false">
|
||||
<effect type="slide" start="0,200" end="0,0" center="640,225" delay="160" tween="cubic" time="200" />
|
||||
<effect type="fade" delay="160" end="100" time="240" />
|
||||
</animation>
|
||||
<animation type="WindowClose" reversible="false">
|
||||
<effect type="slide" start="0,0" end="0,200" center="640,225" easing="in" tween="cubic" time="200" />
|
||||
<effect type="fade" start="100" end="0" time="240" />
|
||||
</animation>
|
||||
<controls>
|
||||
<control type="group" id="10001">
|
||||
<posx>50</posx>
|
||||
<posy>28</posy>
|
||||
<width>1179</width>
|
||||
<height>663</height>
|
||||
<left>0</left>
|
||||
<top>0</top>
|
||||
<width>100%</width>
|
||||
<height>100%</height>
|
||||
<control type="image">
|
||||
<width>1179</width>
|
||||
<height>663</height>
|
||||
<texture>Shortcut/dialog-bg-solid.png</texture>
|
||||
<width>100%</width>
|
||||
<height>100%</height>
|
||||
<texture colordiffuse="FF232323">Shortcut/white.png</texture>
|
||||
</control>
|
||||
<!-- <control type="image">
|
||||
<height>40</height>
|
||||
<width>800</width>
|
||||
<texture>Windows/dialogheader.png</texture>
|
||||
</control> -->
|
||||
<!-- FANART -->
|
||||
<control type="image" id="10004">
|
||||
<left>0</left>
|
||||
<top>0</top>
|
||||
<width>100%</width>
|
||||
<height>100%</height>
|
||||
<texture></texture>
|
||||
<colordiffuse>33FFFFFF</colordiffuse>
|
||||
</control>
|
||||
<!-- Header -->
|
||||
<control type="label" id="10002">
|
||||
<posy>15</posy>
|
||||
<posx>0</posx>
|
||||
<top>20</top>
|
||||
<left>0</left>
|
||||
<height>34</height>
|
||||
<width>1179</width>
|
||||
<font>font12_title</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<!-- <shadowcolor>black</shadowcolor> -->
|
||||
<width>100%</width>
|
||||
<font>font30_title</font>
|
||||
<textcolor>FFFFFFFF</textcolor>
|
||||
<align>center</align>
|
||||
<aligny>center</aligny>
|
||||
<label>$ADDON[plugin.video.kod 70000]</label>
|
||||
</control>
|
||||
<!-- Close -->
|
||||
<control type="button" id="10003">
|
||||
<posx>1120</posx>
|
||||
<posy>25</posy>
|
||||
<width>20</width>
|
||||
<height>20</height>
|
||||
<texturefocus>Controls/DialogCloseButton-focus.png</texturefocus>
|
||||
<texturenofocus>Controls/DialogCloseButton.png</texturenofocus>
|
||||
<right>30</right>
|
||||
<top>25</top>
|
||||
<width>30</width>
|
||||
<height>30</height>
|
||||
<texturefocus colordiffuse="FFFFFFFF">Controls/DialogCloseButton-focus.png</texturefocus>
|
||||
<texturenofocus colordiffuse="55FFFFFF">Controls/DialogCloseButton-focus.png</texturenofocus>
|
||||
</control>
|
||||
<control type="image" id="10004"> <!-- FANART -->
|
||||
<posx>0</posx>
|
||||
<posy>0</posy>
|
||||
<width>1179</width>
|
||||
<height>663</height>
|
||||
<!-- LOCANDINA -->
|
||||
<control type="image" id="10005">
|
||||
<right>30</right>
|
||||
<top>110</top>
|
||||
<width>349</width>
|
||||
<height>500</height>
|
||||
<texture></texture>
|
||||
<colordiffuse>33FFFFFF</colordiffuse>
|
||||
<animation type="WindowOpen" reversible="false">
|
||||
<effect type="slide" start="200,0" end="0,0" delay="300" tween="cubic" time="200" />
|
||||
<effect type="fade" delay="300" end="100" time="240" />
|
||||
</animation>
|
||||
<animation type="WindowClose" reversible="false">
|
||||
<effect type="slide" start="0,0" end="200,0" easing="in" tween="cubic" time="200" />
|
||||
<effect type="fade" start="100" end="0" time="240" />
|
||||
</animation>
|
||||
</control>
|
||||
<control type="image" id="10005"> <!-- LOCANDINA -->
|
||||
<posx>809</posx>
|
||||
<posy>110</posy>
|
||||
<width>310</width>
|
||||
<height>444</height>
|
||||
<texture></texture>
|
||||
</control>
|
||||
<control type="label" id="10006"> <!-- Serie -->
|
||||
<posy>100</posy>
|
||||
<posx>60</posx>
|
||||
<!-- Serie -->
|
||||
<control type="label" id="10006">
|
||||
<top>100</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<textcolor>FFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="10007">
|
||||
<posy>100</posy>
|
||||
<posx>200</posx>
|
||||
<top>100</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
<scrollsuffix> | </scrollsuffix>
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<textcolor>FFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="10008"> <!-- Lingua Originale -->
|
||||
<posy>120</posy>
|
||||
<posx>60</posx>
|
||||
<top>125</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="10009">
|
||||
<posy>120</posy>
|
||||
<posx>200</posx>
|
||||
<top>125</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -100,25 +115,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100010"> <!-- Punteggio -->
|
||||
<posy>140</posy>
|
||||
<posx>60</posx>
|
||||
<top>150</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100011">
|
||||
<posy>140</posy>
|
||||
<posx>200</posx>
|
||||
<top>150</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -126,25 +141,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100012"> <!-- Generi -->
|
||||
<posy>160</posy>
|
||||
<posx>60</posx>
|
||||
<top>175</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100013">
|
||||
<posy>160</posy>
|
||||
<posx>200</posx>
|
||||
<top>175</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -152,25 +167,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100014">
|
||||
<posy>180</posy>
|
||||
<posx>60</posx>
|
||||
<top>200</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100015">
|
||||
<posy>180</posy>
|
||||
<posx>200</posx>
|
||||
<top>200</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -178,25 +193,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100016">
|
||||
<posy>200</posy>
|
||||
<posx>60</posx>
|
||||
<top>225</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100017">
|
||||
<posy>200</posy>
|
||||
<posx>200</posx>
|
||||
<top>225</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -204,25 +219,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100018">
|
||||
<posy>220</posy>
|
||||
<posx>60</posx>
|
||||
<top>250</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100019">
|
||||
<posy>220</posy>
|
||||
<posx>200</posx>
|
||||
<top>250</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -230,25 +245,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100020">
|
||||
<posy>240</posy>
|
||||
<posx>60</posx>
|
||||
<top>275</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>100</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100021">
|
||||
<posy>240</posy>
|
||||
<posx>200</posx>
|
||||
<top>275</top>
|
||||
<left>200</left>
|
||||
<height>40</height>
|
||||
<width>365</width>
|
||||
<font>font10</font>
|
||||
@@ -256,25 +271,25 @@
|
||||
<scroll>true</scroll>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="label" id="100022"> <!-- Trama -->
|
||||
<posy>260</posy>
|
||||
<posx>60</posx>
|
||||
<top>300</top>
|
||||
<left>60</left>
|
||||
<height>40</height>
|
||||
<width>505</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>posx</align>
|
||||
<aligny>posy</aligny>
|
||||
<align>left</align>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
<control type="textbox" id="100023">
|
||||
<posy>260</posy>
|
||||
<posx>200</posx>
|
||||
<top>300</top>
|
||||
<left>200</left>
|
||||
<height>294</height>
|
||||
<width>500</width>
|
||||
<font>font10</font>
|
||||
@@ -283,71 +298,71 @@
|
||||
<wrapmultiline>true</wrapmultiline>
|
||||
<autoscroll delay="2000" time="1500" repeat="2000">true</autoscroll>
|
||||
<align>justify</align>
|
||||
<aligny>posy</aligny>
|
||||
<aligny>top</aligny>
|
||||
<label></label>
|
||||
</control>
|
||||
|
||||
<control type="group" id="10024">
|
||||
<posy>600</posy>
|
||||
<posx>40</posx>
|
||||
<bottom>60</bottom>
|
||||
<left>40</left>
|
||||
<width>760</width>
|
||||
<height>30</height>
|
||||
|
||||
<control type="button" id="10025">
|
||||
<posy>0</posy>
|
||||
<posx>0</posx>
|
||||
<top>0</top>
|
||||
<left>0</left>
|
||||
<width>200</width>
|
||||
<height>50</height>
|
||||
<textwidth>110</textwidth>
|
||||
<texturefocus>Controls/KeyboardKey.png</texturefocus>
|
||||
<texturenofocus>Controls/KeyboardKeyNF.png</texturenofocus>
|
||||
<texturefocus colordiffuse="FF0081C2">Shortcut/white.png</texturefocus>
|
||||
<texturenofocus colordiffuse="000081C2">Shortcut/white.png</texturenofocus>
|
||||
<align>center</align>
|
||||
<aligny>center</aligny>
|
||||
<label>$ADDON[plugin.video.kod 70005]</label>
|
||||
</control>
|
||||
<control type="button" id="10026">
|
||||
<posy>0</posy>
|
||||
<posx>210</posx>
|
||||
<top>0</top>
|
||||
<left>210</left>
|
||||
<width>200</width>
|
||||
<height>50</height>
|
||||
<textwidth>110</textwidth>
|
||||
<texturefocus>Controls/KeyboardKey.png</texturefocus>
|
||||
<texturenofocus>Controls/KeyboardKeyNF.png</texturenofocus>
|
||||
<texturefocus colordiffuse="FF0081C2">Shortcut/white.png</texturefocus>
|
||||
<texturenofocus colordiffuse="000081C2">Shortcut/white.png</texturenofocus>
|
||||
<align>center</align>
|
||||
<aligny>center</aligny>
|
||||
<label>$ADDON[plugin.video.kod 70006]</label>
|
||||
</control>
|
||||
<control type="button" id="10027">
|
||||
<posy>0</posy>
|
||||
<posx>420</posx>
|
||||
<top>0</top>
|
||||
<left>420</left>
|
||||
<width>200</width>
|
||||
<height>50</height>
|
||||
<textwidth>110</textwidth>
|
||||
<texturefocus>Controls/KeyboardKey.png</texturefocus>
|
||||
<texturenofocus>Controls/KeyboardKeyNF.png</texturenofocus>
|
||||
<texturefocus colordiffuse="FF0081C2">Shortcut/white.png</texturefocus>
|
||||
<texturenofocus colordiffuse="000081C2">Shortcut/white.png</texturenofocus>
|
||||
<align>center</align>
|
||||
<aligny>center</aligny>
|
||||
<label>$ADDON[plugin.video.kod 70002]</label>
|
||||
</control>
|
||||
<control type="button" id="10028">
|
||||
<posy>0</posy>
|
||||
<posx>640</posx>
|
||||
<top>0</top>
|
||||
<left>640</left>
|
||||
<width>200</width>
|
||||
<height>50</height>
|
||||
<textwidth>110</textwidth>
|
||||
<texturefocus>Controls/KeyboardKey.png</texturefocus>
|
||||
<texturenofocus>Controls/KeyboardKeyNF.png</texturenofocus>
|
||||
<texturefocus colordiffuse="FF0081C2">Shortcut/white.png</texturefocus>
|
||||
<texturenofocus colordiffuse="000081C2">Shortcut/white.png</texturenofocus>
|
||||
<align>center</align>
|
||||
<aligny>center</aligny>
|
||||
<label>$ADDON[plugin.video.kod 70007]</label>
|
||||
</control>
|
||||
<control type="label" id="100029">
|
||||
<posy>10</posy>
|
||||
<posx>1080</posx>
|
||||
<top>10</top>
|
||||
<left>1080</left>
|
||||
<height>30</height>
|
||||
<width>110</width>
|
||||
<font>font10</font>
|
||||
<textcolor>0xFFFFFFFF</textcolor>
|
||||
<textcolor>FFFFFFFF</textcolor>
|
||||
<shadowcolor>black</shadowcolor>
|
||||
<align>right</align>
|
||||
<aligny>center</aligny>
|
||||
|
||||
Reference in New Issue
Block a user