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