Difference between revisions of "ISUI"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 2: Line 2:
  
 
== Custom Interfaces in XML ==
 
== Custom Interfaces in XML ==
 +
 +
=== UI Element Base Type ===
 +
----
 +
==== Overview ====
 +
 +
==== XML Attributes ====
 +
{| border="1" cellpadding="2"
 +
!width="15%"|Tag
 +
!width="75%"|Description
 +
!width="10%" style="align:center"|Default
 +
|-
 +
| '''X'''
 +
| Leftmost screen coordinate for this element.  This setting can be a percentage (of its parent's width), indicated with %.  A percentage will cause the element to recalculate its position when its parent is resized. || 0
 +
|-
 +
| '''Y'''
 +
| Topmost screen coordinate for this element.  This setting can be a percentage (of its parent's height), indicated with %.  A percentage will cause the element to recalculate its position when its parent is resized. || 0
 +
|-
 +
| '''Width'''
 +
| Total width of this element.  This setting can be a percentage (of its parent's width), indicated with %.  A percentage will cause the element to recalculate its position when its parent is resized. || 0
 +
|-
 +
| '''Height'''
 +
| Total height of this element.  This setting can be a percentage (of its parent's height), indicated with %.  A percentage will cause the element to recalculate its position when its parent is resized. || 0
 +
|-
 +
| '''Visible'''
 +
| 1 if the element should be visible, 0 if not || 1
 +
|-
 +
|}
 +
<br>
 +
----
  
 
=== Built-in UI Element Types ===
 
=== Built-in UI Element Types ===

Revision as of 16:40, 26 May 2005

Overview

Custom Interfaces in XML

UI Element Base Type


Overview

XML Attributes

Tag Description Default
X Leftmost screen coordinate for this element. This setting can be a percentage (of its parent's width), indicated with %. A percentage will cause the element to recalculate its position when its parent is resized. 0
Y Topmost screen coordinate for this element. This setting can be a percentage (of its parent's height), indicated with %. A percentage will cause the element to recalculate its position when its parent is resized. 0
Width Total width of this element. This setting can be a percentage (of its parent's width), indicated with %. A percentage will cause the element to recalculate its position when its parent is resized. 0
Height Total height of this element. This setting can be a percentage (of its parent's height), indicated with %. A percentage will cause the element to recalculate its position when its parent is resized. 0
Visible 1 if the element should be visible, 0 if not 1



Built-in UI Element Types

Creating Element Types

See Also