Resize control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Jmarshall
No edit summary
No edit summary
 
(12 intermediate revisions by 6 users not shown)
Line 1: Line 1:
The resize control is used to specify an area of changeable ratio for use in the screen calibration portion of XBMC. You can choose the size, and look of the resizer.
<section begin="main content" />
===Example===
The resize control is used to specify an area of changeable ratio for use in the screen calibration portion of Kodi. You can choose the size, and look of the resizer.
<xml>
=== Example ===
<syntaxhighlight lang="xml" enclose="div">
<control type="resize" id="3">
<control type="resize" id="3">
       <description>My first resize control</description>
       <description>My first resize control</description>
       <posx>80</posx>
       <left>80</left>
       <posy>60</posy>
       <top>60</top>
       <width>250</width>
       <width>250</width>
       <height>200</height>
       <height>200</height>
Line 12: Line 13:
       <pulseonselect>true</pulseonselect>
       <pulseonselect>true</pulseonselect>
</control>
</control>
</xml>
</syntaxhighlight>
===Available Tags===
 
In addition to the [[Default_Control_Tags|default control tags]], the following tags are available. Note that each tag is '''lower case only.''' This is important, as xml tags are case-sensitive.
=== Available tags ===
{| class="dtable"
In addition to the [[Default Control Tags|default control tags]], the following tags are available. Note that each tag is '''lower case only.''' This is important, as xml tags are case-sensitive.
|- class="userrow"
{| class="prettytable"
| class="usercell" | '''texturefocus'''
! Tag !! Description
| class="usercell" |
|-  
| '''texturefocus'''
|  
Specifies the image file which should be displayed when the resizer has focus. [[Texture Attributes|See here for additional information about textures.]]
Specifies the image file which should be displayed when the resizer has focus. [[Texture Attributes|See here for additional information about textures.]]
|- class="userrow"
|-  
| class="usercell" | '''texturenofocus'''
| '''texturenofocus'''
| class="usercell" | Specifies the image file which should be displayed when the resizer does not have focus.
| Specifies the image file which should be displayed when the resizer does not have focus.
|}
|}
[[category:Skin Development]]
 
<section end="main content" />
 
== See also ==
'''Development:'''
* [[Add-on development]]
* [[Skinning]]
 
[[Category:Skin development]]

Latest revision as of 00:57, 13 July 2020

The resize control is used to specify an area of changeable ratio for use in the screen calibration portion of Kodi. You can choose the size, and look of the resizer.

Example

<control type="resize" id="3">
      <description>My first resize control</description>
      <left>80</left>
      <top>60</top>
      <width>250</width>
      <height>200</height>
      <texturefocus>mytexture.png</texturefocus>
      <texturenofocus>mytexture.png</texturenofocus>
      <pulseonselect>true</pulseonselect>
</control>

Available tags

In addition to the default control tags, the following tags are available. Note that each tag is lower case only. This is important, as xml tags are case-sensitive.

Tag Description
texturefocus

Specifies the image file which should be displayed when the resizer has focus. See here for additional information about textures.

texturenofocus Specifies the image file which should be displayed when the resizer does not have focus.


See also

Development: