Slider Control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Theuni
>NedBot
m (Wikitable class; cosmetic changes)
Line 1: Line 1:
The slider control is used for things where a sliding bar best represents the operation at hand (such as a volume control or seek control). You can choose the position, size, and look of the slider control.
The slider control is used for things where a sliding bar best represents the operation at hand (such as a volume control or seek control). You can choose the position, size, and look of the slider control.
===Example===
=== Example ===
<source lang="xml">
<source lang="xml">
<control type="slider" id="17">
<control type="slider" id="17">
Line 23: Line 23:
</source>
</source>


===Available Tags===
=== 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.
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.
{| class="dtable"
{| class="wikitable"
|- class="userrow"
|-  
| class="usercell" | '''texturebg'''
| '''texturebg'''
| class="usercell" |
|  
Specifies the image file which should be displayed in the background of the slider control. [[Texture Attributes|See here for additional information about textures.]]
Specifies the image file which should be displayed in the background of the slider control. [[Texture Attributes|See here for additional information about textures.]]
|- class="userrow"
|-  
| class="usercell" | '''textureslidernib'''
| '''textureslidernib'''
| class="usercell" | Specifies the image file which should be displayed for the slider nib.
| Specifies the image file which should be displayed for the slider nib.
|- class="userrow"
|-  
| class="usercell" | '''textureslidernibfocus'''
| '''textureslidernibfocus'''
| class="usercell" | Specifies the image file which should be displayed for the slider nib when it has focus.
| Specifies the image file which should be displayed for the slider nib when it has focus.
|- class="userrow"
|-  
| class="usercell" | '''controloffsetx'''
| '''controloffsetx'''
| class="usercell" | Amount to offset the slider background texture from the left edge of the control. Only useful if a value is being rendered as well (ie in int or float mode).
| Amount to offset the slider background texture from the left edge of the control. Only useful if a value is being rendered as well (ie in int or float mode).
|- class="userrow"
|-  
| class="usercell" | '''controloffsety'''
| '''controloffsety'''
| class="usercell" | Amount to offset the slider background texture from the top edge of the control.
| Amount to offset the slider background texture from the top edge of the control.
|- class="userrow"
|-  
| class="usercell" | '''info'''
| '''info'''
| class="usercell" |
|  
Specifies the information that the slider controls. [[InfoLabels|See here for more information.]]
Specifies the information that the slider controls. [[InfoLabels|See here for more information.]]
|}
|}
[[category:Skin Development]]
 
[[Category:Skin Development]]

Revision as of 07:54, 26 November 2011

The slider control is used for things where a sliding bar best represents the operation at hand (such as a volume control or seek control). You can choose the position, size, and look of the slider control.

Example

<control type="slider" id="17">
      <description>My first slider control</description>
      <posx>80</posx>
      <posy>60</posy>
      <width>250</width>
      <height>30</height>
      <visible>true</visible>
      <texturebg>mybackgroundtexture.png</texturebg>
      <textureslidernib>mydowntexture.png</textureslidernib>
      <textureslidernibfocus>mydownfocustexture.png</textureslidernibfocus>
      <info></info>
      <controloffsetx></controloffsetx>
      <controloffsety></controloffsety>
      <pulseonselect></pulseonselect>
      <onup>2</onup>
      <ondown>3</ondown>
      <onleft>1</onleft>
      <onright>1</onright>
</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.

texturebg

Specifies the image file which should be displayed in the background of the slider control. See here for additional information about textures.

textureslidernib Specifies the image file which should be displayed for the slider nib.
textureslidernibfocus Specifies the image file which should be displayed for the slider nib when it has focus.
controloffsetx Amount to offset the slider background texture from the left edge of the control. Only useful if a value is being rendered as well (ie in int or float mode).
controloffsety Amount to offset the slider background texture from the top edge of the control.
info

Specifies the information that the slider controls. See here for more information.