Button control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>NedBot
m (Robot: Cosmetic changes)
>NedBot
m (Wikitable class)
Line 33: Line 33:
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="dtable"
|- class="userrow"
|-
| class="usercell" | '''texturefocus'''
|   '''texturefocus'''
| class="usercell" |
|
Specifies the image file which should be displayed when the button has focus. [[Texture Attributes|See here for additional information about textures.]]
Specifies the image file which should be displayed when the button 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 button does not have focus.
|   Specifies the image file which should be displayed when the button does not have focus.
|- class="userrow"
|-
| class="usercell" | '''label'''
|   '''label'''
| class="usercell" | The label used on the button. It can be a link into strings.xml, or an actual text label.
|   The label used on the button. It can be a link into strings.xml, or an actual text label.
|- class="userrow"
|-
| class="usercell" | '''font'''
|   '''font'''
| class="usercell" | Font used for the button label. From fonts.xml.
|   Font used for the button label. From fonts.xml.
|- class="userrow"
|-
| class="usercell" | '''textcolor'''
|   '''textcolor'''
| class="usercell" | Color used for displaying the button label. In AARRGGBB hex format, or a name from the [[Colour Themes|colour theme.]]
|   Color used for displaying the button label. In AARRGGBB hex format, or a name from the [[Colour Themes|colour theme.]]
|- class="userrow"
|-
| class="usercell" | '''focusedcolor'''
|   '''focusedcolor'''
| class="usercell" | Color used for the button label when the button has in focus. In AARRGGBB hex format or a name from the [[Colour Themes|colour theme.]]
|   Color used for the button label when the button has in focus. In AARRGGBB hex format or a name from the [[Colour Themes|colour theme.]]
|- class="userrow"
|-
| class="usercell" | '''disabledcolor'''
|   '''disabledcolor'''
| class="usercell" | Color used for the button label if the button is disabled. In AARRGGBB hex format or a name from the [[Colour Themes|colour theme.]]
|   Color used for the button label if the button is disabled. In AARRGGBB hex format or a name from the [[Colour Themes|colour theme.]]
|- class="userrow"
|-
| class="usercell" | '''shadowcolor'''
|   '''shadowcolor'''
| class="usercell" | Specifies the color of the drop shadow on the text, in AARRGGBB format, or a name from the [[Colour Themes|colour theme.]]
|   Specifies the color of the drop shadow on the text, in AARRGGBB format, or a name from the [[Colour Themes|colour theme.]]
|- class="userrow"
|-
| class="usercell" | '''angle'''
|   '''angle'''
| class="usercell" | The angle the text should be rendered at, in degrees. A value of 0 is horizontal.
|   The angle the text should be rendered at, in degrees. A value of 0 is horizontal.
|- class="userrow"
|-
| class="usercell" | '''align'''
|   '''align'''
| class="usercell" | Label horizontal alignment on the button. Defaults to left, can also be center or right.
|   Label horizontal alignment on the button. Defaults to left, can also be center or right.
|- class="userrow"
|-
| class="usercell" | '''aligny'''
|   '''aligny'''
| class="usercell" | Label vertical alignment on the button. Defaults to top, can also be center.
|   Label vertical alignment on the button. Defaults to top, can also be center.
|- class="userrow"
|-
| class="usercell" | '''textoffsetx'''
|   '''textoffsetx'''
| class="usercell" | Amount to offset the label from the left (or right) edge of the button when using left or right alignment.
|   Amount to offset the label from the left (or right) edge of the button when using left or right alignment.
|- class="userrow"
|-
| class="usercell" | '''textoffsety'''
|   '''textoffsety'''
| class="usercell" | Amount to offset the label from the top edge of the button when using top alignment.
|   Amount to offset the label from the top edge of the button when using top alignment.
|- class="userrow"
|-
| class="usercell" | '''onclick'''
|   '''onclick'''
| class="usercell" |
|
Specifies the action to perform when the button is pressed. Should be a built in function. [[Built-in functions available to FTP, Webserver, skins, keymap and to python|See here for more information.]] You may have more than one <onclick> tag, and they'll be executed in sequence.
Specifies the action to perform when the button is pressed. Should be a built in function. [[Built-in functions available to FTP, Webserver, skins, keymap and to python|See here for more information.]] You may have more than one <onclick> tag, and they'll be executed in sequence.
|- class="userrow"
|-
| class="usercell" | '''onfocus'''
|   '''onfocus'''
| class="usercell" |
|
Specifies the action to perform when the button is focused. Should be a built in function. The action is performed after any focus animations have completed. [[Built-in functions available to FTP, Webserver, skins, keymap and to python|See here for more information.]]
Specifies the action to perform when the button is focused. Should be a built in function. The action is performed after any focus animations have completed. [[Built-in functions available to FTP, Webserver, skins, keymap and to python|See here for more information.]]
|}
|}

Revision as of 07:45, 26 November 2011

The button control is used for creating push buttons in XBMC. You can choose the position, size, and look of the button, as well as choosing what action(s) should be performed when pushed.

Example

<control type="button" id="1">
      <description>My first button control</description>
      <posx>80</posx>
      <posy>60</posy>
      <width>250</width>
      <height>200</height>
      <visible>true</visible>
      <colordiffuse>FFFFFFFF</colordiffuse>
      <texturefocus>myfocustexture.png</texturefocus>
      <texturenofocus>mynormaltexture.png</texturenofocus>
      <label>29</label>
      <font>font12</font>
      <textcolor>FFFFFFFF</textcolor>
      <disabledcolor>80FFFFFF</disabledcolor>
      <align></align>
      <aligny></aligny>
      <textoffsetx></textoffsetx>
      <textoffsety></textoffsety>
      <pulseonselect></pulseonselect>
      <onclick>XBMC.ActivateWindow(MyVideos)</onclick>
      <onfocus>-</onfocus>
      <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.

texturefocus

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

texturenofocus Specifies the image file which should be displayed when the button does not have focus.
label The label used on the button. It can be a link into strings.xml, or an actual text label.
font Font used for the button label. From fonts.xml.
textcolor Color used for displaying the button label. In AARRGGBB hex format, or a name from the colour theme.
focusedcolor Color used for the button label when the button has in focus. In AARRGGBB hex format or a name from the colour theme.
disabledcolor Color used for the button label if the button is disabled. In AARRGGBB hex format or a name from the colour theme.
shadowcolor Specifies the color of the drop shadow on the text, in AARRGGBB format, or a name from the colour theme.
angle The angle the text should be rendered at, in degrees. A value of 0 is horizontal.
align Label horizontal alignment on the button. Defaults to left, can also be center or right.
aligny Label vertical alignment on the button. Defaults to top, can also be center.
textoffsetx Amount to offset the label from the left (or right) edge of the button when using left or right alignment.
textoffsety Amount to offset the label from the top edge of the button when using top alignment.
onclick

Specifies the action to perform when the button is pressed. Should be a built in function. See here for more information. You may have more than one <onclick> tag, and they'll be executed in sequence.

onfocus

Specifies the action to perform when the button is focused. Should be a built in function. The action is performed after any focus animations have completed. See here for more information.